@tangle-network/sandbox-cli 0.27.2-develop.20260818091655.8a33197 → 0.27.2-develop.20260818214143.efd4338
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/SKILL.md +10 -1
- package/dist/index.mjs +20 -20
- package/package.json +4 -4
package/SKILL.md
CHANGED
|
@@ -257,7 +257,13 @@ tangle team invitations [team] # List pending/historical invitations
|
|
|
257
257
|
## Workflows
|
|
258
258
|
|
|
259
259
|
Authenticate with the `sk-tan-*` API key (`TANGLE_API_KEY`), same as the other
|
|
260
|
-
platform commands, not a hub capability token.
|
|
260
|
+
platform commands, not a hub capability token. These commands address the
|
|
261
|
+
platform control plane, not the sandbox API. The host resolves from
|
|
262
|
+
`--base-url`, then `TANGLE_HUB_URL` (which a spawned sandbox injects to name
|
|
263
|
+
its own hub, so it wins over an ambient value), then `TANGLE_PLATFORM_URL`,
|
|
264
|
+
then `https://id.tangle.tools`. On `workflows`,
|
|
265
|
+
`--base-url` names the PLATFORM host — unlike `tangle keys`, where `--base-url`
|
|
266
|
+
is the sandbox API and `--platform-url` is the platform.
|
|
261
267
|
|
|
262
268
|
Authoring a workflow (graph topology, guards, joins, KV state, decisions):
|
|
263
269
|
https://sandbox.tangle.tools/docs/workflows
|
|
@@ -266,7 +272,9 @@ https://sandbox.tangle.tools/docs/workflows
|
|
|
266
272
|
tangle workflows validate workflow.yml
|
|
267
273
|
tangle workflows schema # print JSON Schema
|
|
268
274
|
tangle workflows create workflow.yml
|
|
275
|
+
tangle workflows apply workflow.yml # create or update, matched by the definition's name
|
|
269
276
|
tangle workflows list
|
|
277
|
+
tangle workflows fleet # run tallies over a trailing window, failing first
|
|
270
278
|
tangle workflows get <id>
|
|
271
279
|
tangle workflows update <id> workflow.yml
|
|
272
280
|
tangle workflows enable <id>
|
|
@@ -291,6 +299,7 @@ tangle workflows runs <id> # run history
|
|
|
291
299
|
tangle workflows run-detail <id> <runId> # single-run detail
|
|
292
300
|
tangle workflows events <id> <runId> # tail live progress
|
|
293
301
|
tangle workflows cancel <id> <runId> # cancel a queued/running run
|
|
302
|
+
tangle workflows retry <id> <runId> # re-run a failed run with the same trigger context
|
|
294
303
|
|
|
295
304
|
# Cross-run KV state
|
|
296
305
|
tangle workflows kv list <id>
|