epismo 0.9.1 → 0.10.0
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 +19 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -166,6 +166,25 @@ omit `scope`/`sharedWith` to preserve the existing acl bits. CLI flags: `--perso
|
|
|
166
166
|
`--projects <id...>`, `--share-with <userIdOrEmail...>` (values containing `@` are treated as
|
|
167
167
|
emails).
|
|
168
168
|
|
|
169
|
+
### `epismo suggestion`
|
|
170
|
+
|
|
171
|
+
Manage improvement suggestions for workflows and contexts.
|
|
172
|
+
|
|
173
|
+
```bash
|
|
174
|
+
epismo suggestion create @market-research --title "Add review step" --content "Add a final human review before publishing."
|
|
175
|
+
epismo suggestion create <pack-id> --input @suggestion.json
|
|
176
|
+
epismo suggestion get <suggestion-id>
|
|
177
|
+
epismo suggestion get <suggestion-id> --include-snapshot
|
|
178
|
+
epismo suggestion list --reference @market-research
|
|
179
|
+
epismo suggestion list --owner --status open
|
|
180
|
+
epismo suggestion list --status open,declined
|
|
181
|
+
epismo suggestion update <suggestion-id> --title "Add review step" --content "Please add a reviewer approval step."
|
|
182
|
+
epismo suggestion resolve <suggestion-id> --status applied
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
Use `--owner` as an inbox for suggestions sent to packs you own. Omit `--owner`
|
|
186
|
+
to list suggestions you submitted, or pass `--reference` to focus on one pack.
|
|
187
|
+
|
|
169
188
|
### `epismo alias`
|
|
170
189
|
|
|
171
190
|
Manage pack aliases as a top-level resource.
|