Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/yonatangross/orchestkit/implementnpx skills add yonatangross/orchestkit --skill implementgit clone --depth 1 https://github.com/yonatangross/orchestkitWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/yonatangross/orchestkit/implement)<a href="https://agentmods.dev/skills/yonatangross/orchestkit/implement"><img src="https://agentmods.dev/badge/skills/yonatangross/orchestkit/implement.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00091 | $0.06722 |
| Opus 5 | $0.00046 | $0.03361 |
| Sonnet 5 | $0.00018 | $0.01344 |
| Haiku 4.5 | $0.00009 | $0.00672 |
Grade A, and why
implement scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 519 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Implement Feature
Parallel subagent execution for feature implementation with scope control and reflection.
Quick Start
/ork:implement user authentication
/ork:implement --model=opus real-time notifications
/ork:implement dashboard analytics
Argument Resolution
FEATURE_DESC = "$ARGUMENTS" # Full argument string, e.g., "user authentication"
# $ARGUMENTS[0] is the first token, $ARGUMENTS[1] second, etc. (CC 2.1.59)
# Model override detection (CC 2.1.72)
MODEL_OVERRIDE = None
for token in "$ARGUMENTS".split():
if token.startswith("--model="):
MODEL_OVERRIDE = token.split("=", 1)[1] # "opus", "sonnet", "haiku", "fable"
FEATURE_DESC = FEATURE_DESC.replace(token, "").strip()
Pass MODEL_OVERRIDE to all Agent() calls via model=MODEL_OVERRIDE when set. Accepts symbolic names (opus, sonnet, haiku, fable on harnesses whose Agent tool lists it; note fable is premium API spend after 2026-07-12) or full IDs (claude-opus-4-8) per CC 2.1.74.
Step -1: MCP Probe + Resume Check
Run BEFORE any other step. Detect available MCP servers and check for resumable state.
# Probe MCPs (parallel — all in ONE message):
# memory is alwaysLoad in .mcp.json (CC 2.1.121+, #1541) — probe below kept as fallback for older CC:
ToolSearch(query="select:mcp__memory__search_nodes")
ToolSearch(query="select:mcp__context7__resolve-library-id")
Write(".claude/chain/capabilities.json", JSON.stringify({
"memory": <true if found>,
"context7": <true if found>,
"timestamp": now()
}))
# Resume check:
Read(".claude/chain/state.json")
# If exists and skill == "implement":
# Read last handoff (e.g., 04-architecture.json)
# Skip to current_phase
# "Resuming from Phase {N} — architecture decided in previous session"
# If not: write initial state
Write(".claude/chain/state.json", JSON.stringify({
"skill": "implement", "feature": FEATURE_DESC,
"current_phase": 1, "completed_phases": [],
"capabilities": capabilities,
"budget_remaining_pct": 100 // advisory; see Budget Awareness below
}))
What ships with it
30 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- assets/micro-plan-template.md 1.4 KB
- assets/reflection-template.md 1.4 KB
- checklists/implementation-review.md 1.2 KB
- references/agent-phases.md 18 KB
- references/agent-teams-full-stack.md 10 KB
- references/agent-teams-phases.md 5.2 KB
- references/agent-teams-security-audit.md 4.4 KB
- references/blast-radius-clarification.md 3.4 KB
- references/cc-enhancements.md 1.3 KB
- references/e2e-verification.md 1.6 KB
- references/feedback-loop.md 616 B
- references/interview-mode.md 871 B
- references/manual-worktree-pattern.md 6.4 KB
- references/micro-planning-guide.md 2.2 KB
- references/orchestration-modes.md 1.2 KB
- references/scope-creep-detection.md 2.1 KB
- references/team-worktree-setup.md 5.6 KB
- references/test-requirements-matrix.md 2.3 KB
- references/tier-classification.md 2.1 KB
- references/worktree-isolation-mode.md 2.7 KB
- references/worktree-workflow.md 3.1 KB
- rules/_sections.md 1.4 KB
- rules/agent-scope-containment.md 3.5 KB
- rules/batch-governance.md 3.2 KB
- rules/commit-after-milestone.md 2.8 KB
- rules/test-coverage-requirement.md 3.0 KB
- rules/tier-validation.md 2.8 KB
- rules/worktree-cleanup.md 2.8 KB
- scripts/worktree-setup.sh 4.4 KB runs code
- test-cases.json 2.9 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 519 lines · 91 tokens per session scan A fec7c2f50693
implement is a skill published in the GitHub repository yonatangross/orchestkit (225 stars, last pushed yesterday), licensed MIT. It adds 91 tokens to every session and 6,722 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
agent-self-scheduling
Schedule AI agent runs with cron, loops, or external clocks while avoiding unsafe tight autonomous timers.
idea-clarifier
Clarifies a vague request into a concrete starting point.
scqa-writing-framework
Structures content using the Situation, Complication, Question, Answer framework for clear, logical, and engaging narratives suitable for threads, articles, and reports.
source-validation-skill
Validates the credibility of information sources, highlighting reliability, relevance, and potential biases.
video-script-generator
Generates video scripts with hooks, structured sections, pacing, and call-to-actions optimized for engagement and retention.
deep-research-synthesizer
Synthesizes insights from large datasets, filters irrelevant data, identifies patterns, and produces actionable summaries.