schub 0.1.5 → 0.1.6
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 +0 -2
- package/dist/index.js +8528 -7066
- package/package.json +1 -1
- package/skills/create-tasks/SKILL.md +9 -3
- package/src/commands/adr.test.ts +1 -8
- package/src/commands/changes.test.ts +4 -11
- package/src/commands/cookbook.test.ts +1 -11
- package/src/commands/init.test.ts +121 -12
- package/src/commands/init.ts +55 -66
- package/src/commands/project.test.ts +3 -7
- package/src/commands/review.test.ts +1 -22
- package/src/commands/tasks-create.test.ts +0 -46
- package/src/index.ts +0 -33
- package/src/opencode.test.ts +5 -1
- package/src/opencode.ts +12 -5
- package/src/tui/app.test.tsx +0 -1
- package/src/tui/app.tsx +2 -6
- package/src/tui/components/change-list.tsx +11 -1
- package/src/tui/components/list-item.test.tsx +17 -0
- package/src/tui/components/list-item.tsx +5 -2
- package/src/tui/components/status-show-all-tasks-view.tsx +3 -2
- package/src/tui/components/status-view-render.tsx +12 -4
- package/src/tui/components/status-view-session.test.tsx +129 -1
- package/src/tui/components/status-view.tsx +111 -20
- package/src/tui/components/task-list.tsx +11 -1
- package/src/tui/hooks/use-status-view-input.ts +9 -4
- package/src/tui/prompts/confirm-prompt.tsx +83 -0
- package/src/tui/prompts/multi-select-prompt.tsx +50 -0
- package/templates/create-tasks/task-template.md +36 -6
- package/src/commands/roadmap.test.ts +0 -84
- package/src/commands/roadmap.ts +0 -84
- package/src/features/roadmap/index.ts +0 -230
- package/src/features/roadmap/roadmap.test.ts +0 -77
- package/src/tui/components/roadmap-helpers.ts +0 -69
- package/src/tui/components/roadmap-view.test.tsx +0 -85
- package/src/tui/components/roadmap-view.tsx +0 -315
- package/templates/create-roadmap/roadmap.md +0 -5
package/README.md
CHANGED
|
@@ -79,8 +79,6 @@ For backlog tasks choose `Reviewed` or `Archive`. For reviewed tasks choose `Bac
|
|
|
79
79
|
- `implement-task` - Implement a single task end-to-end and move it across task status folders.
|
|
80
80
|
- `review-proposal` - Run a proposal review session with open questions and Q&A updates.
|
|
81
81
|
- `setup-project` - Create or refresh `.schub/` project reference files.
|
|
82
|
-
- `skill-creator` - Guidance for creating or updating Codex skills.
|
|
83
|
-
- `skill-installer` - Install Codex skills from curated lists or repositories.
|
|
84
82
|
|
|
85
83
|
## Contributing
|
|
86
84
|
|