@lipter7/blueprint 2.0.0 → 2.0.1

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 (49) hide show
  1. package/README.md +20 -16
  2. package/bin/install.js +717 -37
  3. package/bin/install.test.js +870 -0
  4. package/blueprint/bin/blueprint-tools.js +250 -0
  5. package/blueprint/bin/blueprint-tools.test.js +443 -0
  6. package/blueprint/references/planning-config.md +6 -6
  7. package/blueprint/references/verification-gates.md +346 -0
  8. package/blueprint/templates/codebase/architecture.md +2 -2
  9. package/blueprint/templates/codebase/structure.md +3 -3
  10. package/blueprint/templates/config.json +7 -1
  11. package/blueprint/templates/state.md +31 -0
  12. package/blueprint/workflows/complete-milestone.md +94 -5
  13. package/blueprint/workflows/discuss-phase.md +86 -21
  14. package/blueprint/workflows/map-codebase.md +26 -0
  15. package/blueprint/workflows/new-milestone.md +219 -1
  16. package/blueprint/workflows/new-project.md +407 -67
  17. package/blueprint/workflows/plan-phase.md +108 -4
  18. package/blueprint/workflows/progress.md +1 -1
  19. package/blueprint/workflows/research-phase.md +216 -1
  20. package/blueprint/workflows/settings-cursor.md +254 -0
  21. package/blueprint/workflows/settings.md +2 -2
  22. package/blueprint/workflows/verify-work.md +49 -1
  23. package/commands/bp/add-phase.md +1 -1
  24. package/commands/bp/add-todo.md +1 -1
  25. package/commands/bp/audit-milestone.md +1 -1
  26. package/commands/bp/check-todos.md +1 -1
  27. package/commands/bp/complete-milestone.md +1 -1
  28. package/commands/bp/debug.md +18 -1
  29. package/commands/bp/discuss-phase.md +1 -1
  30. package/commands/bp/execute-phase.md +1 -1
  31. package/commands/bp/help.md +1 -1
  32. package/commands/bp/insert-phase.md +1 -1
  33. package/commands/bp/join-discord.md +1 -1
  34. package/commands/bp/list-phase-assumptions.md +1 -1
  35. package/commands/bp/map-codebase.md +1 -1
  36. package/commands/bp/new-milestone.md +1 -1
  37. package/commands/bp/new-project.md +1 -1
  38. package/commands/bp/pause-work.md +1 -1
  39. package/commands/bp/plan-milestone-gaps.md +1 -1
  40. package/commands/bp/plan-phase.md +1 -1
  41. package/commands/bp/progress.md +1 -1
  42. package/commands/bp/quick.md +1 -1
  43. package/commands/bp/remove-phase.md +1 -1
  44. package/commands/bp/research-phase.md +1 -1
  45. package/commands/bp/resume-work.md +1 -1
  46. package/commands/bp/set-profile.md +1 -1
  47. package/commands/bp/settings.md +1 -1
  48. package/commands/bp/verify-work.md +1 -1
  49. package/package.json +1 -1
package/README.md CHANGED
@@ -16,7 +16,8 @@
16
16
  <br>
17
17
 
18
18
  ```bash
19
- npx @lipter7/blueprint@latest
19
+ npm install -g @lipter7/blueprint
20
+ blueprint
20
21
  ```
21
22
 
22
23
  **Works on Mac, Windows, and Linux.**
@@ -44,7 +45,8 @@ Blueprint is a fork of [GET SHIT DONE (GSD)](https://github.com/gsd-build/get-sh
44
45
  ## Getting Started
45
46
 
46
47
  ```bash
47
- npx @lipter7/blueprint@latest
48
+ npm install -g @lipter7/blueprint
49
+ blueprint
48
50
  ```
49
51
 
50
52
  The installer prompts you to choose:
@@ -58,7 +60,8 @@ Verify with `/bp:help` inside your chosen runtime.
58
60
  Blueprint evolves fast. Update periodically:
59
61
 
60
62
  ```bash
61
- npx @lipter7/blueprint@latest
63
+ npm install -g @lipter7/blueprint@latest
64
+ blueprint
62
65
  ```
63
66
 
64
67
  <details>
@@ -66,17 +69,17 @@ npx @lipter7/blueprint@latest
66
69
 
67
70
  ```bash
68
71
  # Claude Code
69
- npx @lipter7/blueprint --claude --global # Install to ~/.claude/
70
- npx @lipter7/blueprint --claude --local # Install to ./.claude/
72
+ blueprint --claude --global # Install to ~/.claude/
73
+ blueprint --claude --local # Install to ./.claude/
71
74
 
72
75
  # OpenCode (open source, free models)
73
- npx @lipter7/blueprint --opencode --global # Install to ~/.config/opencode/
76
+ blueprint --opencode --global # Install to ~/.config/opencode/
74
77
 
75
78
  # Gemini CLI
76
- npx @lipter7/blueprint --gemini --global # Install to ~/.gemini/
79
+ blueprint --gemini --global # Install to ~/.gemini/
77
80
 
78
81
  # All runtimes
79
- npx @lipter7/blueprint --all --global # Install to all directories
82
+ blueprint --all --global # Install to all directories
80
83
  ```
81
84
 
82
85
  Use `--global` (`-g`) or `--local` (`-l`) to skip the location prompt.
@@ -555,18 +558,19 @@ This prevents Claude from reading these files entirely, regardless of what comma
555
558
 
556
559
  **Commands not working as expected?**
557
560
  - Run `/bp:help` to verify installation
558
- - Re-run `npx @lipter7/blueprint` to reinstall
561
+ - Re-run `blueprint` to reinstall
559
562
 
560
563
  **Updating to the latest version?**
561
564
  ```bash
562
- npx @lipter7/blueprint@latest
565
+ npm install -g @lipter7/blueprint@latest
566
+ blueprint
563
567
  ```
564
568
 
565
569
  **Using Docker or containerized environments?**
566
570
 
567
571
  If file reads fail with tilde paths (`~/.claude/...`), set `CLAUDE_CONFIG_DIR` before installing:
568
572
  ```bash
569
- CLAUDE_CONFIG_DIR=/home/youruser/.claude npx @lipter7/blueprint --global
573
+ CLAUDE_CONFIG_DIR=/home/youruser/.claude blueprint --global
570
574
  ```
571
575
  This ensures absolute paths are used instead of `~` which may not expand correctly in containers.
572
576
 
@@ -576,12 +580,12 @@ To remove Blueprint completely:
576
580
 
577
581
  ```bash
578
582
  # Global installs
579
- npx @lipter7/blueprint --claude --global --uninstall
580
- npx @lipter7/blueprint --opencode --global --uninstall
583
+ blueprint --claude --global --uninstall
584
+ blueprint --opencode --global --uninstall
581
585
 
582
586
  # Local installs (current project)
583
- npx @lipter7/blueprint --claude --local --uninstall
584
- npx @lipter7/blueprint --opencode --local --uninstall
587
+ blueprint --claude --local --uninstall
588
+ blueprint --opencode --local --uninstall
585
589
  ```
586
590
 
587
591
  This removes all Blueprint commands, agents, hooks, and settings while preserving your other configurations.
@@ -590,7 +594,7 @@ This removes all Blueprint commands, agents, hooks, and settings while preservin
590
594
 
591
595
  ## Community Ports
592
596
 
593
- OpenCode and Gemini CLI are now natively supported via `npx @lipter7/blueprint`.
597
+ OpenCode and Gemini CLI are now natively supported via the `blueprint` installer.
594
598
 
595
599
  These upstream GSD community ports pioneered multi-runtime support:
596
600