Install
$ agentstack add skill-the-artificer-of-ciphers-llc-skills-from-the-artificer-cost-tier-routing ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Cost-Tier Routing
Opus tokens cost ~5x sonnet and ~25x haiku. Doing Read and Grep on opus is lighting money on fire. This skill is the discipline for routing every action to the cheapest model that can do it correctly.
> This skill requires three companion agents — haiku-scout, haiku-importer, and sonnet-coder — installed in ~/.claude/agents/. See this package's README.md for the two-step install. The skill is inert without the agents because the model: pin lives in the agent files, not here.
The rule
Before any of these actions in the main (opus) context, dispatch to a subagent instead:
| Action | Route to | Why | |---|---|---| | Read more than 1–2 files in a row | haiku-scout | Bulk reads burn opus context | | Grep / Glob across the repo | haiku-scout | Mechanical lookup | | "Where is X defined?" / "What references Y?" | haiku-scout | Pure search | | Count LOC, list files, read a config | haiku-scout | Trivial IO | | Convert/parse/split/merge data files | haiku-importer | Mechanical transform | | Download + parse a fixture or seed file | haiku-importer | Mechanical IO | | Write code at a known location with a known design | sonnet-coder | Implementation, not design | | Refactor a function with clear constraints | sonnet-coder | Bounded edit | | Run tests / typecheck after an edit | sonnet-coder (bundle with the edit) | Don't bounce back to opus mid-task |
Keep on opus (the orchestrator):
- Architectural decisions, tradeoff analysis
- Reading subagent reports and deciding the next step
- Synthesis across multiple subagent outputs
- User-facing explanations and recommendations
The dispatch pattern
When you (opus) recognize a routable task:
- Phrase the brief like a closed ticket, not an open question. Include: exact files/dirs, exact output format, exact verification command.
- Call
Agentwith the rightsubagent_type—haiku-scout,haiku-importer, orsonnet-coder. The model is pinned in the agent file; do not override unless you have a specific reason. - Read the report, don't redo the work. If the subagent missed something, dispatch again with a sharpened brief — don't bail out and do it yourself on opus.
- Parallel where independent. If you need three unrelated searches, fire three
haiku-scoutcalls in one message.
When to NOT route
- A single one-line
Readof a file you're about to edit yourself — just read it. - A trivial
Grep(one pattern, one directory) you're about to act on immediately — just grep. - Tasks already inside a subagent — subagents do their own work, they don't recursively dispatch the same tier.
- When the user explicitly asked you to do it directly.
The threshold is roughly: if the action will take >3 tool calls or >1000 tokens of file content, route it.
Red flags (you're about to waste money)
- "Let me read these 8 files to understand the structure" → STOP, dispatch
haiku-scoutwith a structural-survey brief. - "Let me grep for all usages, then read each one" → STOP, dispatch
haiku-scoutto return paths+excerpts in one shot. - "I'll just write this small fix" while sitting on opus → consider
sonnet-coderif it involves >1 file or any test run. - "Let me convert this CSV real quick" → STOP, dispatch
haiku-importer.
Escalation back to opus
Subagents are instructed to escalate when they hit reasoning work. When you get a report ending in ESCALATE: ..., that's the signal that the next step is genuinely yours. Don't push it back down — handle it on opus and re-dispatch a sharpened mechanical task if needed.
Self-check
Before every tool call in the main context, ask: Could a cheaper model do this exact action with the same correctness? If yes, dispatch. If no, proceed.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: The-Artificer-of-Ciphers-LLC
- Source: The-Artificer-of-Ciphers-LLC/skills-from-the-artificer
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.