with one click
progress
// Claude Code Hero progress report -- shows the learner's quest log with completed, current, and locked quests
// Claude Code Hero progress report -- shows the learner's quest log with completed, current, and locked quests
Claude Code Hero Level 1: The Map Room -- explore the project's .claude/ directory and document what lives there
Claude Code Hero Level 2: The Tome of First Instructions -- create .claude/CLAUDE.md with real personal instructions
Claude Code Hero Level 0: The Threshold -- learn the basics of talking to Claude Code before entering the dungeon
Claude Code Hero Level 9: The Artificer's Workshop -- create a minimal Claude Code plugin (capstone)
Claude Code Hero Level 3: The Goblin Lair of Commands -- create a custom slash command in .claude/commands/
Claude Code Hero Level 4: The Warden's Keys -- configure permission rules in .claude/settings.json
| name | progress |
| description | Claude Code Hero progress report -- shows the learner's quest log with completed, current, and locked quests |
Display the learner's quest log as a DM-narrated progress summary.
Run ruby scripts/cli.rb status to get the authoritative state: { current_level, completed, highest_passing, status }.
Run ruby scripts/cli.rb levels to get quest metadata (names, features, artifacts).
If the progress file does not exist, respond:
No quest log found. You haven't begun your journey. Run the dungeon-master to start.
Then stop.
For each quest, determine its status:
completed. Use the date portion of the ISO 8601 timestamp as the completion date.current_level and is not in completed.current_level.Open with a line of DM flavor. Something like:
You unroll the quest log. The parchment shows your journey so far...
Then render a table:
| Quest | Name | Status | Completed |
|---|---|---|---|
| 0 | The Threshold | COMPLETE | 2026-03-27 |
| 1 | The Map Room | COMPLETE | 2026-03-27 |
| 2 | The Tome of First Instructions | COMPLETE | 2026-03-27 |
| 3 | The Goblin Lair of Commands | CURRENT | -- |
| 4 | The Warden's Keys | LOCKED | -- |
| ... | ... | ... | ... |
After the table, add brief annotations in DM voice:
Close with an overall progress line: "{N} of 10 chambers conquered. The deeper halls await."
If all ten levels are in completed (or current_level >= 10), skip the table annotations and instead deliver:
The quest log is full. Every chamber conquered, every seal broken. You are no longer an adventurer. You are an artificer.