@outcomeeng/spx 0.4.0 → 0.5.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 +4 -4
- package/dist/cli.js +2945 -1691
- package/dist/cli.js.map +1 -1
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -66,8 +66,10 @@ Manage work sessions for agent handoffs and task queuing:
|
|
|
66
66
|
cat << 'EOF' | spx session handoff
|
|
67
67
|
---
|
|
68
68
|
priority: high
|
|
69
|
+
goal: Implement change X
|
|
70
|
+
next_step: Run the focused validation
|
|
69
71
|
---
|
|
70
|
-
# Implement
|
|
72
|
+
# Implement change X
|
|
71
73
|
EOF
|
|
72
74
|
|
|
73
75
|
# List all sessions
|
|
@@ -82,7 +84,7 @@ spx session pickup --auto
|
|
|
82
84
|
# Release one or more sessions back to the todo queue
|
|
83
85
|
spx session release [id...]
|
|
84
86
|
|
|
85
|
-
# Archive a session
|
|
87
|
+
# Archive a session after adding a non-empty result field to its frontmatter
|
|
86
88
|
spx session archive <session-id>
|
|
87
89
|
|
|
88
90
|
# Show session content
|
|
@@ -97,8 +99,6 @@ spx session delete <session-id>
|
|
|
97
99
|
|
|
98
100
|
Sessions are stored in `.spx/sessions/` with priority-based ordering (high > medium > low) and FIFO within the same priority. Commands output parseable `<PICKUP_ID>`, `<HANDOFF_ID>`, and `<SESSION_FILE>` tags for automation.
|
|
99
101
|
|
|
100
|
-
See [Session Recipes](docs/how-to/session/common-tasks.md) for detailed usage patterns.
|
|
101
|
-
|
|
102
102
|
### Spec Management (deprecated)
|
|
103
103
|
|
|
104
104
|
The `spx spec` and `spx spx` CLI domains are **deprecated**. Spec tree management has moved to the **spec-tree** Claude Code plugin, available at [`outcomeeng/plugins`](https://github.com/outcomeeng/plugins). The plugin provides skills for understanding, authoring, decomposing, contextualizing, testing, refactoring, and aligning specification trees.
|