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 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 a proposal folder to DB/storage.
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 a ticket to DB/storage.
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