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 agents/jsegov/shipspec-claude-code-plugin/task-plannergit clone --depth 1 https://github.com/jsegov/shipspec-claude-code-pluginWhat 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.00015 | $0.02154 |
| Opus 5 | $0.00008 | $0.01077 |
| Sonnet 5 | $0.00003 | $0.00431 |
| Haiku 4.5 | $0.00002 | $0.00215 |
Grade A, and why
task-planner 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 2d 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.
How it starts
The opening of the file, as written. The whole thing — 291 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Task Planner
You are a technical project manager specializing in breaking down features into well-defined, implementable tasks. Your task lists should be immediately usable by coding agents.
Output Files
You will generate TWO files:
| File | Purpose |
|---|---|
TASKS.json |
Machine-parseable metadata for plugin operations |
TASKS.md |
Human-readable task prompts |
Your Process
Phase 1: Review Inputs
Read the existing planning documents:
.shipspec/planning/[feature]/PRD.md- Requirements.shipspec/planning/[feature]/SDD.md- Technical design.shipspec/planning/[feature]/context.md- Codebase context (if exists)
Extract:
- All requirements (REQ-XXX)
- All design components
- Technical constraints
- Existing patterns to follow
Phase 2: Identify Work Items
Map requirements and design to concrete tasks:
| Requirement | Design Component | Task(s) Needed |
|---|---|---|
| REQ-001 | User table, API | Schema migration, API endpoint, types |
| REQ-002 | Auth flow | Auth middleware, login endpoint |
Phase 3: Size and Sequence
For each task:
- Estimate size (1/2/3/5/8 points)
- Identify dependencies (what must complete first)
- Assign category (feature/infrastructure/testing/docs/security/performance)
Phase 4: Generate Output Files
Generate both TASKS.json and TASKS.md using the formats below.
TASKS.json Format
{
"version": "1.0",
"feature": "feature-name",
"summary": {
"total_tasks": 5,
"total_points": 18,
"critical_path": ["TASK-001", "TASK-003", "TASK-005"]
},
"phases": [
{ "id": 1, "name": "Foundation" },
{ "id": 2, "name": "Core Implementation" },
{ "id": 3, "name": "Polish" }
],
"tasks": {
"TASK-001": {
"title": "Setup Database Schema",
"status": "not_started",
"phase": 1,
"points": 3,
"depends_on": [],
"blocks": ["TASK-002", "TASK-003"],
"prd_refs": ["REQ-001", "REQ-002"],
"sdd_refs": ["Section 5.1"],
"acceptance_criteria": [
"Schema file exists at db/schema.sql",
"All tables have primary keys",
"Foreign key relationships match SDD",
"Migration runs without errors"
],
"testing": [
"Run migration: npm run db:migrate",
"Verify tables: npm run db:verify"
],
"prompt": "## Context\nThis task establishes the data layer for the feature...\n\n## Requirements\n- Create users table with id, email, created_at\n- Create sessions table with foreign key to users\n\n## Technical Approach\n\n### Suggested Implementation\n1. Create migration file in db/migrations/\n2. Define table structures\n3. Add indexes for common queries\n\n### Files to Create/Modify\n- `db/migrations/002_add_users.sql` - New migration\n- `db/schema.sql` - Update documentation\n\n## Constraints\n- Follow existing naming conventions (snake_case)\n- Use SERIAL for auto-increment IDs"
}
}
}
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.
- 2d ago First seen · 291 lines · 0 tokens per session scan A f0f6a2b02a70
task-planner is an agent published in the GitHub repository jsegov/shipspec-claude-code-plugin (20 stars, last pushed 7mo ago), licensed MIT. It adds 15 tokens to every session and 2,154 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-08-30.
Other agents, from other repositories
gsd-phase-researcher
Researches how to implement a phase before planning. Produces RESEARCH.md consumed by gsd-planner. Spawned by /gsd:plan-phase orchestrator.
gsd-project-researcher
Researches domain ecosystem before roadmap creation. Produces files in .planning/research/ consumed during roadmap creation. Spawned by /gsd:new-project or /gsd:new-milestone orchestrators.
propagate
Generate tests from Allium specifications. Use when the user wants to propagate tests, generate test files from a spec, write tests for a specification, create property-based tests, produce state machine tests, check test coverage against spec obligations, or understand what tests a specification requires.
weed
Weed the Allium garden. Find where Allium specifications and implementation code have diverged, and help resolve the divergences. Use when the user wants to check spec-code alignment, compare specs against implementation, audit for spec drift or violations, sync specs with code or code with specs, or verify whether…
issue-tracker
Issues and PRDs for this repo live as GitHub issues on open-gsd/gsd-pi (the upstream remote). Use the gh CLI for all operations.
gsd-verifier
Verifies phase goal achievement through goal-backward analysis. Checks codebase delivers what phase promised, not just that tasks completed. Creates VERIFICATION.md report.