8 AI-powered workflow skills that add slash commands to Claude Code. Each skill guides your AI agent through a structured workflow using Sprintra MCP tools.
# Install all 8 skills at once sprintra skills install --all # Or install specific skills sprintra skills install capture decide wrap # Update installed skills to latest sprintra skills update # List available skills sprintra skills list
Skills are SKILL.md files installed into your project's .claude/skills/ directory. Claude Code reads these files and exposes them as slash commands. When you type a trigger like /capture, Claude follows the skill's instructions to execute a structured workflow.
Install skills
Run sprintra skills install --all in your project root
Restart Claude Code
Claude Code picks up new skills on restart
Use slash commands
Type /capture, /standup, /wrap etc. in your Claude Code session
Skills for capturing ideas, making decisions, brainstorming with AI personas, and organizing sprints.
/capture [idea]Capture a feature idea with stories, acceptance criteria, and decisions.
Have a short conversation (2-3 exchanges max), then automatically creates a feature with acceptance criteria, breaks it into stories (2-4 hours each), and records any technical decisions discussed. Shows a summary with completeness score.
/capture user authentication system Feature: User Authentication System (high) Stories: 5 (13 SP) 1. Set up auth middleware — 3 SP 2. Login/register API endpoints — 3 SP 3. Password reset flow — 2 SP 4. Session management — 3 SP 5. Auth UI components — 2 SP Decisions: 1 recorded Completeness: 85%
/decide [topic]Record a technical or architecture decision as an ADR.
Captures Architecture Decision Records with title, context, decision, and consequences (both positive and negative). Checks for conflicts with existing decisions. If comparing options, briefly discusses tradeoffs before recording.
/decide use PostgreSQL for primary database Decision recorded: Use PostgreSQL for primary database (dec-abc123) Category: technology Status: accepted
/brainstorm [topic]Start a brainstorming session with AI personas for planning and architecture.
Loads full project context and adopts one of 6 personas: project_manager, technical_architect, skeptical_reviewer, sprint_planner, product_manager, or feature_planner. Persists all outcomes (features, decisions, notes) to Sprintra as you discuss.
/brainstorm MyProject architect Loading project context... Adopting: Technical Architect persona Project: MyProject [active] Features: 12 (3 done, 5 in progress, 4 todo) Sprint: Sprint 3 — API Layer (65% complete) As your technical architect, I see a few areas to discuss...
/sprint-planCreate or review a sprint plan with AI recommendations.
Analyzes all features, stories, and sprints. Identifies unassigned features, features without story breakdowns, and recommends sprint composition based on priority and dependencies. Can create new sprints or review existing ones.
/sprint-plan Sprint Progress Summary: Sprint 5 [active]: 8/12 stories (67%) Sprint 6 [planning]: 0 stories assigned Unplanned Features (4): - Payment Integration [high] — 5 stories, 15 SP - Email Notifications [medium] — 3 stories, 8 SP ... Recommendation: Assign Payment Integration to Sprint 6 (highest priority, no blockers)
Skills for managing your coding sessions and implementing features with full project context.
/wrapEnd coding session, save context for seamless resume.
Automatically analyzes what happened during your session: updates story statuses, adds completion comments, saves feature context (where you left off, files touched), ends the work session with a summary and next steps, and syncs git commits.
/wrap Session Wrapped Duration: 2h 15m Stories completed: 2 - s-abc123: Auth middleware - s-def456: Login endpoint Files changed: 8 Next steps: Implement password reset flow Context saved — next session will auto-resume.
/implement [feature-id]Start implementing a feature with full context loaded from Sprintra.
Loads the complete implementation bundle: feature details, stories with status and points, relevant architecture decisions, tech stack, and any saved context from previous sessions. Works through stories one at a time, updating statuses as you go.
/implement feat-abc123 Feature: Payment Integration [high] Stories (5): 1. [todo] Stripe SDK setup — 2 SP 2. [todo] Payment intent API — 3 SP 3. [todo] Webhook handler — 3 SP 4. [todo] Checkout UI — 3 SP 5. [todo] E2E tests — 2 SP Decisions affecting this feature: - dec-xyz: Use Stripe over PayPal Starting with: Stripe SDK setup...
Skills for generating standup reports and sprint reviews from your project data.
/standupGenerate standup from recent work sessions, commits, and story updates.
Reads recent work sessions, current sprint progress, activity feed, and AI recommendations to produce a concise standup report. Flags blocked items, sprint risks, and missed session wraps automatically.
/standup Standup — March 23, 2026 Done (since last session) - Auth middleware refactor — done (Authentication) - Login endpoint tests — done (Authentication) In Progress - Password reset flow — in_progress (Authentication) Next Up - Checkout UI component — recommended by AI Sprint Progress Sprint 5: 10/14 stories (71%) [============== ] 71% complete
/sprint-reviewReview sprint progress with metrics, blockers, and recommendations.
Generates a comprehensive sprint review with velocity metrics, story point delivery, burndown status, feature breakdown table, and risk flags. Can also close sprints and carry over incomplete stories.
/sprint-review Sprint Review: Sprint 5 — API Layer Progress 10/14 stories (71%) | 28/38 SP delivered [============== ] 71% complete By Status - Done: 10 stories - In Progress: 2 stories - Todo: 2 stories Feature Breakdown | Feature | Stories | Done | Status | |----------------|---------|------|-----------| | Authentication | 5/5 | 5 | Complete | | Payments | 3/5 | 3 | On Track | | Notifications | 2/4 | 2 | At Risk |
| Command | Category | Description |
|---|---|---|
| /capture [idea] | planning | Capture a feature idea with stories, acceptance criteria, and decisions. |
| /decide [topic] | planning | Record a technical or architecture decision as an ADR. |
| /brainstorm [topic] | planning | Start a brainstorming session with AI personas for planning and architecture. |
| /sprint-plan | planning | Create or review a sprint plan with AI recommendations. |
| /wrap | workflow | End coding session, save context for seamless resume. |
| /implement [feature-id] | workflow | Start implementing a feature with full context loaded from Sprintra. |
| /standup | reporting | Generate standup from recent work sessions, commits, and story updates. |
| /sprint-review | reporting | Review sprint progress with metrics, blockers, and recommendations. |
Skills are standard Claude Code SKILL.md files. You can create your own by adding a SKILL.md file to any subdirectory of .claude/skills/ in your project.
--- name: my-skill description: A custom workflow for my team argument-hint: "[args]" --- # My Custom Skill Instructions for Claude to follow when this skill is triggered... ## Steps 1. Do something 2. Do something else 3. Show results