@outcomeeng/spx 0.5.0 → 0.5.2

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 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 (reads content with frontmatter from stdin)
66
- cat << 'EOF' | spx session handoff
67
- ---
68
- priority: high
69
- goal: Implement change X
70
- next_step: Run the focused validation
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