epismo 1.9.1 → 1.11.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 +26 -1
- package/npm/vendor/darwin-amd64/epismo +0 -0
- package/npm/vendor/darwin-arm64/epismo +0 -0
- package/npm/vendor/linux-amd64/epismo +0 -0
- package/npm/vendor/linux-arm64/epismo +0 -0
- package/npm/vendor/windows-amd64/epismo.exe +0 -0
- package/npm/vendor/windows-arm64/epismo.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -49,6 +49,31 @@ epismo playbook init --title Onboarding > playbook.json
|
|
|
49
49
|
epismo playbook create --definition @playbook.json
|
|
50
50
|
```
|
|
51
51
|
|
|
52
|
+
`epismo workspace checkout <workspace-id>` starts a hosted subscription checkout. If the workspace has a cancellation scheduled for the end of its current billing period, it resumes that subscription instead of creating a second one.
|
|
53
|
+
|
|
54
|
+
## Playbook access
|
|
55
|
+
|
|
56
|
+
Use `visibility` and explicit editors instead of a raw ACL:
|
|
57
|
+
|
|
58
|
+
```sh
|
|
59
|
+
epismo playbook access get PLAYBOOK_ID
|
|
60
|
+
epismo playbook access set PLAYBOOK_ID --visibility public --editors USER_ID,TEAM_ID
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
`public` permits published reads only. Editors can read and edit Playbook content; the owner is implicit and is not included in `--editors`. Owner managers, including Workspace Owners and Admins for a Workspace-owned Playbook, manage access and archive Playbooks or historical Versions.
|
|
64
|
+
|
|
65
|
+
## Cases and handoffs
|
|
66
|
+
|
|
67
|
+
Start a Case, append timeline Records, connect dependent workflows, and explore the DAG:
|
|
68
|
+
|
|
69
|
+
```sh
|
|
70
|
+
epismo case start --title "Customer Onboarding"
|
|
71
|
+
epismo case record append CASE_ID --kind result --content "Completed setup"
|
|
72
|
+
epismo case handoff FIRST_CASE_ID --to-case-id SECOND_CASE_ID
|
|
73
|
+
epismo case handoff graph CASE_ID --scope connected
|
|
74
|
+
epismo case record list CASE_ID --scope ancestors
|
|
75
|
+
```
|
|
76
|
+
|
|
52
77
|
Run `epismo --help` for command groups, or append `--help` to any group or command for its options.
|
|
53
78
|
|
|
54
79
|
Use `epismo examples` for common workflows, `epismo doctor` to inspect local setup, and `epismo completion zsh` (or `bash`, `fish`, `powershell`) to install shell completion.
|
|
@@ -108,7 +133,7 @@ EPISMO_WORKSPACE=acme epismo case list
|
|
|
108
133
|
|
|
109
134
|
Workspace references accept an exact ID or unique handle. The effective workspace is chosen in this order: `--workspace`, `EPISMO_WORKSPACE`, a workspace-scoped token, then the saved default workspace. A scoped token cannot grant access outside its scope.
|
|
110
135
|
|
|
111
|
-
`--dry-run` previews any command that changes remote or local state without sending a request, opening an authorization or checkout flow, or changing local configuration. This includes creates, updates, publishes, draft saves, assignments, records, stars, aliases, membership changes, archive/delete/revoke/close operations, and login/logout or workspace-selection changes. Read-only commands reject `--dry-run` instead of silently ignoring it. In an interactive terminal, especially impactful operations still ask for confirmation during a real run; pass `--yes` to skip that prompt in scripts that allocate a TTY.
|
|
136
|
+
`--dry-run` previews any command that changes remote or local state without sending a request, opening an authorization or checkout flow, or changing local configuration. This includes creates, updates, publishes, draft saves, assignments, records, handoffs, stars, aliases, membership changes, archive/delete/revoke/close operations, and login/logout or workspace-selection changes. Read-only commands reject `--dry-run` instead of silently ignoring it. In an interactive terminal, especially impactful operations still ask for confirmation during a real run; pass `--yes` to skip that prompt in scripts that allocate a TTY.
|
|
112
137
|
|
|
113
138
|
`--input` also works on list/search commands for agent workflows; there it supplies query parameters rather than a request body.
|
|
114
139
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|