snipara-companion 3.2.17 → 3.2.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 +7 -1
- package/dist/index.js +491 -212
- package/docs/FULL_REFERENCE.md +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -77,7 +77,7 @@ These commands are useful without hosted Snipara:
|
|
|
77
77
|
| `workflow start` / `phase-start` / `phase-commit` / `resume` | Agent continuity that survives compaction |
|
|
78
78
|
| `workflow timeline` / `workflow session` | Append-only local activity log and Session Snapshot V0 |
|
|
79
79
|
| `workflow decisions` / `workflow decide` | Local human decision requests and response receipts |
|
|
80
|
-
| `workflow policy-ledger`
|
|
80
|
+
| `workflow policy-ledger` / `workflow apply-decisions` | Project Policy review ledger and explicit apply pipeline |
|
|
81
81
|
| `run --emit-policy-decisions` | Project Policy review requests in the agent workflow |
|
|
82
82
|
| `workflow producer-triage` | Ask for human review of unreviewed Producer Loop samples |
|
|
83
83
|
| `workflow producer-report` | Local Producer Loop adoption and calibration report |
|
|
@@ -147,6 +147,7 @@ npx -y snipara-companion workflow producer-triage
|
|
|
147
147
|
npx -y snipara-companion workflow decisions
|
|
148
148
|
npx -y snipara-companion workflow policy-ledger
|
|
149
149
|
npx -y snipara-companion workflow decide decision-abc123 --choose accept_all --reviewer alice
|
|
150
|
+
npx -y snipara-companion workflow apply-decisions --dry-run
|
|
150
151
|
npx -y snipara-companion workflow timeline
|
|
151
152
|
npx -y snipara-companion workflow timeline --export md
|
|
152
153
|
npx -y snipara-companion workflow session --json
|
|
@@ -199,6 +200,11 @@ it still uses manual apply instructions and never writes policy automatically.
|
|
|
199
200
|
approved, refused, modified, and deferred Project Policy decision artifacts,
|
|
200
201
|
plus the exact pending requests it should ask the human about. It is read-only
|
|
201
202
|
and does not apply policy edits.
|
|
203
|
+
After the human resolves a request, `workflow apply-decisions --dry-run` previews
|
|
204
|
+
local follow-up actions for resolved Project Policy receipts. Running
|
|
205
|
+
`workflow apply-decisions` writes only idempotent review artifacts such as local
|
|
206
|
+
policy drafts under `.snipara/policies/drafts/`; it does not activate canonical
|
|
207
|
+
Project Policy silently.
|
|
202
208
|
Other producers such as `outcome-capture preview --emit-decisions`,
|
|
203
209
|
`memory reviews --emit-decisions`, `workflow decision-producer memory`, and
|
|
204
210
|
`workflow decision-producer context-risk` emit requests with their existing apply
|