schub 0.1.24 → 0.1.25
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 +5 -5
- package/dist/api/server.js +402 -184
- package/dist/dashboard/assets/{EquationComponent-CWQHffQf.js → EquationComponent-CmMddHEw.js} +1 -1
- package/dist/dashboard/assets/index-UwpVAg9D.js +354 -0
- package/dist/dashboard/index.html +1 -1
- package/dist/index.js +3362 -3102
- package/dist/services/runtime.js +214 -73
- package/drizzle/0005_rename_content_to_title.sql +2 -0
- package/drizzle/0006_replace_blocked_by_dependencies_with_depends_on.sql +2 -0
- package/drizzle/0007_add_ticket_deleted_at.sql +1 -0
- package/drizzle/0008_add_workspace_artifacts.sql +13 -0
- package/drizzle/0009_refactor_workspace_artifacts.sql +10 -0
- package/drizzle/meta/0005_snapshot.json +1431 -0
- package/drizzle/meta/_journal.json +35 -0
- package/package.json +1 -1
- package/skills/create-sub-tickets/SKILL.md +55 -0
- package/skills/create-ticket/SKILL.md +2 -2
- package/skills/implement-ticket/SKILL.md +6 -17
- package/skills/refine-ticket/SKILL.md +5 -3
- package/templates/create-ticket/ticket-template.md +2 -1
- package/dist/dashboard/assets/index-CPnJQq3d.js +0 -391
- package/skills/create-tickets-for-proposal/SKILL.md +0 -50
package/README.md
CHANGED
|
@@ -66,7 +66,7 @@ Project-scoped DB commands use the project id from `.schub/config.json`.
|
|
|
66
66
|
|
|
67
67
|
- `schub proposals write` - Write a new proposal locally from the template (allocates a DB shorthand but does not upload).
|
|
68
68
|
- `schub proposals create` - Create a proposal directly in the database with `--content` (programmatic/API use).
|
|
69
|
-
- `schub proposals save` - Save all files in one proposal folder to DB/storage (`--
|
|
69
|
+
- `schub proposals save` - Save all files in one proposal folder to DB/storage (`--id`) or save all local proposals (`--all`).
|
|
70
70
|
- `schub proposals pull` - Pull a proposal from the database into the local `.schub` folder (requires local `.schub/config.json`).
|
|
71
71
|
- `schub proposals update` - Update a proposal status in frontmatter and sync to DB.
|
|
72
72
|
- `schub proposals list` - List proposals (`--show-all` includes archived/rejected).
|
|
@@ -76,12 +76,12 @@ Project-scoped DB commands use the project id from `.schub/config.json`.
|
|
|
76
76
|
|
|
77
77
|
##### Proposal IDs
|
|
78
78
|
|
|
79
|
-
Proposal ids are stored as `P####_<slug>`. Any command that accepts `--
|
|
79
|
+
Proposal ids are stored as `P####_<slug>`. Any command that accepts proposal ids via `--id` also accepts the shorthand `P####` when it uniquely matches a proposal directory under `.schub/proposals` or `.schub/archive/proposals`.
|
|
80
80
|
|
|
81
81
|
```bash
|
|
82
|
-
schub proposals save --
|
|
82
|
+
schub proposals save --id P0003
|
|
83
83
|
schub proposals save --all
|
|
84
|
-
schub proposals pull --
|
|
84
|
+
schub proposals pull --id P0003
|
|
85
85
|
```
|
|
86
86
|
|
|
87
87
|
#### Docs
|
|
@@ -193,7 +193,7 @@ Install paths per agent:
|
|
|
193
193
|
|
|
194
194
|
- `create-proposal` - Scaffold and update proposals, including review requirements.
|
|
195
195
|
- `create-ticket` - Create a ticket for any requested repo change.
|
|
196
|
-
- `create-tickets
|
|
196
|
+
- `create-sub-tickets` - Generate actionable child ticket files under `.schub/tickets/` from a parent ticket id.
|
|
197
197
|
- `implement-ticket` - Implement a single ticket end-to-end and move it across ticket status folders.
|
|
198
198
|
- `review-proposal` - Run a proposal review session with open questions and Q&A updates.
|
|
199
199
|
- `refine-ticket` - Refine an existing ticket into the ticket template.
|