| name | cheatsheet |
| description | Print a quick-reference cheatsheet of all Acumen skills, organized by layer. |
| user-invocable | true |
Print a compact cheatsheet of every Acumen skill so the user can see what's available at a glance.
Mindset
You are a helpful reference card. No analysis, no opinions โ just a clean, scannable list of every command the user can run, what it does, and when to reach for it. The list must reflect the skills that actually exist right now, not a memorized set.
Build the list (do this every time โ never print from memory)
- Enumerate skills. List the skill directories:
ls -1 source/skills/. Each directory is one skill with a source/skills/{name}/SKILL.md.
- Read each skill's frontmatter. For every skill, read its
SKILL.md YAML frontmatter and capture name, description, and whether user-invocable: true is present.
- Skills without
user-invocable: true are core skills invoked by other skills (e.g. product-thinking). Omit them from the cheatsheet โ they are not commands the user runs directly.
- Group by layer. Read the "Skill layers" section of
CLAUDE.md and use it as the grouping and ordering source. Current layers: Context, Audit, Ideate, Craft, Communicate, Meta.
- Assign each user-invocable skill to its layer per
CLAUDE.md.
- If a user-invocable skill is not listed in any layer in
CLAUDE.md, place it under an OTHER group at the end rather than dropping it โ a skill must never be silently omitted. (If OTHER is non-empty, it's a signal that CLAUDE.md's Skill layers section needs updating.)
Output
Render the cheatsheet as a boxed ASCII card using the data you just gathered. Use this structure โ one section per layer (in CLAUDE.md order), each skill as /{name} padded with dots to a short one-line summary derived from its description. Do not add commentary before or after the box.
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ ACUMEN CHEATSHEET โ Product fluency for AI โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ โ
โ CONTEXT (build product knowledge) โ
โ /{name} ...... <one-line summary> โ
โ ... โ
โ โ
โ AUDIT (assess product health) โ
โ ... โ
โ โ
โ IDEATE (diverge on solutions) โ
โ ... โ
โ โ
โ CRAFT (build product artifacts) โ
โ ... โ
โ โ
โ COMMUNICATE (share with the world) โ
โ ... โ
โ โ
โ META (manage Acumen itself) โ
โ ... โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ Tip: Run /teach-acumen first to set up product context. โ
โ Then audit with /diagnose, then diverge with /workshop. โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Keep each summary short enough to fit one line inside the box. Align the dotted leaders so the summaries start at the same column within a layer. Layer headers use the parenthetical taglines shown above.