snipara-companion 3.2.25 → 3.2.26
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/CHANGELOG.md +9 -0
- package/README.md +0 -3
- package/docs/FULL_REFERENCE.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
Release notes for `snipara-companion`, newest first.
|
|
4
4
|
|
|
5
|
+
## New In 3.2.26
|
|
6
|
+
|
|
7
|
+
- Fixes the published `context-control plan` examples so they use the real CLI
|
|
8
|
+
contract: `--summary` plus `--output`, without the nonexistent `--operation`
|
|
9
|
+
or `--content` flags or an out-of-scope target.
|
|
10
|
+
- Adds a package-doc regression test that executes the documented command shape
|
|
11
|
+
and rejects the unsupported flags if they return to the README or full
|
|
12
|
+
reference.
|
|
13
|
+
|
|
5
14
|
## New In 3.2.25
|
|
6
15
|
|
|
7
16
|
- Adds `snipara-companion context-control plan` and `apply` for local,
|
package/README.md
CHANGED
|
@@ -103,9 +103,6 @@ plan.
|
|
|
103
103
|
|
|
104
104
|
```bash
|
|
105
105
|
npx -y snipara-companion context-control plan \
|
|
106
|
-
--operation write_file \
|
|
107
|
-
--target demo.json \
|
|
108
|
-
--content '{"ok":true}' \
|
|
109
106
|
--summary "record reviewed context state" \
|
|
110
107
|
--output .snipara/context-control/plans/demo.json
|
|
111
108
|
|
package/docs/FULL_REFERENCE.md
CHANGED
|
@@ -232,7 +232,7 @@ snipara-companion workflow sync-policy-ledger
|
|
|
232
232
|
snipara-companion workflow producer-report
|
|
233
233
|
snipara-companion workflow producer-review --latest --outcome useful --reviewer alice
|
|
234
234
|
snipara-companion workflow run --adaptive-routing-dry-run --route-local-workers "document a scoped change"
|
|
235
|
-
snipara-companion context-control plan --
|
|
235
|
+
snipara-companion context-control plan --summary "record reviewed context state" --output .snipara/context-control/plans/demo.json
|
|
236
236
|
snipara-companion context-control apply --plan .snipara/context-control/plans/demo.json
|
|
237
237
|
snipara-companion context-control drift
|
|
238
238
|
snipara-companion context-control validate --manifest snipara.project-context.json
|