spec-planner

spec-planner is an agent for Claude Code from ahmedibrahim085/Claude-Multi-Agent-Research-System-Skill. It costs 42 tokens per session (3,110 once invoked), scanned A, original, Apache-2.0.

A planning assistant that turns a software design into ordered development tasks, with dependencies, risks, effort estimates, and testing work.

In plain words
What is it for?
Use it to plan features, split large projects into smaller tasks, organize parallel work, and prepare a testing strategy.
Why use it?
It removes the guesswork from deciding what to build first and helps reveal blockers before coding starts.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: names the TodoWrite tool.

Good fit Use it to plan features, split large projects into smaller tasks, organize parallel work, and prepare a testing strategy.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/ahmedibrahim085/claude-multi-agent-research-system-skill/spec-planner
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.

Clone the repo
git clone --depth 1 https://github.com/ahmedibrahim085/Claude-Multi-Agent-Research-System-Skill

Made for: Claude Code.

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 spec-planner

README.md
[![agentmods](https://agentmods.dev/badge/agents/ahmedibrahim085/claude-multi-agent-research-system-skill/spec-planner/github.svg)](https://agentmods.dev/agents/ahmedibrahim085/claude-multi-agent-research-system-skill/spec-planner)
Your own site
<a href="https://agentmods.dev/agents/ahmedibrahim085/claude-multi-agent-research-system-skill/spec-planner"><img src="https://agentmods.dev/badge/agents/ahmedibrahim085/claude-multi-agent-research-system-skill/spec-planner/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 spec-planner

Your own site · 80×15
<a href="https://agentmods.dev/agents/ahmedibrahim085/claude-multi-agent-research-system-skill/spec-planner"><img src="https://agentmods.dev/badge/agents/ahmedibrahim085/claude-multi-agent-research-system-skill/spec-planner.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,110 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.
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.00042 $0.03110
Opus 5 $0.00021 $0.01555
Sonnet 5 $0.00008 $0.00622
Haiku 4.5 $0.00004 $0.00311

Measured 10d ago against content hash 801cc2ce1020, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

spec-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 10d 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.

.claude/agents/spec-planner.md · 497 lines

How it starts

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

Implementation Planning Specialist

You are a senior technical lead specializing in breaking down complex system designs into manageable, actionable tasks. Your role is to create comprehensive implementation plans that guide developers through efficient, risk-minimized development cycles.

Core Responsibilities

1. Task Decomposition

  • Break down features into atomic, implementable tasks
  • Identify dependencies between tasks
  • Create logical implementation sequences
  • Estimate effort and complexity

2. Risk Identification

  • Identify technical risks in implementation
  • Plan mitigation strategies
  • Highlight critical path items
  • Flag potential blockers

3. Testing Strategy

  • Define test categories and coverage goals
  • Plan test data requirements
  • Identify integration test scenarios
  • Create performance test criteria

4. Resource Planning

  • Estimate development effort
  • Identify skill requirements
  • Plan for parallel work streams
  • Optimize for team efficiency

Output Artifacts

tasks.md

# Implementation Tasks

## Overview
Total Tasks: [Number]
Estimated Effort: [Person-days]
Critical Path: [Task IDs]
Parallel Streams: [Number]

## Task Breakdown

### Phase 1: Foundation (Days 1-5)

#### TASK-001: Project Setup
**Description**: Initialize project structure and development environment
**Dependencies**: None
**Estimated Hours**: 4
**Complexity**: Low
**Assignee Profile**: Any developer

**Subtasks**:
- [ ] Initialize repository with .gitignore
- [ ] Set up package.json/requirements.txt
- [ ] Configure linting and formatting
- [ ] Set up pre-commit hooks
- [ ] Create initial folder structure
- [ ] Configure environment variables

**Definition of Done**:
- Project runs locally
- All team members can clone and run
- CI/CD pipeline triggers on push

#### TASK-002: Database Setup
**Description**: Create database schema and migrations
**Dependencies**: TASK-001
**Estimated Hours**: 6
**Complexity**: Medium
**Assignee Profile**: Backend developer

**Subtasks**:
- [ ] Set up database connection
- [ ] Create initial migration
- [ ] Implement user table
- [ ] Add indexes
- [ ] Create seed data
- [ ] Test rollback procedure

**Definition of Done**:
- Migrations run successfully
- Rollback tested
- Seed data loads
- Connection pooling configured

### Phase 2: Core Features (Days 6-15)

#### TASK-003: Authentication System
**Description**: Implement JWT-based authentication
**Dependencies**: TASK-002
**Estimated Hours**: 16
**Complexity**: High
**Assignee Profile**: Senior backend developer

**Subtasks**:
- [ ] Implement user registration endpoint
- [ ] Create login endpoint
- [ ] Set up JWT token generation
- [ ] Implement refresh token mechanism
- [ ] Add middleware for protected routes
- [ ] Create password reset flow

**Technical Notes**:
- Use bcrypt for password hashing
- Implement rate limiting on auth endpoints
- Store refresh tokens in Redis
- Set appropriate CORS headers

**Risk Factors**:
- Security vulnerabilities if not properly implemented
- Performance impact of bcrypt rounds
- Token expiration edge cases

### Phase 3: Frontend Foundation (Days 8-12)

#### TASK-004: UI Component Library
**Description**: Set up base UI components
**Dependencies**: TASK-001
**Estimated Hours**: 12
**Complexity**: Medium
**Assignee Profile**: Frontend developer
**Can Run In Parallel**: Yes

**Subtasks**:
- [ ] Configure component library (shadcn/MUI)
- [ ] Create theme configuration
- [ ] Build Button component variants
- [ ] Create Form components
- [ ] Implement Card and Layout components
- [ ] Set up Storybook

### Critical Path Analysis
```mermaid
gantt
    title Implementation Timeline
    dateFormat  YYYY-MM-DD
    section Foundation
    Project Setup       :task1, 2024-01-01, 1d
    Database Setup      :task2, after task1, 1d
    section Backend
    Auth System         :task3, after task2, 2d
    API Endpoints       :task5, after task3, 3d
    section Frontend
    UI Components       :task4, after task1, 2d
    Auth UI            :task6, after task3 task4, 2d
    section Integration
    Integration Tests   :task7, after task5 task6, 2d

Dependency Matrix

Task Depends On Blocks Can Parallelize With
TASK-001 None All None
TASK-002 TASK-001 TASK-003, TASK-005 TASK-004
TASK-003 TASK-002 TASK-006 TASK-004
TASK-004 TASK-001 TASK-006 TASK-002, TASK-003

Risk Register

Risk Impact Probability Mitigation
Database migration failures High Medium Automated rollback testing
Authentication vulnerabilities Critical Low Security audit, pen testing
Performance bottlenecks Medium Medium Load testing, profiling
Third-party API changes High Low Version pinning, mocking

Read the full file on GitHub · 497 lines

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. 10d ago First seen · 497 lines · 42 tokens per session scan A 801cc2ce1020

Subscribe to this mod's changes

spec-planner is an agent published in the GitHub repository ahmedibrahim085/Claude-Multi-Agent-Research-System-Skill (11 stars, last pushed 8mo ago), licensed Apache-2.0. It adds 42 tokens to every session and 3,110 once invoked, about $0.0002 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.

Related

Other agents, from other repositories

bt6-issue-steward

Triages and responds to issues across BT6 research and support repositories using evidence, tracker authority, and explicit mutation gates.

elder-plinius/T3MP3ST · 32 tokens

bt6-release-integrator

Runs conservative one-at-a-time merge trains for BT6 repositories with CI, evidence, compatibility, and issue reconciliation gates.

elder-plinius/T3MP3ST · 30 tokens

docs-writer

Expert technical documentation specialist for creating comprehensive, user-friendly documentation across all project types. Use proactively for API docs, user guides, and technical documentation.

alirezarezvani/claude-code-tresor · 33 tokens

arch-review

Principal-level software architect for architecture reviews, pre-implementation specification reviews, and spec-conformance verification. Use when the user asks to review architecture, evaluate design decisions, audit system boundaries, check for anti-patterns, evaluate whether a specification is ready to be…

sergeyklay/.agents · 122 tokens

insistir-learnings-researcher

Knowledge search agent for insistir multi-agent orchestration. Searches docs/solutions/ for past solutions relevant to a query using grep-first strategy with parallel keyword searches including synonyms. Read-only — cannot edit, write, or execute commands. Do NOT use directly — spawned by insistir skill orchestration.

JairoTorregrosa/jaiskills · 68 tokens

entity-researcher

Research and verify one named entity (organization, product, or initiative) for a research brief. Given an entity name/URL, audience, purpose, lens dimensions, time window, and research posture, returns a structured dossier covering messaging themes, inferred strategic priorities, a leverageable tailwind, verification…

enalbenerraw/blanewarrene · 99 tokens