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.
- package/README.md +2 -0
- package/dist/index.js +836 -269
- package/package.json +3 -1
- package/skills/create-proposal/SKILL.md +33 -0
- package/skills/create-tasks/SKILL.md +40 -0
- package/skills/implement-task/SKILL.md +84 -0
- package/skills/review-proposal/SKILL.md +37 -0
- package/skills/setup-project/SKILL.md +29 -0
- package/src/App.test.tsx +93 -0
- package/src/App.tsx +50 -7
- package/src/changes.ts +42 -28
- package/src/clipboard.ts +5 -0
- package/src/commands/adr.test.ts +69 -0
- package/src/commands/adr.ts +10 -2
- package/src/commands/changes.test.ts +171 -0
- package/src/commands/changes.ts +76 -1
- package/src/commands/cookbook.test.ts +71 -0
- package/src/commands/cookbook.ts +8 -2
- package/src/commands/eject.test.ts +74 -0
- package/src/commands/eject.ts +100 -0
- package/src/commands/init.test.ts +78 -0
- package/src/commands/init.ts +144 -0
- package/src/commands/project.test.ts +113 -0
- package/src/commands/review.test.ts +100 -0
- package/src/commands/review.ts +17 -4
- package/src/commands/tasks-create.test.ts +172 -0
- package/src/commands/tasks-list.test.ts +177 -0
- package/src/components/PlanView.test.tsx +113 -0
- package/src/components/PlanView.tsx +95 -26
- package/src/components/StatusView.test.tsx +380 -0
- package/src/components/StatusView.tsx +175 -34
- package/src/features/tasks/create.ts +15 -7
- package/src/features/tasks/filesystem.test.ts +78 -0
- package/src/features/tasks/filesystem.ts +4 -8
- package/src/ide.ts +7 -0
- package/src/index.test.ts +23 -0
- package/src/index.ts +19 -6
- package/src/init.test.ts +43 -0
- package/src/init.ts +27 -0
- package/src/project.ts +5 -32
- package/src/schub-root.ts +33 -0
- package/src/templates.ts +18 -0
- package/src/terminal.test.ts +46 -0
- 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
|
|