@outcomeeng/spx 0.6.18 → 0.6.20
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 +14 -0
- package/dist/cli.js +1352 -775
- package/dist/cli.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Developer CLI for code validation and session management.
|
|
4
4
|
|
|
5
|
+
Current release: 0.6.20
|
|
6
|
+
|
|
5
7
|
## What is spx?
|
|
6
8
|
|
|
7
9
|
`spx` is a command-line interface (CLI) tool that provides code validation and session management for projects that implement the spec-as-source methodology named [Outcome Engineering](https://outcome.engineering). The `spx` CLI works hand-in-hand with the **Claude Code** and **Codex** [plugin marketplace for Outcome Engineering](https://github.com/outcomeeng/plugins).
|
|
@@ -103,6 +105,18 @@ Sessions are stored in `.spx/sessions/` with priority-based ordering (high > med
|
|
|
103
105
|
|
|
104
106
|
The `spx spec` CLI provides deterministic inspection and evidence-projection commands such as `status`, `next`, and `context`. Spec authoring and tree-management workflows live in 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.
|
|
105
107
|
|
|
108
|
+
### Release Preparation
|
|
109
|
+
|
|
110
|
+
Prepare release artifacts after updating the package version:
|
|
111
|
+
|
|
112
|
+
```bash
|
|
113
|
+
# Generate release notes from product history
|
|
114
|
+
spx release notes
|
|
115
|
+
|
|
116
|
+
# Update configured release documentation for the current package version
|
|
117
|
+
spx release docs sync
|
|
118
|
+
```
|
|
119
|
+
|
|
106
120
|
## Development
|
|
107
121
|
|
|
108
122
|
### Setup
|