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.
Files changed (61) hide show
  1. package/README.md +16 -17
  2. package/agents/gsd-executor.md +375 -37
  3. package/agents/gsd-planner.md +108 -15
  4. package/bin/install.js +163 -238
  5. package/commands/gsd/help.md +0 -43
  6. package/commands/gsd/new-project.md +8 -94
  7. package/commands/gsd/plan-phase.md +5 -35
  8. package/get-shit-done/references/verification-patterns.md +1 -1
  9. package/get-shit-done/templates/phase-prompt.md +4 -4
  10. package/get-shit-done/templates/state.md +0 -37
  11. package/get-shit-done/workflows/execute-phase.md +1 -44
  12. package/get-shit-done/workflows/execute-plan.md +856 -34
  13. package/hooks/dist/gsd-statusline.js +9 -6
  14. package/package.json +7 -10
  15. package/agents/design-specialist.md +0 -222
  16. package/commands/gsd/autopilot.md +0 -518
  17. package/commands/gsd/checkpoints.md +0 -229
  18. package/commands/gsd/design-system.md +0 -70
  19. package/commands/gsd/discuss-design.md +0 -77
  20. package/commands/gsd/extend.md +0 -80
  21. package/get-shit-done/references/ccr-integration.md +0 -468
  22. package/get-shit-done/references/checkpoint-execution.md +0 -369
  23. package/get-shit-done/references/checkpoint-types.md +0 -728
  24. package/get-shit-done/references/deviation-rules.md +0 -215
  25. package/get-shit-done/references/framework-patterns.md +0 -543
  26. package/get-shit-done/references/ui-principles.md +0 -258
  27. package/get-shit-done/skills/gsd-extend/SKILL.md +0 -154
  28. package/get-shit-done/skills/gsd-extend/references/agent-structure.md +0 -305
  29. package/get-shit-done/skills/gsd-extend/references/extension-anatomy.md +0 -123
  30. package/get-shit-done/skills/gsd-extend/references/reference-structure.md +0 -408
  31. package/get-shit-done/skills/gsd-extend/references/template-structure.md +0 -370
  32. package/get-shit-done/skills/gsd-extend/references/validation-rules.md +0 -140
  33. package/get-shit-done/skills/gsd-extend/references/workflow-structure.md +0 -253
  34. package/get-shit-done/skills/gsd-extend/templates/agent-template.md +0 -234
  35. package/get-shit-done/skills/gsd-extend/templates/reference-template.md +0 -239
  36. package/get-shit-done/skills/gsd-extend/templates/workflow-template.md +0 -169
  37. package/get-shit-done/skills/gsd-extend/workflows/create-approach.md +0 -332
  38. package/get-shit-done/skills/gsd-extend/workflows/list-extensions.md +0 -133
  39. package/get-shit-done/skills/gsd-extend/workflows/remove-extension.md +0 -93
  40. package/get-shit-done/skills/gsd-extend/workflows/validate-extension.md +0 -184
  41. package/get-shit-done/templates/autopilot-script-simple.sh +0 -181
  42. package/get-shit-done/templates/autopilot-script.sh +0 -1142
  43. package/get-shit-done/templates/autopilot-script.sh.backup +0 -1142
  44. package/get-shit-done/templates/design-system.md +0 -238
  45. package/get-shit-done/templates/phase-design.md +0 -205
  46. package/get-shit-done/templates/phase-models-template.json +0 -71
  47. package/get-shit-done/tui/App.tsx +0 -169
  48. package/get-shit-done/tui/README.md +0 -107
  49. package/get-shit-done/tui/build.js +0 -37
  50. package/get-shit-done/tui/components/ActivityFeed.tsx +0 -126
  51. package/get-shit-done/tui/components/PhaseCard.tsx +0 -86
  52. package/get-shit-done/tui/components/StatsBar.tsx +0 -147
  53. package/get-shit-done/tui/dist/index.js +0 -387
  54. package/get-shit-done/tui/index.tsx +0 -12
  55. package/get-shit-done/tui/package-lock.json +0 -1074
  56. package/get-shit-done/tui/package.json +0 -22
  57. package/get-shit-done/tui/utils/pipeReader.ts +0 -129
  58. package/get-shit-done/workflows/design-system.md +0 -245
  59. package/get-shit-done/workflows/discuss-design.md +0 -330
  60. package/get-shit-done/workflows/execute-plan-auth.md +0 -122
  61. package/get-shit-done/workflows/execute-plan-checkpoints.md +0 -541
@@ -599,26 +599,119 @@ must_haves:
599
599
 
600
600
  <checkpoints>
601
601
 
602
- ## Checkpoint Reference
602
+ ## Checkpoint Types
603
603
 
604
- For checkpoint types, structures, writing guidelines, examples, and anti-patterns:
605
- @~/.claude/get-shit-done/references/checkpoint-types.md
604
+ **checkpoint:human-verify (90% of checkpoints)**
605
+ Human confirms Claude's automated work works correctly.
606
606
 
607
- **Quick reference:**
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
- | Type | Use For | Frequency |
610
- |------|---------|-----------|
611
- | `checkpoint:human-verify` | Visual/functional verification after automation | 90% |
612
- | `checkpoint:decision` | Implementation choices requiring user input | 9% |
613
- | `checkpoint:human-action` | Truly unavoidable manual steps (email links, 2FA) | 1% |
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
- **Core principle:** Claude automates everything with CLI/API. Checkpoints are for verification and decisions, not manual work.
670
+ Authentication gates are created dynamically when Claude encounters auth errors during automation. They're NOT pre-planned.
616
671
 
617
- **Golden rules:**
618
- 1. If Claude can run it, Claude runs it
619
- 2. Claude sets up verification environment (starts servers, seeds data)
620
- 3. User only does what requires human judgment (visual checks, UX evaluation)
621
- 4. Authentication gates are created dynamically when auth errors occur — not pre-planned
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