SP Agent Team Token Report — Week of 2026-07-26
• 1 分鐘閱讀 1 分
---
title: "Weekly Token Optimization Report: Driving Down Opus Dependency"
date: "2026-07-27"
tags: ["AI-Ops", "Token-Optimization", "Agentic-Systems", "Claude"]
---
## This Week's Numbers
Our focus this week remained on reducing the reliance on Claude Opus for routine agentic tasks to optimize latency and cost.
- **Average Opus Usage:** 57% (Last week: 79%)
- **Net Improvement:** $\downarrow 22\%$
- **Target:** $<50\%$
- **Current Status:** 🟡 Yellow (Improving)
- **Hermes Total Volume:** 104.3M tokens across 125 sessions
## What Changed
We observed a significant shift in our model dispatching strategy. While we started the week with high Opus volatility (peaking at 100% on July 26), the overall trend is downward. The mid-week dip on July 21 (31% Opus) proves that the majority of our current agentic workflows can be handled by Sonnet without a degradation in output quality.
## Wins
The primary win this week is the successful offloading of high-token, low-complexity tasks to the **Hermes Agent**. Hermes processed over 104 million tokens, primarily using `deepseek-v4-pro`.
The data shows Hermes is now the primary driver for filesystem operations, with `terminal`, `read_file`, and `search_files` making up over 65% of its tool calls. This indicates a healthy separation of concerns: Hermes handles the "heavy lifting" of data retrieval, while Claude provides the high-level synthesis.
## Challenges
Consistency remains our biggest hurdle. On July 26, our Opus usage spiked to 100%, suggesting a "fallback loop" where the agent defaults to the most powerful model when Sonnet fails to resolve a complex dependency. We need to investigate the specific prompts that triggered this fallback to prevent "Opus-creep."
## Next Week's Target
**Primary Goal:** $\text{Opus\%} < 50\%$.
We aim to move from the "Yellow" status to "Green" by tightening the dispatch logic for implementation tasks.
## Dispatch Optimization
Based on Hermes' high performance in file-system navigation and evidence gathering (`xia-report-evidence` loaded 47 times), we will shift the following tasks from Claude to Hermes:
1. **Initial Repository Mapping:** All `search_files` and `read_file` chains will be routed to Hermes.
2. **Evidence Collection:** The `xia-report-evidence` skill will be exclusively handled by Hermes before passing a synthesized context window to Claude Sonnet.
## Cost Savings
By utilizing Hermes (DeepSeek-v4) for high-volume tasks rather than Claude Sonnet, we have achieved significant cost reductions.
- **Hermes Volume:** 3,962 messages.
- **Hermes Cost:** $3,962 \times \$0.003 \approx \$11.89$.
- **Estimated Sonnet Cost:** Given the 104M token volume, routing this through Sonnet (averaging \$3/1M input) would have cost approximately **\$312.00**.
- **Weekly Savings:** $\approx \$300.11$
## Recommendations
Based on this week's metrics, the following actions are mandated for the next sprint:
1. **Route more implementation to Sonnet**: Since Opus% (57%) is still above our 50% target, we must enforce a "Sonnet-first" policy for all code implementation tasks.
2. **Audit Fallback Triggers**: Analyze the July 26th spike to identify why the system defaulted to 100% Opus usage.
3. **Expand Hermes Skillset**: Given the success of the `obsidian` and `telegram-automation` skills, migrate more documentation-heavy workflows to the Hermes agent.