ワンクリックで
brain-status
Display a quick overview of the Brain Spec workspace with steering doc status, specs, tasks, and progress.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Display a quick overview of the Brain Spec workspace with steering doc status, specs, tasks, and progress.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Initialize a .brain-spec/ workspace with directory tree, config, steering documents, and optional CLAUDE.md generation.
Spec lifecycle management — create, interview, list, get, update, delete, and archive feature specifications.
Task management — create, update, list, log, and track progress for spec implementation tasks.
SOC 職業分類に基づく
| name | brain-status |
| description | Display a quick overview of the Brain Spec workspace with steering doc status, specs, tasks, and progress. |
| context | fork |
| allowed-tools | Glob, Read, Grep, Bash |
Display a quick overview of the Brain Spec workspace: steering doc status, all specs with progress, archived specs, and overall statistics.
/brain-status
No arguments. Reads workspace state and displays a summary.
Read the VERSION file at ${CLAUDE_SKILL_DIR}/VERSION (the directory of the currently running skill, exported by Claude Code). If ${CLAUDE_SKILL_DIR} is unset (older runtimes), fall back to checking .claude/skills/brain-status/VERSION then .claude/skills/brain-init/VERSION via Glob. If no VERSION file is found in any location, use "dev" for the dashboard header.
Check if .brain-spec/config.json exists using Glob.
/brain-init to set up."Check for the existence of each steering document:
.brain-spec/steering/product.md.brain-spec/steering/tech.md.brain-spec/steering/structure.mdUse Glob to find all .brain-spec/specs/*.meta.json files. Read each one.
For each spec, also read .brain-spec/tasks/{slug}/tasks.json if it exists to get task counts.
Use Glob to find all .brain-spec/archive/*/archive-metadata.json files. Read each one.
Format the output as follows:
╔══════════════════════════════════════╗
║ Brain Spec Dashboard v{version} ║
╚══════════════════════════════════════╝
Steering Documents
product.md ✓ exists / ✗ missing
tech.md ✓ exists / ✗ missing
structure.md ✓ exists / ✗ missing
Active Specs
Slug Status Progress
───────────────── ────────── ──────────────────
user-auth-flow active ━━━━━━━━━━━━──── 60% (3/5)
api-redesign draft ────────────────── 0% (0/0)
Archived Specs
Slug Reason Archived
───────────────── ─────────── ──────────
old-feature completed 2025-01-10
Overall Statistics
Active specs: 2
Archived specs: 1
Total tasks: 5
Completed tasks: 3
Completion: 60%
If there are no specs, show: "No specs yet. Create one with /brain-spec create <name>"
If there are no archived specs, show: "No archived specs."
Progress bar: 18 characters wide. Use ━ for filled and ─ for empty. Calculate fill: round(progress / 100 * 18).
This skill uses context: fork so that the JSON parsing and file reads stay isolated from the main conversation context. The output is the formatted dashboard text shown to the user.