fn-23-zgk.4 Update skill docs and documentation
Description
Update all skill documentation and other docs with new ID format examples.
Size: M Files:
plugins/flow-next/skills/*/SKILL.md(~11 files)plugins/flow-next/skills/*/steps.md,workflow.md, etc.plugins/flow-next/README.mdplugins/flow-next/docs/flowctl.md.flow/usage.mdplugins/flow-next/skills/flow-next-setup/templates/usage.md
Approach
Update skill SKILL.md files:
grep -r "fn-[0-9]-[a-z0-9]\{3\}" plugins/flow-next/skills/Replace
fn-1-abcstyle examples withfn-1-add-featurestyleUpdate README.md ID Format section (line ~1294):
- Explain new format:
fn-N-slugwhere slug is derived from title - Note backwards compat with
fn-Nandfn-N-xxx
- Explain new format:
Update flowctl.md ID Format section (line ~46):
- Same explanation as README
Update usage.md files:
.flow/usage.md(lines 25-28)templates/usage.md(same section)
Key context
Keep examples realistic:
fn-1-add-oauthnotfn-1-abcfn-2-fix-login-bugnotfn-2-xyz- Show variety: short slugs, multi-word slugs
Acceptance
- All SKILL.md files updated (~11 files)
- README.md ID Format section explains new format
- flowctl.md ID Format section updated
- .flow/usage.md updated
- templates/usage.md updated
- Examples use descriptive slugs throughout
- Backwards compatibility note present (old formats still work)
- No broken example IDs (all match new regex)
Done summary
Updated all skill docs and documentation with new descriptive slug ID format examples. Replaced random 3-char suffix examples (fn-1-abc) with meaningful slugs (fn-1-add-oauth, fn-2-fix-login-bug) across 12 files including SKILL.md files, README, flowctl.md, and usage.md templates.
Evidence
- Commits: c9e9547f0ca2d05a8fad80f03bd089d8adde20b1
- Tests: grep -r 'fn-[0-9]-[a-z]{3}' plugins/flow-next/skills/ (verified no old-format examples remain)
- PRs: