Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add camilooscargbaptista/cto-toolkit --skill sprint-planninggit clone --depth 1 https://github.com/camilooscargbaptista/cto-toolkitWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/camilooscargbaptista/cto-toolkit/sprint-planning)<a href="https://agentmods.dev/skills/camilooscargbaptista/cto-toolkit/sprint-planning"><img src="https://agentmods.dev/badge/skills/camilooscargbaptista/cto-toolkit/sprint-planning/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/camilooscargbaptista/cto-toolkit/sprint-planning"><img src="https://agentmods.dev/badge/skills/camilooscargbaptista/cto-toolkit/sprint-planning.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00124 | $0.05205 |
| Opus 5 | $0.00062 | $0.02603 |
| Sonnet 5 | $0.00025 | $0.01041 |
| Haiku 4.5 | $0.00012 | $0.00521 |
Grade A, and why
sprint-planning scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 513 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Sprint & Release Planning
This skill helps you run effective planning processes — from writing good user stories to building quarterly roadmaps. Adapt the level of formality to your team's size and culture.
Before producing any planning output, read ../quality-standard/SKILL.md and apply its self-verification protocol, decomposition rules, and edge case prompting.
User Story Writing
A well-written story communicates intent without over-prescribing implementation. Every story MUST be production-ready with no ambiguity or missing acceptance criteria.
Format
As a [type of user],
I want to [action/capability],
so that [benefit/value].
Mandatory Story Requirements
Every story MUST include ALL of the following before it enters a sprint:
-
Acceptance Criteria (minimum 3 scenarios) in Given-When-Then format
- Happy path scenario (the normal case)
- At least one error/failure scenario
- At least one edge case or boundary scenario
-
Definition of Done checklist (concrete, testable items)
- Code reviewed
- Tests written and passing
- Acceptance criteria verified
- Documentation updated
- No console errors/warnings
- (Add team-specific items)
-
Dependencies (explicit list)
- Other stories that must complete first
- External APIs or services required
- Data or configuration changes needed
- Third-party integrations
-
Estimated Complexity (S/M/L or story points)
- Use Fibonacci: 1, 2, 3, 5, 8, 13
- If >8, story is too large — split it
-
Story Quality Checklist (INVEST)
- Independent — Minimal coupling to other stories
- Negotiable — Implementation approach is flexible
- Valuable — Delivers measurable user or business value
- Estimable — Team can estimate within a confidence range
- Small — Completable in ≤1 sprint
- Testable — Acceptance criteria are verifiable
Complete Example: Add PIX Payment Method
Title: Add PIX payment method to checkout flow
As a Brazilian customer,
I want to pay with PIX at checkout,
so that I can use my preferred, instant payment method without credit card fees.
## Acceptance Criteria
### Happy Path
Given a customer with a valid PIX key in their payment methods,
When they select PIX at checkout and complete the payment flow,
Then the payment processes instantly, they receive an order confirmation email
within 2 minutes, and the order status shows "Paid" in their account.
### Error Case: Invalid PIX Key
Given a customer enters an invalid PIX key during payment,
When they submit the payment form,
Then the system displays "Invalid PIX key format" error message,
highlights the input field in red, and suggests the correct format (email, phone, CPF, or random key).
### Edge Case: Duplicate Payment Attempt (Race Condition)
Given a customer has submitted a PIX payment but clicks "Submit" again immediately,
When the system processes both requests concurrently,
Then only one charge is applied, a duplicate prevention lock is acquired,
and the customer is informed "Payment already processing—do not refresh."
### Boundary Case: Large Transaction Amount
Given a customer attempts to pay R$50,000 via PIX,
When the transaction exceeds the PIX single-transfer limit (R$4,992),
Then the system displays "Amount exceeds PIX limit" and offers to split into multiple transfers
or suggests alternative payment methods.
### Boundary Case: Very Quick Payment
Given a customer completes PIX payment verification in <100ms,
When the webhook callback arrives from the payment processor,
Then the order status updates to "Paid" without race conditions
and the confirmation email is queued correctly.
## Definition of Done
- [ ] PIX payment method integrated with payment processor (Stripe/PagSeguro/equivalent)
- [ ] Checkout UI updated to show PIX as option with logo
- [ ] All 5 acceptance criteria scenarios tested (manual + automated)
- [ ] Idempotency keys implemented to prevent duplicate charges
- [ ] Webhook handler for payment status updates tested with 50+ mock scenarios
- [ ] Error messages user-friendly and match brand tone
- [ ] No console errors/warnings in Chrome DevTools
- [ ] Documentation updated: README, API docs, payment flow diagram
- [ ] Database migrations tested on staging
- [ ] Metrics added: PIX transaction success rate, average completion time
- [ ] Backwards-compatible with existing payment methods
- [ ] Security review: no sensitive PIX keys stored in logs
- [ ] Load tested with 100+ concurrent PIX transactions
## Dependencies
- Payment processor account with PIX support enabled
- Webhook signing key from payment provider
- Legal/compliance review (PIX is regulated in Brazil)
- Frontend form validation library already in place
- Database schema supports new `payment_method` type
## Estimated Complexity
M (5 story points)
- Medium because: new payment provider integration + webhook handling + race condition handling
- Not small due to concurrency complexity
- Not large because PIX API is simpler than some alternatives
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 513 lines · 124 tokens per session scan A 7e3ca47a13ba
sprint-planning is a skill published in the GitHub repository camilooscargbaptista/cto-toolkit (7 stars, last pushed 5mo ago), licensed MIT. It adds 124 tokens to every session and 5,205 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
project-manager
This skill has been upgraded with agentic AI capabilities, OKR/KPI integration patterns, and async-first workflows based on 2026 PM best practices research.
scrumboy-board-operator
Operate Scrumboy projects and boards through MCP or Agoragentic APIs. Use when an agent needs to inspect board state, plan sprint work, create todos, move cards, manage tags, or summarize project health.
Sprint Summary Generator
Converts a list of completed tickets or commits into a clear sprint summary for stakeholders.
pm-skills
Use when coordinating project-delivery work across the 8 project-management sub-skills — sprint/velocity analytics, portfolio health, Jira/JQL, Confluence, Atlassian admin, templates, meeting analysis, team comms. Triggers on 'our sprints feel off', 'project health report', 'audit our Jira permissions', 'when will it…
Jira Automation
Automate Jira project management workflows, sprint planning, issue tracking, and reporting.
project-management
Agile methodologies, issue tracking, and team collaboration tools.