user-stories

user-stories is a command for Claude Code from ricneves-ai/flowgrammers-skills. It costs 0 tokens per session (3,232 once invoked), scanned A, original, MIT.

A planning tool that turns an approved product description into user stories: short descriptions of what a user needs, with acceptance criteria for checking the result. It follows INVEST guidelines for making stories clear and workable.

In plain words
What is it for?
Use it to break features into stories, prepare a sprint backlog, define edge cases, and support engineering estimates.
Why use it?
It gives product and engineering teams a shared, testable description of the work before implementation begins.

Command for Claude Code

Written for Claude Code: a Claude Code command (commands/*.md).

Good fit Use it to break features into stories, prepare a sprint backlog, define edge cases, and support engineering estimates.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/ricneves-ai/flowgrammers-skills/user-stories
Install

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.

Clone the repo
git clone --depth 1 https://github.com/ricneves-ai/flowgrammers-skills

Made for: Claude Code.

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

agentmods badge for user-stories

README.md
[![agentmods](https://agentmods.dev/badge/commands/ricneves-ai/flowgrammers-skills/user-stories/github.svg)](https://agentmods.dev/commands/ricneves-ai/flowgrammers-skills/user-stories)
Your own site
<a href="https://agentmods.dev/commands/ricneves-ai/flowgrammers-skills/user-stories"><img src="https://agentmods.dev/badge/commands/ricneves-ai/flowgrammers-skills/user-stories/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.

agentmods 80×15 button for user-stories

Your own site · 80×15
<a href="https://agentmods.dev/commands/ricneves-ai/flowgrammers-skills/user-stories"><img src="https://agentmods.dev/badge/commands/ricneves-ai/flowgrammers-skills/user-stories.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,232 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.03232
Opus 5 $0.00000 $0.01616
Sonnet 5 $0.00000 $0.00646
Haiku 4.5 $0.00000 $0.00323

Measured 8d ago against content hash d7384a3e1351, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

user-stories 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 8d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

commands/user-stories.md · 539 lines

How it starts

The opening of the file, as written. The whole thing — 539 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/user-stories

O que essa skill faz

Gera user stories no formato Mike Cohn com critérios de aceite, aplicando princípio INVEST (Independent, Negotiable, Valuable, Estimable, Small, Testable).

Saída: 5-8 user stories estruturadas prontas para eng estimar e implementar.


Quando usar

  • Tem PRD aprovado e precisa quebrar em stories para eng
  • Vai criar sprint backlog
  • Precisa conversa clara entre PM e dev sobre escopo

Input esperado

Mínimo:

  • PRD ou feature description: Contexto completo
  • Personas: Quem usa cada feature
  • Features principais: O que cada story cobre

Opcional:

  • Designs mockups (para contextualizar)
  • Métricas (para priorizar)
  • Constraints técnicas

Processo

  1. Quebra de features em stories — Cada feature = 1-2 stories, cada story = 2-5 dias eng
  2. Formato INVEST — Cada story é independente mas encadeável
  3. Critérios de aceite — Given/When/Then + casos de edge
  4. Aceitação de prioridade — Qual story primeira?
  5. Estimativas — Pede para eng, mas estrutura ajuda

Output

# User Stories: [Feature Name]

## Priorização

| # | Story | Prioridade | Razão |
|---|-------|-----------|-------|
| 1 | [Story 1] | P0 | User não consegue começar sem isso |
| 2 | [Story 2] | P0 | Blocka story 1 |
| 3 | [Story 3] | P1 | Nice-to-have para MVP |

---

## Story 1: [Nome claro do user goal]

**Como um** [Persona]
**Eu quero** [Ação clara]
**Para que** [Resultado/Valor]

### Contexto
[Uma frase sobre por que isso importa. Vindo de descoberta/PRD.]

### Critérios de Aceite

#### Happy path
```gherkin
Given que [pré-condição]
When [ação do usuário]
Then [resultado esperado]
Edge case 1
Given que [variação]
When [ação similar]
Then [resultado diferente]
Edge case 2
Given que [variação 2]
When [ação similar]
Then [resultado diferente]

Notas técnicas

  • [Restrição de implementação, se souber]
  • [Integração necessária]
  • [Performance requirement]

Tamanho estimado

[Solicitar de eng durante refinement — esse formato ajuda a estimar mais rápido]

Dependências

  • Precisa de [Story X] ou [Ferramenta Y]

Story 2: [Nome claro do user goal]

Como um [Persona] Eu quero [...] Para que [...]

Contexto

[...]

Critérios de Aceite

Happy path
Given que [...]
When [...]
Then [...]
Edge cases

[...]

Notas técnicas

[...]

Tamanho estimado

[...]

Dependências

[...]


Story 3...N

[Mesmo formato]


Roadmap de Stories (sugestão de sequência)

Sprint 1 (Semana 1)

  1. Story 1
  2. Story 2

Sprint 2 (Semana 2)

  1. Story 3
  2. Story 4

Sprint 3 (Semana 3+)

  1. Story 5
  2. (Se sobrou time) Story 6

Definição de Done

Para uma story ser considerada feita:

  • ✅ Critérios de aceite passaram em manual testing
  • ✅ Code review aprovado
  • ✅ Integrado em staging
  • ✅ QA testou happy path + principais edge cases
  • ✅ Documentado (se applicable)
  • ✅ PM validou em staging

Notas para eng

  1. Critérios de aceite são contrato: Se algo não está lá, não é responsabilidade de eng
  2. "Para que" importa: Ajuda eng a tomar decisões criativas dentro do escopo
  3. Edge cases são reais: Vieram de descoberta ou são padrão do domínio
  4. Perguntas abertas? Avisar PM agora: Melhor clarificar que descobrir no meio do build

Read the full file on GitHub · 539 lines

Changes

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.

  1. 8d ago First seen · 539 lines · 0 tokens per session scan A d7384a3e1351

Subscribe to this mod's changes

user-stories is a command published in the GitHub repository ricneves-ai/flowgrammers-skills (112 stars, last pushed 3mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 3,232 tokens. 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-09-03.