@xaccefy/pi-casefile 0.9.3 → 0.10.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 +31 -67
- package/package.json +14 -17
- package/src/confirmation.ts +729 -0
- package/src/evidence.ts +4 -4
- package/src/index.ts +189 -293
- package/src/ledger-internal.ts +321 -0
- package/src/ledger.ts +75 -1142
- package/src/oob-oracle.ts +279 -0
- package/src/poc-runner.ts +10 -0
- package/src/scratchpad.ts +5 -6
- package/src/workflow.ts +46 -327
- package/skills/casefile/SKILL.md +0 -44
- package/src/ledger-worker-entry.ts +0 -35
- package/src/ledger-worker.ts +0 -77
- package/src/pipeline-submit.ts +0 -797
package/src/evidence.ts
CHANGED
|
@@ -387,7 +387,10 @@ export function normalizeEvidence(e: PoCEvidence): string {
|
|
|
387
387
|
|
|
388
388
|
// ── Main-agent confirmation verdict ─────────────────────────────────
|
|
389
389
|
|
|
390
|
-
|
|
390
|
+
// INCONCLUSIVE is the fail-safe verdict: the reviewer could neither reproduce
|
|
391
|
+
// the finding nor positively disprove it. It preserves the case for manual
|
|
392
|
+
// review instead of dropping it. NOT_CONFIRMED means positively disproved.
|
|
393
|
+
export const CONFIRM_VERDICT_VALUES = ["CONFIRMED", "NOT_CONFIRMED", "INCONCLUSIVE"] as const;
|
|
391
394
|
export type ConfirmVerdict = (typeof CONFIRM_VERDICT_VALUES)[number];
|
|
392
395
|
|
|
393
396
|
export const CONFIRM_DIFFERENTIAL_VALUES = [
|
|
@@ -518,6 +521,3 @@ export function validateMainAgentVerdict(
|
|
|
518
521
|
|
|
519
522
|
/** @deprecated Compatibility alias for integrations built before phase 2 became main-agent-only. */
|
|
520
523
|
export type ConfirmerVerdict = MainAgentVerdict;
|
|
521
|
-
|
|
522
|
-
/** @deprecated Use validateMainAgentVerdict. */
|
|
523
|
-
export const validateConfirmerVerdict = validateMainAgentVerdict;
|