# Send Sprint Planner to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "afrexai-sprint-planner",
    "name": "Sprint Planner",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/1kalin/afrexai-sprint-planner",
    "canonicalUrl": "https://clawhub.ai/1kalin/afrexai-sprint-planner",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/afrexai-sprint-planner",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-sprint-planner",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/afrexai-sprint-planner"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/afrexai-sprint-planner",
    "downloadUrl": "https://openagent3.xyz/downloads/afrexai-sprint-planner",
    "agentUrl": "https://openagent3.xyz/skills/afrexai-sprint-planner/agent",
    "manifestUrl": "https://openagent3.xyz/skills/afrexai-sprint-planner/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/afrexai-sprint-planner/agent.md"
  }
}
```
## Documentation

### Sprint Planner

Plan, scope, and run agile sprints that actually ship. No ceremony bloat.

### What It Does

Takes your backlog (or a rough list of tasks) and produces a sprint plan with:

Capacity math (team size × available days × focus factor)
Story point allocation with buffer
Sprint goal + success criteria
Daily standup template
Retro prompts tied to metrics

### Usage

Tell your agent: "Plan a 2-week sprint for [team/project]" with:

Team size and availability
Backlog items (paste or describe them)
Any hard deadlines or dependencies

### 1. Capacity Calculation

Available hours = team_size × sprint_days × hours_per_day × focus_factor
focus_factor = 0.7 (accounts for meetings, interrupts, context switching)

### 2. Backlog Prioritization (RICE)

Score each item:

Reach: How many users/processes does this affect? (1-10)
Impact: How much does it move the needle? (0.25, 0.5, 1, 2, 3)
Confidence: How sure are you about estimates? (0.5, 0.8, 1.0)
Effort: Person-days to complete

RICE Score = (Reach × Impact × Confidence) / Effort

Sort descending. Fill sprint capacity from top.

### 3. Sprint Goal

One sentence. Measurable. Example: "Ship user onboarding flow — 80% of new signups complete setup within 48 hours."

### 4. Buffer Rule

Reserve 20% capacity for unplanned work. If you're filling 100% of capacity, you're already behind.

### 5. Definition of Done

Every item needs:

Code reviewed and merged
 Tests passing
 Deployed to staging
 Product owner sign-off

### 6. Daily Standup (async-friendly)

Each person posts:

What I shipped yesterday
What I'm shipping today
What's blocking me (if anything)

Skip "what I worked on" — focus on shipped output.

### 7. Sprint Retro (15 min max)

Velocity: Planned points vs completed points
Carry-over: What didn't get done and why?
One thing to change: Pick ONE process improvement. Not five.

### 8. Anti-Patterns to Flag

Sprint scope changed mid-sprint more than once
No items completed until final 2 days
Carry-over exceeds 30% of planned work
Standup takes more than 10 minutes

### Output Format

# Sprint [N] Plan — [Start Date] to [End Date]

## Sprint Goal
[One sentence]

## Team Capacity
- Team: [N] engineers × [D] days × 0.7 focus = [H] available hours
- Buffer: 20% ([B] hours reserved)
- Committable: [C] hours

## Committed Items
| # | Item | Points | Owner | RICE | Status |
|---|------|--------|-------|------|--------|
| 1 | ...  | ...    | ...   | ...  | To Do  |

## Stretch Goals (if capacity allows)
| # | Item | Points |
|---|------|--------|

## Risks & Dependencies
- ...

## Success Criteria
- [ ] Sprint goal met
- [ ] Velocity within 15% of target
- [ ] Zero critical bugs introduced

### Why This Works

Most sprint planning fails because teams skip capacity math and overcommit. This framework forces honest numbers first, then fills from a prioritized backlog. The 20% buffer isn't laziness — it's how you actually hit your commitments.

Built by AfrexAI — AI context packs for business teams. Get the full SaaS Context Pack ($47) for sprint planning, roadmap templates, and 40+ agent-ready frameworks.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: 1kalin
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/afrexai-sprint-planner)
- [Send to Agent page](https://openagent3.xyz/skills/afrexai-sprint-planner/agent)
- [JSON manifest](https://openagent3.xyz/skills/afrexai-sprint-planner/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/afrexai-sprint-planner/agent.md)
- [Download page](https://openagent3.xyz/downloads/afrexai-sprint-planner)