get-shit-done-cc 1.10.0-experimental.0 → 1.10.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/README.md +16 -17
- package/agents/gsd-executor.md +375 -37
- package/agents/gsd-planner.md +108 -15
- package/bin/install.js +163 -238
- package/commands/gsd/help.md +0 -43
- package/commands/gsd/new-project.md +8 -94
- package/commands/gsd/plan-phase.md +5 -35
- package/get-shit-done/references/verification-patterns.md +1 -1
- package/get-shit-done/templates/phase-prompt.md +4 -4
- package/get-shit-done/templates/state.md +0 -37
- package/get-shit-done/workflows/execute-phase.md +1 -44
- package/get-shit-done/workflows/execute-plan.md +856 -34
- package/hooks/dist/gsd-statusline.js +9 -6
- package/package.json +7 -10
- package/agents/design-specialist.md +0 -222
- package/commands/gsd/autopilot.md +0 -518
- package/commands/gsd/checkpoints.md +0 -229
- package/commands/gsd/design-system.md +0 -70
- package/commands/gsd/discuss-design.md +0 -77
- package/commands/gsd/extend.md +0 -80
- package/get-shit-done/references/ccr-integration.md +0 -468
- package/get-shit-done/references/checkpoint-execution.md +0 -369
- package/get-shit-done/references/checkpoint-types.md +0 -728
- package/get-shit-done/references/deviation-rules.md +0 -215
- package/get-shit-done/references/framework-patterns.md +0 -543
- package/get-shit-done/references/ui-principles.md +0 -258
- package/get-shit-done/skills/gsd-extend/SKILL.md +0 -154
- package/get-shit-done/skills/gsd-extend/references/agent-structure.md +0 -305
- package/get-shit-done/skills/gsd-extend/references/extension-anatomy.md +0 -123
- package/get-shit-done/skills/gsd-extend/references/reference-structure.md +0 -408
- package/get-shit-done/skills/gsd-extend/references/template-structure.md +0 -370
- package/get-shit-done/skills/gsd-extend/references/validation-rules.md +0 -140
- package/get-shit-done/skills/gsd-extend/references/workflow-structure.md +0 -253
- package/get-shit-done/skills/gsd-extend/templates/agent-template.md +0 -234
- package/get-shit-done/skills/gsd-extend/templates/reference-template.md +0 -239
- package/get-shit-done/skills/gsd-extend/templates/workflow-template.md +0 -169
- package/get-shit-done/skills/gsd-extend/workflows/create-approach.md +0 -332
- package/get-shit-done/skills/gsd-extend/workflows/list-extensions.md +0 -133
- package/get-shit-done/skills/gsd-extend/workflows/remove-extension.md +0 -93
- package/get-shit-done/skills/gsd-extend/workflows/validate-extension.md +0 -184
- package/get-shit-done/templates/autopilot-script-simple.sh +0 -181
- package/get-shit-done/templates/autopilot-script.sh +0 -1142
- package/get-shit-done/templates/autopilot-script.sh.backup +0 -1142
- package/get-shit-done/templates/design-system.md +0 -238
- package/get-shit-done/templates/phase-design.md +0 -205
- package/get-shit-done/templates/phase-models-template.json +0 -71
- package/get-shit-done/tui/App.tsx +0 -169
- package/get-shit-done/tui/README.md +0 -107
- package/get-shit-done/tui/build.js +0 -37
- package/get-shit-done/tui/components/ActivityFeed.tsx +0 -126
- package/get-shit-done/tui/components/PhaseCard.tsx +0 -86
- package/get-shit-done/tui/components/StatsBar.tsx +0 -147
- package/get-shit-done/tui/dist/index.js +0 -387
- package/get-shit-done/tui/index.tsx +0 -12
- package/get-shit-done/tui/package-lock.json +0 -1074
- package/get-shit-done/tui/package.json +0 -22
- package/get-shit-done/tui/utils/pipeReader.ts +0 -129
- package/get-shit-done/workflows/design-system.md +0 -245
- package/get-shit-done/workflows/discuss-design.md +0 -330
- package/get-shit-done/workflows/execute-plan-auth.md +0 -122
- package/get-shit-done/workflows/execute-plan-checkpoints.md +0 -541
package/agents/gsd-planner.md
CHANGED
|
@@ -599,26 +599,119 @@ must_haves:
|
|
|
599
599
|
|
|
600
600
|
<checkpoints>
|
|
601
601
|
|
|
602
|
-
## Checkpoint
|
|
602
|
+
## Checkpoint Types
|
|
603
603
|
|
|
604
|
-
|
|
605
|
-
|
|
604
|
+
**checkpoint:human-verify (90% of checkpoints)**
|
|
605
|
+
Human confirms Claude's automated work works correctly.
|
|
606
606
|
|
|
607
|
-
|
|
607
|
+
Use for:
|
|
608
|
+
- Visual UI checks (layout, styling, responsiveness)
|
|
609
|
+
- Interactive flows (click through wizard, test user flows)
|
|
610
|
+
- Functional verification (feature works as expected)
|
|
611
|
+
- Animation smoothness, accessibility testing
|
|
608
612
|
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
613
|
+
Structure:
|
|
614
|
+
```xml
|
|
615
|
+
<task type="checkpoint:human-verify" gate="blocking">
|
|
616
|
+
<what-built>[What Claude automated]</what-built>
|
|
617
|
+
<how-to-verify>
|
|
618
|
+
[Exact steps to test - URLs, commands, expected behavior]
|
|
619
|
+
</how-to-verify>
|
|
620
|
+
<resume-signal>Type "approved" or describe issues</resume-signal>
|
|
621
|
+
</task>
|
|
622
|
+
```
|
|
623
|
+
|
|
624
|
+
**checkpoint:decision (9% of checkpoints)**
|
|
625
|
+
Human makes implementation choice that affects direction.
|
|
626
|
+
|
|
627
|
+
Use for:
|
|
628
|
+
- Technology selection (which auth provider, which database)
|
|
629
|
+
- Architecture decisions (monorepo vs separate repos)
|
|
630
|
+
- Design choices, feature prioritization
|
|
631
|
+
|
|
632
|
+
Structure:
|
|
633
|
+
```xml
|
|
634
|
+
<task type="checkpoint:decision" gate="blocking">
|
|
635
|
+
<decision>[What's being decided]</decision>
|
|
636
|
+
<context>[Why this matters]</context>
|
|
637
|
+
<options>
|
|
638
|
+
<option id="option-a">
|
|
639
|
+
<name>[Name]</name>
|
|
640
|
+
<pros>[Benefits]</pros>
|
|
641
|
+
<cons>[Tradeoffs]</cons>
|
|
642
|
+
</option>
|
|
643
|
+
</options>
|
|
644
|
+
<resume-signal>Select: option-a, option-b, or ...</resume-signal>
|
|
645
|
+
</task>
|
|
646
|
+
```
|
|
647
|
+
|
|
648
|
+
**checkpoint:human-action (1% - rare)**
|
|
649
|
+
Action has NO CLI/API and requires human-only interaction.
|
|
650
|
+
|
|
651
|
+
Use ONLY for:
|
|
652
|
+
- Email verification links
|
|
653
|
+
- SMS 2FA codes
|
|
654
|
+
- Manual account approvals
|
|
655
|
+
- Credit card 3D Secure flows
|
|
656
|
+
|
|
657
|
+
Do NOT use for:
|
|
658
|
+
- Deploying to Vercel (use `vercel` CLI)
|
|
659
|
+
- Creating Stripe webhooks (use Stripe API)
|
|
660
|
+
- Creating databases (use provider CLI)
|
|
661
|
+
- Running builds/tests (use Bash tool)
|
|
662
|
+
- Creating files (use Write tool)
|
|
663
|
+
|
|
664
|
+
## Authentication Gates
|
|
665
|
+
|
|
666
|
+
When Claude tries CLI/API and gets auth error, this is NOT a failure - it's a gate.
|
|
667
|
+
|
|
668
|
+
Pattern: Claude tries automation -> auth error -> creates checkpoint -> user authenticates -> Claude retries -> continues
|
|
614
669
|
|
|
615
|
-
|
|
670
|
+
Authentication gates are created dynamically when Claude encounters auth errors during automation. They're NOT pre-planned.
|
|
616
671
|
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
672
|
+
## Writing Guidelines
|
|
673
|
+
|
|
674
|
+
**DO:**
|
|
675
|
+
- Automate everything with CLI/API before checkpoint
|
|
676
|
+
- Be specific: "Visit https://myapp.vercel.app" not "check deployment"
|
|
677
|
+
- Number verification steps
|
|
678
|
+
- State expected outcomes
|
|
679
|
+
|
|
680
|
+
**DON'T:**
|
|
681
|
+
- Ask human to do work Claude can automate
|
|
682
|
+
- Mix multiple verifications in one checkpoint
|
|
683
|
+
- Place checkpoints before automation completes
|
|
684
|
+
|
|
685
|
+
## Anti-Patterns
|
|
686
|
+
|
|
687
|
+
**Bad - Asking human to automate:**
|
|
688
|
+
```xml
|
|
689
|
+
<task type="checkpoint:human-action">
|
|
690
|
+
<action>Deploy to Vercel</action>
|
|
691
|
+
<instructions>Visit vercel.com, import repo, click deploy...</instructions>
|
|
692
|
+
</task>
|
|
693
|
+
```
|
|
694
|
+
Why bad: Vercel has a CLI. Claude should run `vercel --yes`.
|
|
695
|
+
|
|
696
|
+
**Bad - Too many checkpoints:**
|
|
697
|
+
```xml
|
|
698
|
+
<task type="auto">Create schema</task>
|
|
699
|
+
<task type="checkpoint:human-verify">Check schema</task>
|
|
700
|
+
<task type="auto">Create API</task>
|
|
701
|
+
<task type="checkpoint:human-verify">Check API</task>
|
|
702
|
+
```
|
|
703
|
+
Why bad: Verification fatigue. Combine into one checkpoint at end.
|
|
704
|
+
|
|
705
|
+
**Good - Single verification checkpoint:**
|
|
706
|
+
```xml
|
|
707
|
+
<task type="auto">Create schema</task>
|
|
708
|
+
<task type="auto">Create API</task>
|
|
709
|
+
<task type="auto">Create UI</task>
|
|
710
|
+
<task type="checkpoint:human-verify">
|
|
711
|
+
<what-built>Complete auth flow (schema + API + UI)</what-built>
|
|
712
|
+
<how-to-verify>Test full flow: register, login, access protected page</how-to-verify>
|
|
713
|
+
</task>
|
|
714
|
+
```
|
|
622
715
|
|
|
623
716
|
</checkpoints>
|
|
624
717
|
|