Agent skill · Workflow & Productivity

expand-tasks

Expand all TaskMaster tasks with deep research before coding begins. Reads tasks.json, launches parallel research agents per task in waves using the research-expander agent. Writes findings back to tasks.json. Part of the prd-taskmaster toolkit. Use after PRD is parsed and before implementation. Invoke with /expand-tasks.

anombyte93github.com/anombyte93GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add anombyte93/prd-taskmaster --skill expand-tasks --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 8 KB
Bundled scripts: none
Allowed tools: -Read-Write-Edit-Bash-Task-Skill
Path: skills/expand-tasks/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 586
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Expand Tasks with Research v1.0 Expands TaskMaster tasks with research before coding begins. Deterministic operations handled by `script.py`; AI handles judgment. **Script location**: `skills/expand-tasks/script.py` (relative to plugin root) **Part of**: `prd-taskmaster` plugin **Depends on**: `research-expander` agent (parallel research worker), any research provider configured via `task-master models --set-research` or registered as an MCP research tool. ## When to Use Activate when user says: expand tasks, research tasks, research before coding for all, expand subtasks. Do NOT activate for: single task research (use /research-before-coding), PRD generation (use /prd:go). ## Native-parallel first (token economy) Before launching agent waves, check the cheaper path: the native engine expands tasks in parallel for free. Prefer `python3 script.py expand` — backend op expand (native api) — or the `expand_tasks` MCP tool: it runs structured `expand` across pending tasks concurrently (inheriting the engine's ThreadPoolExecutor) on economy-tier models / keyless host CLIs and merges atomically. Use THIS skill's agent waves when: no provider/CLI is available, native expand reports failu

What's inside
Steps it walks through
  1. When to Use
  2. Native-parallel first (token economy)
  3. Prerequisites
  4. Workflow (5 Steps)
  5. Step 1: Preflight
  6. Step 2: Choose Scope
  7. Step 3: Generate Research Prompts
  8. Step 4: Launch Parallel Research Agents
  9. Step 5: Collect and Write Results
  10. Research Agent Prompt Pattern
  11. Error Handling
  12. Output
  13. Integration with prd-taskmaster
  14. Tips
Commands it runs
python3 skills/expand-tasks/script.py read-tasks
python3 skills/expand-tasks/script.py gen-prompt --task-id <ID>
cat > /tmp/research-task-<ID>.md <<'EOF'
python3 skills/expand-tasks/script.py write-research --task-id <ID> --research /tmp/research-task-<ID>.md
python3 skills/expand-tasks/script.py status
More from prd-taskmaster
All skills →
About this skill
What does the expand-tasks skill do?

Expand all TaskMaster tasks with deep research before coding begins. Reads tasks.json, launches parallel research agents per task in waves using the research-expander agent. Writes findings back to tasks.json. Part of the prd-taskmaster toolkit. Use after PRD is parsed and before implementation. Invoke with /expand-tasks.

How do I install it?

Run `npx skills add anombyte93/prd-taskmaster --skill expand-tasks --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From anombyte93/prd-taskmaster, a repository with 586 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going