From 66406e648ca1e22504a3de61264c5b760bb8065f Mon Sep 17 00:00:00 2001 From: Deep Kumar Singh Kushwah Date: Sun, 24 May 2026 02:27:36 +0530 Subject: [PATCH] chore(claude): add /nxt slash command to report next tracker item Reads TRACKER.md and reports the next actionable step (number, title, phase, suggested branch, dependencies, deliverables, linked ADRs) without starting any work. Lives under .claude/commands/ so it's checked in and shared with teammates. Co-Authored-By: Claude Opus 4.7 (1M context) --- .claude/commands/nxt.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .claude/commands/nxt.md diff --git a/.claude/commands/nxt.md b/.claude/commands/nxt.md new file mode 100644 index 0000000..3e1edd6 --- /dev/null +++ b/.claude/commands/nxt.md @@ -0,0 +1,19 @@ +--- +description: Check TRACKER.md and report the next item to work on +--- + +Read `TRACKER.md` in the project root and report the next item to work on. + +Do this only: + +1. Read `TRACKER.md`. +2. Identify the next actionable step — use the `Next action:` line near the top, cross-checked against the first row whose Status is `⏳` (Not Started) and whose dependencies (if listed in the Branch column, e.g. `1.1a`) are already `✅`. +3. Output a concise report: + - **Step**: number + title + - **Phase**: phase number + title + - **Branch**: suggested branch name following `build/phase-{N}/step-{N}.{M}-{slug}` convention + - **Dependencies**: list any prerequisite steps and whether they're done + - **Key deliverables**: bullet list from the tracker row + - **Linked ADRs / docs**: if mentioned in the row + +Do not start the work. Do not create branches, files, or PRs. Just report.