snipara-companion 3.0.14 → 3.1.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 +14 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +10234 -9626
- package/docs/FULL_REFERENCE.md +22 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,6 +46,8 @@ These commands are useful without hosted Snipara:
|
|
|
46
46
|
| `reality-check` | Intent Ledger, Unknown Registry, and verification checks |
|
|
47
47
|
| `code callers` / `imports` / `neighbors` / `shortest-path` | Structural repo questions from local files |
|
|
48
48
|
| `workflow start` / `phase-start` / `phase-commit` / `resume` | Agent continuity that survives compaction |
|
|
49
|
+
| `workflow decisions` / `workflow decide` | Local human decision requests and response receipts |
|
|
50
|
+
| `workflow producer-triage` | Ask for human review of unreviewed Producer Loop samples |
|
|
49
51
|
| `workflow producer-report` | Local Producer Loop adoption and calibration report |
|
|
50
52
|
| `workflow producer-review` | Mark local Producer Loop samples reviewed or rejected |
|
|
51
53
|
| `context-pack` | Reversible local packs for long logs, diffs, and tool output |
|
|
@@ -64,6 +66,9 @@ npx -y snipara-companion lead-plan --task "ship auth hardening" --changed-files
|
|
|
64
66
|
npx -y snipara-companion lead-plan --from-plan ./project-health-lead-plan.json --reconcile --changed-files src/auth/session.ts
|
|
65
67
|
npx -y snipara-companion lead-plan --from-plan ./project-health-lead-plan.json --json | jq '.engineeringLeadPlan.executionReceipts'
|
|
66
68
|
npx -y snipara-companion workflow phase-commit audit --summary "mapped auth impact"
|
|
69
|
+
npx -y snipara-companion workflow producer-triage
|
|
70
|
+
npx -y snipara-companion workflow decisions
|
|
71
|
+
npx -y snipara-companion workflow decide decision-abc123 --choose accept_all --reviewer alice
|
|
67
72
|
npx -y snipara-companion workflow producer-report
|
|
68
73
|
npx -y snipara-companion workflow producer-review --latest --outcome useful --reviewer alice
|
|
69
74
|
npx -y snipara-companion handoff --summary "auth impact mapped" --next "run auth tests"
|
|
@@ -86,6 +91,15 @@ more than the workflow producer once those artifacts are present locally.
|
|
|
86
91
|
Use `workflow producer-review --artifact <path|file|artifactId>` or
|
|
87
92
|
`workflow producer-review --latest` after auditing embedded evidence to move a
|
|
88
93
|
sample from `sample_unreviewed` to `sample_reviewed` or `sample_rejected`.
|
|
94
|
+
For conversational human review, run `workflow producer-triage` to create a
|
|
95
|
+
batched Decision Request V0 artifact, `workflow decisions --json` to give the
|
|
96
|
+
LLM client the exact question/evidence/options to ask, and `workflow decide`
|
|
97
|
+
only after the human answers. Decision requests never resolve by timeout or
|
|
98
|
+
default, and only `workflow decide` applies the existing `producer-review` path.
|
|
99
|
+
Other producers such as `outcome-capture preview --emit-decisions`,
|
|
100
|
+
`workflow decision-producer memory`, and `workflow decision-producer context-risk`
|
|
101
|
+
emit requests with their existing apply paths declared; they do not write
|
|
102
|
+
canonical memory directly.
|
|
89
103
|
|
|
90
104
|
## Local First, Hosted When Useful
|
|
91
105
|
|
package/dist/index.d.ts
CHANGED
|
@@ -2462,6 +2462,7 @@ interface OutcomeCapturePreviewCommandOptions {
|
|
|
2462
2462
|
reason?: string[];
|
|
2463
2463
|
feedback?: string;
|
|
2464
2464
|
maxCandidates?: string;
|
|
2465
|
+
emitDecisions?: boolean;
|
|
2465
2466
|
json?: boolean;
|
|
2466
2467
|
}
|
|
2467
2468
|
declare function buildWhyOutcomeCaptureReport(options: WhyOutcomeCaptureOptions): WhyOutcomeCaptureReport;
|