subagent-driven-development

subagent-driven-development is a skill for Codex from jamditis/claude-skills-journalism. It costs 17 tokens per session (2,853 once invoked), scanned A, original, MIT.

A development workflow for carrying out an existing implementation plan by assigning each mostly independent task to a fresh helper agent. Each task receives a requirements review and then a code-quality review.

In plain words
What is it for?
It helps execute multi-step coding plans within one session. It is for splitting independent implementation tasks among helper agents and reviewing each result.
Why use it?
It keeps task context focused and prevents unrelated conversation history from leaking into the work. The two review stages help catch both missed requirements and poor implementation choices.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: mentions subagents; names the TodoWrite tool.

Part of the superjawn plugin — 14 skills shipped together

Good fit It helps execute multi-step coding plans within one session. It is for splitting independent implementation tasks among helper agents and reviewing each result.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jamditis/claude-skills-journalism/subagent-driven-development
Install

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.

Any agent
npx skills add jamditis/claude-skills-journalism --skill subagent-driven-development
Clone the repo
git clone --depth 1 https://github.com/jamditis/claude-skills-journalism

Made for: Codex.

Or install superjawn, the plugin that ships this one along with the rest of its 14 skills.

Wrote 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.

agentmods badge for subagent-driven-development

README.md
[![agentmods](https://agentmods.dev/badge/skills/jamditis/claude-skills-journalism/subagent-driven-development/github.svg)](https://agentmods.dev/skills/jamditis/claude-skills-journalism/subagent-driven-development)
Your own site
<a href="https://agentmods.dev/skills/jamditis/claude-skills-journalism/subagent-driven-development"><img src="https://agentmods.dev/badge/skills/jamditis/claude-skills-journalism/subagent-driven-development/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for subagent-driven-development

Your own site · 80×15
<a href="https://agentmods.dev/skills/jamditis/claude-skills-journalism/subagent-driven-development"><img src="https://agentmods.dev/badge/skills/jamditis/claude-skills-journalism/subagent-driven-development.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 17 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,853 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 72
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00017 $0.02853
Opus 5 $0.00009 $0.01426
Sonnet 5 $0.00003 $0.00571
Haiku 4.5 $0.00002 $0.00285

Measured 3d ago against content hash 792d1ef285fe, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

subagent-driven-development 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 3d ago.

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.

superjawn/skills/subagent-driven-development/SKILL.md · 289 lines

How it starts

The opening of the file, as written. The whole thing — 289 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Subagent-Driven Development

Execute plan by dispatching fresh subagent per task, with two-stage review after each: spec compliance review first, then code quality review.

Why subagents: You delegate tasks to specialized agents with isolated context. By precisely crafting their instructions and context, you ensure they stay focused and succeed at their task. They should never inherit your session's context or history, you construct exactly what they need. This also preserves your own context for coordination work.

Core principle: Fresh subagent per task + two-stage review (spec then quality) = high quality, fast iteration

When to Use

digraph when_to_use {
    "Have implementation plan?" [shape=diamond];
    "Tasks mostly independent?" [shape=diamond];
    "Stay in this session?" [shape=diamond];
    "subagent-driven-development" [shape=box];
    "executing-plans" [shape=box];
    "Manual execution or brainstorm first" [shape=box];

    "Have implementation plan?" -> "Tasks mostly independent?" [label="yes"];
    "Have implementation plan?" -> "Manual execution or brainstorm first" [label="no"];
    "Tasks mostly independent?" -> "Stay in this session?" [label="yes"];
    "Tasks mostly independent?" -> "Manual execution or brainstorm first" [label="no - tightly coupled"];
    "Stay in this session?" -> "subagent-driven-development" [label="yes"];
    "Stay in this session?" -> "executing-plans" [label="no - parallel session"];
}

Read the full file on GitHub · 289 lines

Files

What ships with it

4 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.

Changes

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.

  1. 3d ago First seen · 289 lines · 17 tokens per session scan A 792d1ef285fe

Subscribe to this mod's changes

subagent-driven-development is a skill published in the GitHub repository jamditis/claude-skills-journalism (389 stars, last pushed yesterday), licensed MIT. It adds 17 tokens to every session and 2,853 once invoked, about $0.0001 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-05.

Related

Other skills, from other repositories

food-research

Run a comprehensive, multi-source literature and evidence-synthesis workflow for food & nutrition science. Use when the user wants to research a food/nutrition topic in depth, do a literature review, build an evidence brief, screen and synthesize many sources, verify citations, or scope a systematic review.…

PangenomeAI/academic-skills-food-nutrition · 154 tokens

wiley-food

Shared author-guideline skill for Wiley food & nutrition journals: Comprehensive Reviews in Food Science and Food Safety, Food Frontiers, eFood, Legume Science, Food and Energy Security, Molecular Nutrition & Food Research, Journal of Food Biochemistry, Food Science & Nutrition. Use to format or check a manuscript for…

PangenomeAI/academic-skills-food-nutrition · 137 tokens

data-table-formatter

Formats raw or messy data into a clean, publication-ready table with appropriate headers, sorted rows, consistent number formatting, and a source note — ready to drop into an article, report, or web page.

ur-grue/autopunk-media-skills · 46 tokens

annu-rev-food

Author-guideline skill for Annual Review of Food Science and Technology (Annual Reviews, ISSN 1941-1413). Use to format or check an invited review for this journal — review structure, author–date Annual Reviews references, and figure specs. Triggers: submit to Annual Review of Food Science and Technology, Annual…

PangenomeAI/academic-skills-food-nutrition · 105 tokens

food-chemistry

Author-guideline skill for Food Chemistry (Elsevier, ISSN 0308-8146). Use when preparing, formatting, or checking a manuscript for submission to Food Chemistry — structure, word/abstract limits, Highlights, graphical abstract, Elsevier numbered (Vancouver) references, and figure specs. Triggers: submit to Food…

PangenomeAI/academic-skills-food-nutrition · 110 tokens

foods-mdpi

Shared author-guideline skill for MDPI food & nutrition journals: Foods, Antioxidants, Toxins. Use to format or check a manuscript for an MDPI food journal — the MDPI template structure, abstract/keyword limits, numbered MDPI/ACS-style references, and figure specs. Triggers: submit to Foods, Antioxidants, Toxins…

PangenomeAI/academic-skills-food-nutrition · 112 tokens