get-shit-done-ios 0.7.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/agents/gsd-codebase-mapper.md +3 -0
- package/agents/gsd-debugger.md +3 -0
- package/agents/gsd-executor.md +18 -0
- package/agents/gsd-integration-checker.md +3 -0
- package/agents/gsd-phase-researcher.md +81 -4
- package/agents/gsd-plan-checker.md +119 -0
- package/agents/gsd-planner.md +33 -3
- package/agents/gsd-project-researcher.md +3 -0
- package/agents/gsd-research-synthesizer.md +3 -0
- package/agents/gsd-roadmapper.md +3 -0
- package/agents/gsd-verifier.md +3 -0
- package/bin/install.js +61 -22
- package/commands/gsd/add-phase.md +6 -2
- package/commands/gsd/add-todo.md +6 -1
- package/commands/gsd/audit-milestone.md +1 -7
- package/commands/gsd/check-todos.md +6 -2
- package/commands/gsd/debug.md +3 -1
- package/commands/gsd/discuss-phase.md +1 -5
- package/commands/gsd/execute-phase.md +1 -2
- package/commands/gsd/insert-phase.md +1 -2
- package/commands/gsd/list-phase-assumptions.md +1 -5
- package/commands/gsd/new-milestone.md +1 -8
- package/commands/gsd/pause-work.md +4 -1
- package/commands/gsd/plan-milestone-gaps.md +1 -7
- package/commands/gsd/quick.md +2 -1
- package/commands/gsd/remove-phase.md +1 -2
- package/commands/gsd/verify-work.md +1 -2
- package/get-shit-done/bin/gsd-tools.cjs +87 -4860
- package/get-shit-done/bin/lib/commands.cjs +556 -0
- package/get-shit-done/bin/lib/config.cjs +162 -0
- package/get-shit-done/bin/lib/core.cjs +398 -0
- package/get-shit-done/bin/lib/frontmatter.cjs +299 -0
- package/get-shit-done/bin/lib/init.cjs +694 -0
- package/get-shit-done/bin/lib/milestone.cjs +215 -0
- package/get-shit-done/bin/lib/phase.cjs +873 -0
- package/get-shit-done/bin/lib/roadmap.cjs +298 -0
- package/get-shit-done/bin/lib/state.cjs +490 -0
- package/get-shit-done/bin/lib/template.cjs +222 -0
- package/get-shit-done/bin/lib/verify.cjs +772 -0
- package/get-shit-done/templates/VALIDATION.md +104 -0
- package/get-shit-done/templates/config.json +2 -1
- package/get-shit-done/workflows/diagnose-issues.md +1 -1
- package/get-shit-done/workflows/discuss-phase.md +63 -13
- package/get-shit-done/workflows/execute-phase.md +29 -4
- package/get-shit-done/workflows/execute-plan.md +6 -20
- package/get-shit-done/workflows/help.md +2 -2
- package/get-shit-done/workflows/map-codebase.md +32 -44
- package/get-shit-done/workflows/new-milestone.md +16 -7
- package/get-shit-done/workflows/new-project.md +26 -30
- package/get-shit-done/workflows/plan-phase.md +105 -79
- package/get-shit-done/workflows/progress.md +14 -26
- package/get-shit-done/workflows/quick.md +24 -15
- package/get-shit-done/workflows/research-phase.md +10 -11
- package/get-shit-done/workflows/settings.md +16 -3
- package/get-shit-done/workflows/verify-work.md +11 -12
- package/hooks/dist/gsd-check-update.js +1 -1
- package/hooks/dist/gsd-context-monitor.js +122 -0
- package/hooks/dist/gsd-statusline.js +17 -0
- package/package.json +2 -2
- package/scripts/build-hooks.js +1 -0
- package/get-shit-done/bin/gsd-tools.test.cjs +0 -2346
|
@@ -32,11 +32,7 @@ Extract implementation decisions that downstream agents need — researcher and
|
|
|
32
32
|
<context>
|
|
33
33
|
Phase number: $ARGUMENTS (required)
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
@.planning/STATE.md
|
|
37
|
-
|
|
38
|
-
**Load roadmap:**
|
|
39
|
-
@.planning/ROADMAP.md
|
|
35
|
+
Context files are resolved in-workflow using `init phase-op` and roadmap/state tool calls.
|
|
40
36
|
</context>
|
|
41
37
|
|
|
42
38
|
<process>
|
|
@@ -32,8 +32,7 @@ Phase: $ARGUMENTS
|
|
|
32
32
|
**Flags:**
|
|
33
33
|
- `--gaps-only` — Execute only gap closure plans (plans with `gap_closure: true` in frontmatter). Use after verify-work creates fix plans.
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
@.planning/STATE.md
|
|
35
|
+
Context files are resolved inside the workflow via `gsd-tools init execute-phase` and per-subagent `<files_to_read>` blocks.
|
|
37
36
|
</context>
|
|
38
37
|
|
|
39
38
|
<process>
|
|
@@ -23,8 +23,7 @@ Purpose: Handle urgent work discovered during execution without renumbering enti
|
|
|
23
23
|
<context>
|
|
24
24
|
Arguments: $ARGUMENTS (format: <after-phase-number> <description>)
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
@.planning/STATE.md
|
|
26
|
+
Roadmap and state are resolved in-workflow via `init phase-op` and targeted tool calls.
|
|
28
27
|
</context>
|
|
29
28
|
|
|
30
29
|
<process>
|
|
@@ -23,11 +23,7 @@ Output: Conversational output only (no file creation) - ends with "What do you t
|
|
|
23
23
|
<context>
|
|
24
24
|
Phase number: $ARGUMENTS (required)
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
@.planning/STATE.md
|
|
28
|
-
|
|
29
|
-
**Load roadmap:**
|
|
30
|
-
@.planning/ROADMAP.md
|
|
26
|
+
Project state and roadmap are loaded in-workflow using targeted reads.
|
|
31
27
|
</context>
|
|
32
28
|
|
|
33
29
|
<process>
|
|
@@ -35,14 +35,7 @@ Brownfield equivalent of new-project. Project exists, PROJECT.md has history. Ga
|
|
|
35
35
|
<context>
|
|
36
36
|
Milestone name: $ARGUMENTS (optional - will prompt if not provided)
|
|
37
37
|
|
|
38
|
-
|
|
39
|
-
@.planning/PROJECT.md
|
|
40
|
-
@.planning/STATE.md
|
|
41
|
-
@.planning/MILESTONES.md
|
|
42
|
-
@.planning/config.json
|
|
43
|
-
|
|
44
|
-
**Load milestone context (if exists, from /gsd:discuss-milestone):**
|
|
45
|
-
@.planning/MILESTONE-CONTEXT.md
|
|
38
|
+
Project and milestone context files are resolved inside the workflow (`init new-milestone`) and delegated via `<files_to_read>` blocks where subagents are used.
|
|
46
39
|
</context>
|
|
47
40
|
|
|
48
41
|
<process>
|
|
@@ -19,10 +19,13 @@ Routes to the pause-work workflow which handles:
|
|
|
19
19
|
</objective>
|
|
20
20
|
|
|
21
21
|
<execution_context>
|
|
22
|
-
@.planning/STATE.md
|
|
23
22
|
@~/.claude/get-shit-done/workflows/pause-work.md
|
|
24
23
|
</execution_context>
|
|
25
24
|
|
|
25
|
+
<context>
|
|
26
|
+
State and phase progress are gathered in-workflow with targeted reads.
|
|
27
|
+
</context>
|
|
28
|
+
|
|
26
29
|
<process>
|
|
27
30
|
**Follow the pause-work workflow** from `@~/.claude/get-shit-done/workflows/pause-work.md`.
|
|
28
31
|
|
|
@@ -25,13 +25,7 @@ One command creates all fix phases — no manual `/gsd:add-phase` per gap.
|
|
|
25
25
|
**Audit results:**
|
|
26
26
|
Glob: .planning/v*-MILESTONE-AUDIT.md (use most recent)
|
|
27
27
|
|
|
28
|
-
|
|
29
|
-
@.planning/PROJECT.md
|
|
30
|
-
@.planning/REQUIREMENTS.md
|
|
31
|
-
|
|
32
|
-
**Current state:**
|
|
33
|
-
@.planning/ROADMAP.md
|
|
34
|
-
@.planning/STATE.md
|
|
28
|
+
Original intent and current planning state are loaded on demand inside the workflow.
|
|
35
29
|
</context>
|
|
36
30
|
|
|
37
31
|
<process>
|
package/commands/gsd/quick.md
CHANGED
|
@@ -30,8 +30,9 @@ Quick mode is the same system with a shorter path:
|
|
|
30
30
|
</execution_context>
|
|
31
31
|
|
|
32
32
|
<context>
|
|
33
|
-
@.planning/STATE.md
|
|
34
33
|
$ARGUMENTS
|
|
34
|
+
|
|
35
|
+
Context files are resolved inside the workflow (`init quick`) and delegated via `<files_to_read>` blocks.
|
|
35
36
|
</context>
|
|
36
37
|
|
|
37
38
|
<process>
|
|
@@ -22,8 +22,7 @@ Output: Phase deleted, all subsequent phases renumbered, git commit as historica
|
|
|
22
22
|
<context>
|
|
23
23
|
Phase: $ARGUMENTS
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
@.planning/STATE.md
|
|
25
|
+
Roadmap and state are resolved in-workflow via `init phase-op` and targeted reads.
|
|
27
26
|
</context>
|
|
28
27
|
|
|
29
28
|
<process>
|
|
@@ -29,8 +29,7 @@ Phase: $ARGUMENTS (optional)
|
|
|
29
29
|
- If provided: Test specific phase (e.g., "4")
|
|
30
30
|
- If not provided: Check for active sessions or prompt for phase
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
@.planning/ROADMAP.md
|
|
32
|
+
Context files are resolved inside the workflow (`init verify-work`) and delegated via `<files_to_read>` blocks.
|
|
34
33
|
</context>
|
|
35
34
|
|
|
36
35
|
<process>
|