snipara-companion 3.2.10 → 3.2.11
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/dist/index.d.ts +8 -1
- package/dist/index.js +522 -122
- package/docs/FULL_REFERENCE.md +39 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { ProjectIntentDetectionResult, ProjectPolicyDecision, ProjectRealityCheckResult, ProjectIntelligenceEngineeringLeadPlanSummary, ProjectPolicyRule } from '@snipara/project-intelligence-contracts';
|
|
2
|
+
import { ProjectIntentDetectionResult, ProjectPolicyDecision, ProjectRealityCheckResult, ProjectIntelligenceEngineeringLeadPlanSummary, ProjectPolicyRule, OutcomeIntelligenceCalibration } from '@snipara/project-intelligence-contracts';
|
|
3
3
|
|
|
4
4
|
declare function resolveQueryFromToolInput(toolInput?: string, tool?: string): string | null;
|
|
5
5
|
|
|
@@ -2462,6 +2462,7 @@ interface ProjectRunCommandOptions {
|
|
|
2462
2462
|
skipPackageReview?: boolean;
|
|
2463
2463
|
servedJudgmentId?: string;
|
|
2464
2464
|
skipAdvisorReceipts?: boolean;
|
|
2465
|
+
outcomeReceiptFiles?: string[];
|
|
2465
2466
|
json?: boolean;
|
|
2466
2467
|
}
|
|
2467
2468
|
interface ProjectRunGuardResult {
|
|
@@ -2509,6 +2510,7 @@ interface ProjectIntelligenceRunResult {
|
|
|
2509
2510
|
packageReview?: ProjectRunPackageReview;
|
|
2510
2511
|
policyGates: ProjectPolicyGatesResult;
|
|
2511
2512
|
advisorReceiptCapture?: ProjectRunAdvisorReceiptCapture;
|
|
2513
|
+
outcomeCalibration?: OutcomeIntelligenceCalibration;
|
|
2512
2514
|
judgmentCard: ProjectIntelligenceJudgmentCard;
|
|
2513
2515
|
suggestedCommands: string[];
|
|
2514
2516
|
}
|
|
@@ -2595,6 +2597,11 @@ interface OutcomeCapturePreviewCommandOptions {
|
|
|
2595
2597
|
feedback?: string;
|
|
2596
2598
|
maxCandidates?: string;
|
|
2597
2599
|
emitDecisions?: boolean;
|
|
2600
|
+
emitOutcomeReceipt?: boolean;
|
|
2601
|
+
taskKind?: string;
|
|
2602
|
+
risk?: string;
|
|
2603
|
+
surface?: string[];
|
|
2604
|
+
workflowFingerprint?: string;
|
|
2598
2605
|
json?: boolean;
|
|
2599
2606
|
}
|
|
2600
2607
|
declare function buildWhyOutcomeCaptureReport(options: WhyOutcomeCaptureOptions): WhyOutcomeCaptureReport;
|