schub 0.1.1 → 0.1.2

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 (44) hide show
  1. package/README.md +2 -0
  2. package/dist/index.js +836 -269
  3. package/package.json +3 -1
  4. package/skills/create-proposal/SKILL.md +33 -0
  5. package/skills/create-tasks/SKILL.md +40 -0
  6. package/skills/implement-task/SKILL.md +84 -0
  7. package/skills/review-proposal/SKILL.md +37 -0
  8. package/skills/setup-project/SKILL.md +29 -0
  9. package/src/App.test.tsx +93 -0
  10. package/src/App.tsx +50 -7
  11. package/src/changes.ts +42 -28
  12. package/src/clipboard.ts +5 -0
  13. package/src/commands/adr.test.ts +69 -0
  14. package/src/commands/adr.ts +10 -2
  15. package/src/commands/changes.test.ts +171 -0
  16. package/src/commands/changes.ts +76 -1
  17. package/src/commands/cookbook.test.ts +71 -0
  18. package/src/commands/cookbook.ts +8 -2
  19. package/src/commands/eject.test.ts +74 -0
  20. package/src/commands/eject.ts +100 -0
  21. package/src/commands/init.test.ts +78 -0
  22. package/src/commands/init.ts +144 -0
  23. package/src/commands/project.test.ts +113 -0
  24. package/src/commands/review.test.ts +100 -0
  25. package/src/commands/review.ts +17 -4
  26. package/src/commands/tasks-create.test.ts +172 -0
  27. package/src/commands/tasks-list.test.ts +177 -0
  28. package/src/components/PlanView.test.tsx +113 -0
  29. package/src/components/PlanView.tsx +95 -26
  30. package/src/components/StatusView.test.tsx +380 -0
  31. package/src/components/StatusView.tsx +175 -34
  32. package/src/features/tasks/create.ts +15 -7
  33. package/src/features/tasks/filesystem.test.ts +78 -0
  34. package/src/features/tasks/filesystem.ts +4 -8
  35. package/src/ide.ts +7 -0
  36. package/src/index.test.ts +23 -0
  37. package/src/index.ts +19 -6
  38. package/src/init.test.ts +43 -0
  39. package/src/init.ts +27 -0
  40. package/src/project.ts +5 -32
  41. package/src/schub-root.ts +33 -0
  42. package/src/templates.ts +18 -0
  43. package/src/terminal.test.ts +46 -0
  44. package/templates/templates-parity.test.ts +45 -0
package/README.md CHANGED
@@ -28,8 +28,10 @@ If no command is provided, the interactive UI dashboard will launch.
28
28
 
29
29
  #### Project & Changes
30
30
 
31
+ - `schub init` - Initialize `.schub` and install Codex skills.
31
32
  - `schub project create` - Initialize or update project-level documentation (Overview, Setup, Ways of Working).
32
33
  - `schub changes create` - Create a new change proposal file.
34
+ - `schub eject` - Copy bundled skills and templates into `.schub` (use `--force` to overwrite).
33
35
 
34
36
  #### Task Management
35
37