Skip to main content
ClaudeWave
Skill828 repo starsupdated yesterday

paca-epic

paca-epic transforms a product requirement or feature description into a fully structured epic in the Paca project management system, complete with child user stories and specification documents. Use this skill when tasked with planning a new feature, decomposing high-level requirements into actionable stories, creating an epic from scratch, or converting a vague directive like "we need X" into a sprint-ready backlog with clear acceptance criteria and task hierarchy.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/Paca-AI/paca /tmp/paca-epic && cp -r /tmp/paca-epic/skills/paca-epic ~/.claude/skills/paca-epic
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

You are turning requirements into a structured epic in Paca. Use Paca MCP tools throughout — never create local files.

**If no requirement is specified**, ask: "What requirement or feature do you want to turn into an epic? Describe it in a sentence or two."

---

## Step 1 — Load project context

1. Call `list_projects` to identify the relevant project (infer from the user's message, or ask if ambiguous).
2. Call `list_documents` and search for documents whose titles or descriptions suggest requirements, roadmap, architecture, or BDD scenarios. Read the most relevant ones with `get_document`. Understand the domain and existing feature landscape before writing anything.
3. Call `list_task_types` to check whether an "Epic" type exists.
4. Call `list_task_statuses` to know available statuses.
5. Call `list_tasks` to scan for existing epics so you avoid duplicating scope.

## Step 2 — Parse the requirements

Extract from the user's message:
- **Goal** — what user or business outcome this achieves
- **Scope** — what is in / out of scope
- **Stakeholders** — who benefits, who owns
- **Constraints** — tech, time, dependencies

**If requirements are vague**, ask at most 3 targeted questions before proceeding. Focus on what you genuinely cannot infer. Good question templates:
- "Who is the primary user of this feature, and what problem does it solve for them?"
- "Is X (name a reasonable assumption) in scope, or should I treat it as out of scope for now?"
- "Are there existing systems or services this needs to integrate with?"

Don't ask about things you can reasonably infer from the project docs you just read.

## Step 3 — Create the epic task

Call `create_task`:
- **Type**: "Epic" if available from `list_task_types`; otherwise a standard task clearly titled as an epic
- **Title**: concise, outcome-oriented (e.g. `Epic: User Authentication`)
- **Description** (Markdown):
  ```
  ## Goal
  <one paragraph>

  ## Scope
  **In:** ...
  **Out:** ...

  ## Acceptance Criteria
  - [ ] ...

  ## Open Questions
  - ...
  ```

## Step 4 — Break into stories

Derive child tasks from the requirements. Aim for 3–8 stories for a typical epic; go higher if the scope is large, but confirm with the user before creating more than 10. For each story:
- Call `create_task` with a clear title, brief description, and 2–3 acceptance criteria
- Reference the parent epic in the description: `Part of #<epic-number>`
- Prefer vertical slices (end-to-end thin features) over horizontal layers (all-backend, all-frontend)

## Step 5 — Create a spec document

Call `create_document`:
- **Title**: `Epic: <name> — Specification`
- **Content**: Goal · Background · User Stories (linked by `#number`) · Acceptance Criteria · Out of Scope · Open Questions

**What's next:** After this, consider running `/paca-estimate #<epic-number>` to add story point estimates to the new tasks, and `/paca-sprint` to plan them into a sprint.

Report back: epic task number, list of child task numbers and titles, and the spec document title.

---

## If Paca MCP is not connected

> Paca MCP tools are not available. Run `/paca-setup` to configure the connection.

---

## Tool reference

**Tasks:** `create_task` · `update_task` · `list_tasks` · `get_task_by_number` · `list_task_types` · `list_task_statuses`  
**Documents:** `create_document` · `list_documents` · `get_document`  
**Projects:** `list_projects` · `get_project`
guidesSkill
paca-breakdownSkill

Break a large Paca task or epic into smaller, actionable sub-tasks with dependency ordering. Use when decomposing work that is too large to estimate or execute in a single session, when creating an implementation plan, or when a task needs to be split into vertical slices before sprint planning.

paca-clarifySkill

Clarify a vague or incomplete Paca task or specification by identifying ambiguities, asking targeted questions, and rewriting the description with explicit acceptance criteria. Use when a task is unclear, missing edge cases, lacks a testable done condition, or when someone asks to improve or flesh out a spec.

paca-doSkill

Execute a Paca task end-to-end — reading context and acceptance criteria, doing the work (code, writing, research, review), updating task status, and commenting results. Use when asked to start, implement, complete, or work on a specific Paca task. Reads project docs first to understand the codebase and tech stack before acting.

paca-docSkill

Write or update documentation for a feature, task, or topic in Paca Docs. Use when asked to document a completed feature, write a guide or runbook, update existing docs, create a spec or architecture document, or produce BDD scenarios. Documentation is saved in Paca — never created as local files.

paca-estimateSkill

Estimate story points for Paca tasks using the Fibonacci scale, calibrated against recently completed reference tasks and project tech stack. Use when tasks are missing estimates, before sprint planning, when the team needs sizing for prioritization, or when asked to size a backlog.

paca-prioritizeSkill

Set or adjust priorities across the Paca backlog, aligned to roadmap goals and business value. Use when the backlog needs sorting, before sprint planning, when tasks need explicit Critical/High/Medium/Low priority labels, or when asked to rank work by importance or urgency.

paca-setupSkill

Configure the Paca MCP server for use with Claude Code or Claude Desktop. Use when setting up Paca for the first time, adding or editing the MCP server config, troubleshooting connectivity, or installing the Paca skills globally. Walks the user through prerequisites, config file generation, verification, and optional global skill install.