epismo 0.9.0 → 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 +22 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -94,6 +94,8 @@ epismo project member delete <user-id> --project-id <pid>
|
|
|
94
94
|
epismo project member delete <uid1>,<uid2> --project-id <pid> # bulk
|
|
95
95
|
```
|
|
96
96
|
|
|
97
|
+
Bulk operations (comma-separated `<user-ids>`) are sent as a single request and applied together, not one per user. Up to 100 members can be added or removed at once.
|
|
98
|
+
|
|
97
99
|
### `epismo agent`
|
|
98
100
|
|
|
99
101
|
Manage which AI teammates appear in the assignee roster.
|
|
@@ -164,12 +166,31 @@ omit `scope`/`sharedWith` to preserve the existing acl bits. CLI flags: `--perso
|
|
|
164
166
|
`--projects <id...>`, `--share-with <userIdOrEmail...>` (values containing `@` are treated as
|
|
165
167
|
emails).
|
|
166
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
|
+
|
|
167
188
|
### `epismo alias`
|
|
168
189
|
|
|
169
190
|
Manage pack aliases as a top-level resource.
|
|
170
191
|
|
|
171
192
|
```bash
|
|
172
|
-
epismo alias upsert @myproject --
|
|
193
|
+
epismo alias upsert @myproject --id <pack-id>
|
|
173
194
|
epismo alias get @myproject
|
|
174
195
|
epismo alias get @handle/myproject # another user's alias
|
|
175
196
|
epismo alias list
|