generate-task

A planning tool that turns a product requirements document, or PRD, into a sequence of small engineering tasks. Each task is intended to be self-contained and ready for implementation or a pull request.

In plain words
What is it for?
Reading a PRD, inspecting the codebase, finding related implementation patterns, and organizing work across databases, APIs, shared code, user interfaces, tests, and configuration.
Why use it?
It connects written product requirements with the concrete code changes needed, so important requirements, tests, and project conventions are less likely to be missed.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/jgamaraalv/ts-dev-kit/generate-task
Any agent
npx skills add jgamaraalv/ts-dev-kit --skill generate-task
Clone the repo
git clone --depth 1 https://github.com/jgamaraalv/ts-dev-kit

Made for: Claude Code, Codex.

Per session 126 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,662 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00126 $0.01662
Opus 5 $0.00063 $0.00831
Sonnet 5 $0.00025 $0.00332
Haiku 4.5 $0.00013 $0.00166

Measured 2d ago against content hash 98f03a9f827a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

generate-task 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.

skills/generate-task/SKILL.md · 137 lines

How it starts

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

<phase_1_read_prd> Read the PRD document fully. Extract and organize:

  • Functional requirements — numbered, atomic conditions
  • Acceptance criteria — how feature completion is verified
  • Non-functional requirements — performance, security, accessibility, scalability targets
  • Scope — what is included and what is explicitly excluded
  • User journeys — key flows and their steps
  • Success metrics and KPIs </phase_1_read_prd>

<phase_2_analyze_codebase> Before decomposing tasks, understand the target project:

  1. Read CLAUDE.md and root package.json — project structure, package manager, tech stack, key directories.
  2. Identify where implementation units live — backend routes, frontend pages, shared types, database schemas, tests.
  3. Search for patterns similar to the feature being built — use Grep/Glob to find related files and establish co-location conventions.
  4. List the domain areas the feature touches — database, API, shared, frontend, tests, config. </phase_2_analyze_codebase>

<phase_3_identify_implementation_units> Map every PRD requirement to concrete implementation units. An implementation unit is any atomic change: a new schema, a route, a component, a migration, a shared type, a test file, a config entry, an i18n key.

For each unit, identify:

  • File path (exact, following codebase conventions)
  • Action: create or modify
  • Domain: database | api | shared | frontend | test | config | docs
  • Dependencies: which other units must exist first

Standard dependency ordering (lower layers before higher):

  1. Shared types, constants, i18n keys, env variables
  2. Database migrations and schema updates
  3. API routes, handlers, validation schemas
  4. Shared hooks, utilities, helper functions
  5. UI components (atoms → molecules → organisms)
  6. Pages and routes composing components
  7. Tests (unit, integration, E2E)
  8. Config and infrastructure changes
  9. Documentation updates

Orphan-free rule — every consumer of a resource must be in the same task as its producer OR in a later task that explicitly depends on the producer's task:

  • New i18n key + every component using that key → same task (or key in TASK_N, component in TASK_M where M > N and TASK_M depends on TASK_N)
  • New database column + migration that adds it → same task
  • New shared type + every immediate consumer → same task
  • New component + the page that renders it → same task (unless page is intentionally deferred to a later task) </phase_3_identify_implementation_units>

<phase_4_group_into_tasks> Group implementation units into tasks. Apply these rules in order:

Rule 1 — 30-file limit: a task may create or modify at most 30 files. If a natural group exceeds this, split on domain boundaries (data layer, API layer, UI layer, test layer).

Rule 2 — Production-ready delivery: every task, when merged in order, must leave the application in a runnable state — no broken imports, unresolved references, orphaned i18n keys, or missing migrations.

Rule 3 — Forward dependency only: if TASK_N requires output from TASK_M, then M < N. No task may depend on a later task.

Rule 4 — Mergeable without breaking: use feature flags, graceful degradation, or empty-state handling so earlier tasks don't expose incomplete UX to end users.

Rule 5 — Clear value delivery: each task must deliver a demonstrable increment — a working endpoint, a rendered component, a passing test suite. Avoid tasks with no visible or testable outcome.

Recommended grouping (adapt per feature):

  1. Foundation — shared types, constants, i18n keys, env variables
  2. Data layer — database schema, migrations, ORM models
  3. API layer — routes, handlers, validation schemas, error codes
  4. Core UI — reusable components, hooks, state management
  5. Feature pages — pages and routes composing the core UI
  6. Tests & polish — comprehensive test suites, accessibility audit, performance tuning
  7. Documentation — CLAUDE.md updates, API docs, migration guides

Read the full file on GitHub · 137 lines

Files

What ships with it

1 file 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. 2d ago First seen · 137 lines · 126 tokens per session scan A 98f03a9f827a

Subscribe to this mod's changes

generate-task is a skill published in the GitHub repository jgamaraalv/ts-dev-kit (15 stars, last pushed 6mo ago), licensed MIT. It adds 126 tokens to every session and 1,662 once invoked, about $0.0006 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 skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

brainstorming

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.

obra/superpowers · 37 tokens

auto-perf-optimize

Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.

microsoft/vscode · 62 tokens

chat-perf

Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.

microsoft/vscode · 51 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens