@outcomeeng/spx 0.5.0 → 0.5.1
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 +7 -9
- package/dist/cli.js +4489 -4196
- package/dist/cli.js.map +1 -1
- package/package.json +2 -11
package/README.md
CHANGED
|
@@ -62,15 +62,13 @@ All validation commands support `--quiet` for CI and `--json` for machine-readab
|
|
|
62
62
|
Manage work sessions for agent handoffs and task queuing:
|
|
63
63
|
|
|
64
64
|
```bash
|
|
65
|
-
# Create a handoff session (
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
# Implement change X
|
|
73
|
-
EOF
|
|
65
|
+
# Create a handoff session (JSON header at start of stdin, then body bytes verbatim)
|
|
66
|
+
printf '%s\n' \
|
|
67
|
+
'{"priority":"high","goal":"Implement change X","next_step":"Run the focused validation","specs":[],"files":[]}' \
|
|
68
|
+
'# Implement change X' \
|
|
69
|
+
'' \
|
|
70
|
+
'Body text — `#`, `---`, and code fences are literal because the body is not parsed.' \
|
|
71
|
+
| spx session handoff
|
|
74
72
|
|
|
75
73
|
# List all sessions
|
|
76
74
|
spx session list
|