Skip to content

Commit c68caa2

Browse files
Willardgmooreclaude
andcommitted
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>
1 parent c66e701 commit c68caa2

3 files changed

Lines changed: 57 additions & 0 deletions

File tree

AGENTS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ Invoke them by name (e.g., `/office-hours`).
5757
| `/context-save` | Save working context (git state, decisions, remaining work). |
5858
| `/context-restore` | Resume from a saved context, even across Conductor workspaces. |
5959
| `/learn` | Manage what gstack learned across sessions. |
60+
| `/plan-status` | Check progress of a plan against the codebase and git log. Phase-by-phase DONE/PARTIAL/REMAINING dashboard. |
6061
| `/retro` | Weekly retro with per-person breakdowns and shipping streaks. |
6162
| `/health` | Code quality dashboard (type checker, linter, tests, dead code). |
6263
| `/benchmark` | Performance regression detection (page load, Core Web Vitals). |

TODOS.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# TODOS
22

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)
10+
11+
---
12+
313
## Browser-skills follow-on (Phases 2-4)
414

515
### P1: Browser-skills Phase 2 — `/scrape` and `/skillify` skill templates

docs/skills.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Detailed guides for every gstack skill — philosophy, workflow, and examples.
3232
| [`/devex-review`](#devex-review) | **DX Reviewer (live)** | Live developer experience audit. Walks the actual onboarding flow, measures TTHW, catches the docs lies. |
3333
| [`/plan-tune`](#plan-tune) | **Question Tuner** | Self-tune AskUserQuestion sensitivity per question. Mark questions as never-ask, always-ask, or only-for-one-way. |
3434
| [`/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. |
3536
| [`/context-save`](#context-save) | **Save State** | Save working context (git state, decisions, remaining work) so any future session can resume. |
3637
| [`/context-restore`](#context-restore) | **Restore State** | Resume from a saved context, even across Conductor workspace handoffs. |
3738
| [`/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)
969970

970971
---
971972

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.
980+
981+
```
982+
You: /plan-status
983+
984+
Claude: ## gstack Lifecycle Dashboard
985+
+====================================================================================+
986+
| GSTACK LIFECYCLE DASHBOARD |
987+
+====================================================================================+
988+
| Phase | Skill | Runs | Last Run | Status | Required |
989+
|----------|---------------------|------|------------------|----------|-------------|
990+
| Think | /office-hours | 1 | 2026-05-11 22:00 | DONE | no |
991+
| Plan | /plan-ceo-review | 1 | 2026-05-11 22:00 | DONE | no |
992+
| | /plan-eng-review | 0 | — | — | YES |
993+
| Build | (commits) | 4 | — | DONE | YES |
994+
...
995+
+------------------------------------------------------------------------------------+
996+
| VERDICT: IN PROGRESS — 1 required skill REMAINING (plan-eng-review) |
997+
+====================================================================================+
998+
999+
## Plan Status: 2026-05-11-migrate-to-ruby-llm.md
1000+
Branch: migrate-to-ruby-llm | As of: 2026-05-11
1001+
1002+
### Phase Summary
1003+
| Phase | Status | Notes |
1004+
|-------|--------|-------|
1005+
| Phase 0: Foundation | DONE | Gems added, initializer present |
1006+
| 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.
1015+
1016+
---
1017+
9721018
## `/open-gstack-browser`
9731019

9741020
This is my **co-presence mode**.

0 commit comments

Comments
 (0)