schub 0.1.16 → 0.1.19
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 +10 -2
- package/dist/api/server.js +2107 -638
- package/dist/dashboard/assets/{EquationComponent-Bb9fdCIq.js → EquationComponent-DwPFIXh0.js} +1 -1
- package/dist/dashboard/assets/index-DwmJDLid.js +400 -0
- package/dist/dashboard/assets/index-PQXzu0rH.css +1 -0
- package/dist/dashboard/index.html +2 -2
- package/dist/index.js +914 -439
- package/dist/services/runtime.js +17810 -0
- package/drizzle/{0000_dazzling_eternals.sql → 0000_tough_doctor_spectrum.sql} +59 -0
- package/drizzle/meta/0000_snapshot.json +381 -1
- package/drizzle/meta/_journal.json +2 -30
- package/package.json +4 -3
- package/skills/create-proposal/SKILL.md +4 -4
- package/skills/create-ticket/SKILL.md +4 -4
- package/skills/create-tickets-for-proposal/SKILL.md +4 -4
- package/skills/{implement-task → implement-ticket}/SKILL.md +13 -17
- package/skills/refine-ticket/SKILL.md +36 -0
- package/skills/review-proposal/SKILL.md +3 -3
- package/dist/dashboard/assets/index-CrVPkqrB.css +0 -1
- package/dist/dashboard/assets/index-V7indj-C.js +0 -396
- package/drizzle/0001_archived_flags.sql +0 -3
- package/drizzle/0002_clumsy_legion.sql +0 -8
- package/drizzle/0003_opposite_captain_stacy.sql +0 -1
- package/drizzle/0004_omniscient_martin_li.sql +0 -1
- package/drizzle/meta/0002_snapshot.json +0 -1080
- package/drizzle/meta/0003_snapshot.json +0 -1088
- package/drizzle/meta/0004_snapshot.json +0 -1095
package/README.md
CHANGED
|
@@ -61,7 +61,7 @@ Project-scoped DB commands use the project id from `.schub/config.json`.
|
|
|
61
61
|
#### Proposals
|
|
62
62
|
|
|
63
63
|
- `schub proposals create` - Create a new proposal locally and in the database.
|
|
64
|
-
- `schub proposals save` - Save all files in
|
|
64
|
+
- `schub proposals save` - Save all files in one proposal folder to DB/storage (`--proposal-id`) or save all local proposals (`--all`).
|
|
65
65
|
- `schub proposals pull` - Pull a proposal from the database into `.schub`.
|
|
66
66
|
- `schub proposals status` - Update a proposal status in frontmatter.
|
|
67
67
|
- `schub proposals list` - List proposals (`--show-all` includes archived/rejected).
|
|
@@ -74,9 +74,17 @@ Proposal ids are stored as `P####_<slug>`. Any command that accepts `--proposal-
|
|
|
74
74
|
|
|
75
75
|
```bash
|
|
76
76
|
schub proposals save --proposal-id P0003
|
|
77
|
+
schub proposals save --all
|
|
77
78
|
schub proposals pull --proposal-id P0003
|
|
78
79
|
```
|
|
79
80
|
|
|
81
|
+
#### Docs
|
|
82
|
+
|
|
83
|
+
- `schub docs init` - Scaffold `.schub/docs/docs.json` and starter markdown (`index.md`).
|
|
84
|
+
- `schub docs init --overwrite` - Replace starter docs files when they already exist.
|
|
85
|
+
- `schub docs save` - Save `.schub/docs/docs.json` and `**/*.md` to persisted project docs storage.
|
|
86
|
+
- `schub docs pull` - Pull persisted project docs back into `.schub/docs`.
|
|
87
|
+
|
|
80
88
|
#### Dashboard
|
|
81
89
|
|
|
82
90
|
- `schub dashboard` - Start the web dashboard (dev opens `http://localhost:5173`, preview opens `http://localhost:4173`).
|
|
@@ -89,7 +97,7 @@ schub proposals pull --proposal-id P0003
|
|
|
89
97
|
- `schub tickets check` - Toggle a checklist item in a ticket.
|
|
90
98
|
- `schub tickets update` - Move backlog tickets to any ticket status configured for the project in DB.
|
|
91
99
|
- `schub tickets implement` - Move a ticket to `wip` and launch Opencode.
|
|
92
|
-
- `schub tickets save` - Validate and save
|
|
100
|
+
- `schub tickets save` - Validate and save one ticket (`--id`) or all local tickets (`--all`) to DB/storage.
|
|
93
101
|
|
|
94
102
|
##### Ticket implementation
|
|
95
103
|
|