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 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 (`--proposal-id`) or save all local proposals (`--all`).
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 `--proposal-id` also accepts the shorthand `P####` when it uniquely matches a proposal directory under `.schub/proposals` or `.schub/archive/proposals`.
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 --proposal-id P0003
82
+ schub proposals save --id P0003
83
83
  schub proposals save --all
84
- schub proposals pull --proposal-id P0003
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-for-proposal` - Generate actionable ticket files under `.schub/tickets/` from a proposal id.
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.