@outcomeeng/spx 0.6.16 → 0.6.18
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 +3 -3
- package/dist/cli.js +3969 -3445
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -99,9 +99,9 @@ spx session delete <session-id>
|
|
|
99
99
|
|
|
100
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.
|
|
101
101
|
|
|
102
|
-
### Spec Management
|
|
102
|
+
### Spec Management
|
|
103
103
|
|
|
104
|
-
The `spx spec` and `
|
|
104
|
+
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
105
|
|
|
106
106
|
## Development
|
|
107
107
|
|
|
@@ -235,7 +235,7 @@ src/
|
|
|
235
235
|
├── commands/ # CLI command implementations
|
|
236
236
|
│ ├── session/ # spx session subcommands
|
|
237
237
|
│ ├── validation/ # spx validation subcommands
|
|
238
|
-
│ └── spec/ # spx spec subcommands
|
|
238
|
+
│ └── spec/ # spx spec subcommands
|
|
239
239
|
├── domains/ # Domain routers
|
|
240
240
|
├── validation/ # Lint, typecheck, circular dep logic
|
|
241
241
|
├── session/ # Session lifecycle and storage
|