← Documentation

Skills & Slash Commands

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 skills
# 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

What are Skills?

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.

1

Install skills

Run sprintra skills install --all in your project root

2

Restart Claude Code

Claude Code picks up new skills on restart

3

Use slash commands

Type /capture, /standup, /wrap etc. in your Claude Code session

Planning

Skills for capturing ideas, making decisions, brainstorming with AI personas, and organizing sprints.

Capture Feature

/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.

Example
/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%

Record Decision

/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.

Example
/decide use PostgreSQL for primary database

Decision recorded: Use PostgreSQL for primary database (dec-abc123)
Category: technology
Status: accepted

Brainstorm Session

/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.

Example
/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 Planning

/sprint-plan

Create 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.

Example
/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)

Workflow

Skills for managing your coding sessions and implementing features with full project context.

Wrap Session

/wrap

End 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.

Example
/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

/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.

Example
/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...

Reporting

Skills for generating standup reports and sprint reviews from your project data.

Standup Report

/standup

Generate 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.

Example
/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 Review

/sprint-review

Review 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.

Example
/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   |

Quick Reference

CommandCategoryDescription
/capture [idea]planningCapture a feature idea with stories, acceptance criteria, and decisions.
/decide [topic]planningRecord a technical or architecture decision as an ADR.
/brainstorm [topic]planningStart a brainstorming session with AI personas for planning and architecture.
/sprint-planplanningCreate or review a sprint plan with AI recommendations.
/wrapworkflowEnd coding session, save context for seamless resume.
/implement [feature-id]workflowStart implementing a feature with full context loaded from Sprintra.
/standupreportingGenerate standup from recent work sessions, commits, and story updates.
/sprint-reviewreportingReview sprint progress with metrics, blockers, and recommendations.

Creating Custom Skills

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.

.claude/skills/my-skill/SKILL.md
---
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