You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: add /plan-status to AGENTS.md, docs/skills.md, and TODOS.md
Add skill row and full docs/skills.md section for /plan-status.
Add TODOS.md entry to monitor issue #1343 for community asks.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: TODOS.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,15 @@
1
1
# TODOS
2
2
3
+
## plan-status follow-on
4
+
5
+
### P3: Monitor issue #1343 for community asks
6
+
7
+
Check whether @wwybdd23-bot has replied to our clarifying questions on GitHub issue #1343 (non-code plan evidence: calendar, email, external services). If the maintainer engages, design an extensible evidence-source plugin interface before implementing. Scope for that work belongs in a separate PR, not this one.
8
+
9
+
**Priority:** P3 (monitor only — no implementation until maintainer decision)
Copy file name to clipboardExpand all lines: docs/skills.md
+46Lines changed: 46 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,7 @@ Detailed guides for every gstack skill — philosophy, workflow, and examples.
32
32
|[`/devex-review`](#devex-review)|**DX Reviewer (live)**| Live developer experience audit. Walks the actual onboarding flow, measures TTHW, catches the docs lies. |
33
33
|[`/plan-tune`](#plan-tune)|**Question Tuner**| Self-tune AskUserQuestion sensitivity per question. Mark questions as never-ask, always-ask, or only-for-one-way. |
34
34
|[`/learn`](#learn)|**Memory**| Manage what gstack learned across sessions. Review, search, prune, and export project-specific patterns and preferences. |
35
+
|[`/plan-status`](#plan-status)|**Plan Status**| Check progress of a gstack plan against the codebase and git log. Phase-by-phase DONE/PARTIAL/REMAINING dashboard. gstack Lifecycle Dashboard shows which workflow skills have run. |
35
36
|[`/context-save`](#context-save)|**Save State**| Save working context (git state, decisions, remaining work) so any future session can resume. |
36
37
|[`/context-restore`](#context-restore)|**Restore State**| Resume from a saved context, even across Conductor workspace handoffs. |
37
38
|[`/health`](#health)|**Code Quality Dashboard**| Wraps type checker, linter, tests, dead code detection. Computes a weighted 0-10 score; tracks trends over time. |
@@ -969,6 +970,51 @@ Claude: 23 learnings for this project (14 high confidence, 6 medium, 3 low)
969
970
970
971
---
971
972
973
+
## `/plan-status`
974
+
975
+
This is my **progress dashboard** for any gstack plan.
976
+
977
+
After `/office-hours` or `/plan-ceo-review` writes a plan, implementation starts — and there's no way to answer "where am I?" without manually re-reading the whole plan and cross-referencing the codebase. `/plan-status` closes that gap. It reads the plan that already exists, cross-references evidence from git and the filesystem, and produces a scannable dashboard in seconds. No setup. No ticket creation.
978
+
979
+
The output has two parts: a **gstack Lifecycle Dashboard** showing which workflow skills have run (matching the same format as the Review Readiness Dashboard), and a **Plan Detail** section with per-phase and per-criteria DONE/PARTIAL/REMAINING classification.
| Phase 1: Schema Migration | REMAINING | No migration files found |
1007
+
1008
+
### Summary
1009
+
1 of 2 phases complete. 2 of 4 success criteria met.
1010
+
Key blockers: langchainrb still in Gemfile, no db/migrate/ files
1011
+
Suggested next action: Run /plan-eng-review, then write the schema migration.
1012
+
```
1013
+
1014
+
Configure a custom plan search path: `gstack-config set plan_glob "~/board-plans/*.md"` — useful for non-code projects like board planning or accreditation prep.
0 commit comments