From learn
Advances to the next step in the interactive learning curriculum, delivering goal-concept-action-verification instructions, checking progress, and updating state files.
How this command is triggered — by the user, by Claude, or both
Slash command
/learn:nextThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
## Skill Loading Load the `teaching` skill using the Skill tool. ## Process 1. Read `.claude/learn-state.local.md` to find the current position. 2. If no state file exists: "No learning session in progress. Run `/learn:start` to begin." 3. Read `docs/curriculum.md` to find the next unchecked step. 4. If all steps are checked: "You've completed the entire curriculum! Run `/learn:review` for a final code review, or `/learn:start` to begin a new project." ## Deliver the Next Step Follow the teaching skill's step structure: 1. **Goal**: State what this step achieves in one sentence. 2. **...
Load the teaching skill using the Skill tool.
.claude/learn-state.local.md to find the current position./learn:start to begin."docs/curriculum.md to find the next unchecked step./learn:review for a final code review, or /learn:start to begin a new project."Follow the teaching skill's step structure:
docs/curriculum.md..claude/learn-state.local.md with the new current step.If this is the 3rd, 4th, or 5th step since the last comprehension check, ask a question using AskUserQuestion. Follow the teaching skill's question types: conceptual, predictive, diagnostic, or connective.
If the learner answers incorrectly, explain the right answer using code they've already written — not abstract theory.
When completing the last step of a module:
If "review": suggest running /learn:review on the current module's code.
If "break": confirm state is saved and they can resume anytime with /learn:next.
npx claudepluginhub incubyte/ai-plugins --plugin learn/teach-meInvokes a coding-tutor skill to teach a programming or technical concept interactively.
/learnCreates a customized learning path for mastering a codebase or specific technology, saving the plan as a markdown report. Also supports interactive goal setting.
/startGuides users through an interactive onboarding course by assessing their skill level and directing them to the appropriate track command (/start-1, /start-2, or /start-3).
/nextDetects current project state and presents a smart menu of relevant next actions, then dispatches the chosen GSD command.
/nextGets the next prioritized task and implements it following a strict TDD workflow. Supports dry-run, quiet mode, and check/done steps via agent-foreman.
/nextCloses the current work increment after validation checks, then suggests the next increment or backlog item to work on.