snipara-companion 2.0.9 → 2.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 +2 -1
- package/dist/index.d.ts +250 -1
- package/dist/index.js +1706 -479
- package/docs/FULL_REFERENCE.md +92 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,7 +44,7 @@ These commands are useful without hosted Snipara:
|
|
|
44
44
|
| `code callers` / `imports` / `neighbors` / `shortest-path` | Structural repo questions from local files |
|
|
45
45
|
| `workflow start` / `phase-start` / `phase-commit` / `resume` | Agent continuity that survives compaction |
|
|
46
46
|
| `context-pack` | Reversible local packs for long logs, diffs, and tool output |
|
|
47
|
-
| `judgment-card`, `verify`, `
|
|
47
|
+
| `judgment-card`, `verify`, `lead-plan`, `agent-readiness` | Local review artifacts and delegation contracts |
|
|
48
48
|
| `stuck-guard`, `memory-guard`, `pre-tool`, `post-tool` | Fail-soft local guards and hook helpers |
|
|
49
49
|
|
|
50
50
|
## Agent Continuity
|
|
@@ -54,6 +54,7 @@ After the first impact check, keep the work resumable:
|
|
|
54
54
|
```bash
|
|
55
55
|
npx -y snipara-companion workflow start --goal "ship auth hardening"
|
|
56
56
|
npx -y snipara-companion workflow phase-start audit
|
|
57
|
+
npx -y snipara-companion lead-plan --task "ship auth hardening" --changed-files src/auth/session.ts --proof "pnpm test auth" --acceptance "auth tests pass"
|
|
57
58
|
npx -y snipara-companion workflow phase-commit audit --summary "mapped auth impact"
|
|
58
59
|
npx -y snipara-companion handoff --summary "auth impact mapped" --next "run auth tests"
|
|
59
60
|
```
|
package/dist/index.d.ts
CHANGED
|
@@ -2045,6 +2045,215 @@ declare function memoryLocalCommand(options: LocalMemoryCommandOptions): Promise
|
|
|
2045
2045
|
declare function evalExportCommand(options: EvalExportOptions): Promise<void>;
|
|
2046
2046
|
declare function evalRunCommand(options: EvalRunOptions): Promise<void>;
|
|
2047
2047
|
|
|
2048
|
+
type AgentReadinessTarget = "codex" | "claude-code" | "cursor" | "orca" | "windsurf" | "custom";
|
|
2049
|
+
type AgentReadinessCheckStatus = "pass" | "warning" | "fail" | "manual";
|
|
2050
|
+
type AgentReadinessGapSeverity = "low" | "medium" | "high" | "blocker";
|
|
2051
|
+
type AgentReadinessScoreBand = "ready" | "mostly_ready" | "needs_hardening" | "blocked";
|
|
2052
|
+
type AgentReadinessServiceTier = "launch_review" | "enablement_pack" | "hardening_sprint";
|
|
2053
|
+
interface AgentReadinessAuditCommandOptions {
|
|
2054
|
+
target?: string;
|
|
2055
|
+
task?: string;
|
|
2056
|
+
changedFiles?: string[];
|
|
2057
|
+
context?: string[];
|
|
2058
|
+
proof?: string[];
|
|
2059
|
+
acceptance?: string[];
|
|
2060
|
+
risk?: string[];
|
|
2061
|
+
dir?: string;
|
|
2062
|
+
output?: string;
|
|
2063
|
+
json?: boolean;
|
|
2064
|
+
}
|
|
2065
|
+
interface AgentReadinessWorkflowState {
|
|
2066
|
+
present: boolean;
|
|
2067
|
+
path: string;
|
|
2068
|
+
status?: string;
|
|
2069
|
+
workflowId?: string;
|
|
2070
|
+
currentPhaseId?: string;
|
|
2071
|
+
completedPhases: number;
|
|
2072
|
+
pendingPhases: number;
|
|
2073
|
+
}
|
|
2074
|
+
interface AgentReadinessTeamSyncState {
|
|
2075
|
+
present: boolean;
|
|
2076
|
+
path: string;
|
|
2077
|
+
activeWorkCount: number;
|
|
2078
|
+
handoffCount: number;
|
|
2079
|
+
latestActiveSummary?: string;
|
|
2080
|
+
latestHandoffSummary?: string;
|
|
2081
|
+
}
|
|
2082
|
+
interface AgentReadinessProjectInstructions {
|
|
2083
|
+
present: boolean;
|
|
2084
|
+
path: string;
|
|
2085
|
+
}
|
|
2086
|
+
interface AgentReadinessLocalSignals {
|
|
2087
|
+
workflow: AgentReadinessWorkflowState;
|
|
2088
|
+
teamSync: AgentReadinessTeamSyncState;
|
|
2089
|
+
projectInstructions: AgentReadinessProjectInstructions;
|
|
2090
|
+
}
|
|
2091
|
+
interface AgentReadinessCheck {
|
|
2092
|
+
id: string;
|
|
2093
|
+
title: string;
|
|
2094
|
+
status: AgentReadinessCheckStatus;
|
|
2095
|
+
severity: AgentReadinessGapSeverity;
|
|
2096
|
+
score: number;
|
|
2097
|
+
maxScore: number;
|
|
2098
|
+
evidence: string[];
|
|
2099
|
+
action: string;
|
|
2100
|
+
}
|
|
2101
|
+
interface AgentReadinessGap {
|
|
2102
|
+
checkId: string;
|
|
2103
|
+
severity: AgentReadinessGapSeverity;
|
|
2104
|
+
message: string;
|
|
2105
|
+
action: string;
|
|
2106
|
+
}
|
|
2107
|
+
interface AgentReadinessRecommendedServicePack {
|
|
2108
|
+
id: AgentReadinessServiceTier;
|
|
2109
|
+
name: string;
|
|
2110
|
+
duration: string;
|
|
2111
|
+
fit: string;
|
|
2112
|
+
deliverables: string[];
|
|
2113
|
+
exitCriteria: string[];
|
|
2114
|
+
}
|
|
2115
|
+
interface AgentReadinessAuditReport {
|
|
2116
|
+
version: "snipara.agent_readiness_audit.v1";
|
|
2117
|
+
generatedAt: string;
|
|
2118
|
+
target: {
|
|
2119
|
+
id: AgentReadinessTarget;
|
|
2120
|
+
label: string;
|
|
2121
|
+
posture: string;
|
|
2122
|
+
};
|
|
2123
|
+
task?: string;
|
|
2124
|
+
score: {
|
|
2125
|
+
total: number;
|
|
2126
|
+
band: AgentReadinessScoreBand;
|
|
2127
|
+
max: 100;
|
|
2128
|
+
summary: string;
|
|
2129
|
+
};
|
|
2130
|
+
checks: AgentReadinessCheck[];
|
|
2131
|
+
gaps: AgentReadinessGap[];
|
|
2132
|
+
explicitInputs: {
|
|
2133
|
+
changedFiles: string[];
|
|
2134
|
+
contextRefs: string[];
|
|
2135
|
+
proofGates: string[];
|
|
2136
|
+
acceptanceCriteria: string[];
|
|
2137
|
+
declaredRisks: string[];
|
|
2138
|
+
};
|
|
2139
|
+
localSignals: AgentReadinessLocalSignals;
|
|
2140
|
+
recommendedServicePack: AgentReadinessRecommendedServicePack;
|
|
2141
|
+
suggestedCommands: string[];
|
|
2142
|
+
caveats: string[];
|
|
2143
|
+
}
|
|
2144
|
+
interface BuildAgentReadinessAuditOptions extends AgentReadinessAuditCommandOptions {
|
|
2145
|
+
cwd?: string;
|
|
2146
|
+
now?: Date;
|
|
2147
|
+
localSignals?: AgentReadinessLocalSignals;
|
|
2148
|
+
}
|
|
2149
|
+
declare function collectAgentReadinessLocalSignals(rootDir?: string): AgentReadinessLocalSignals;
|
|
2150
|
+
declare function buildAgentReadinessAuditReport(options?: BuildAgentReadinessAuditOptions): AgentReadinessAuditReport;
|
|
2151
|
+
declare function formatAgentReadinessAuditReport(report: AgentReadinessAuditReport): string;
|
|
2152
|
+
declare function agentReadinessAuditCommand(options: AgentReadinessAuditCommandOptions): Promise<void>;
|
|
2153
|
+
|
|
2154
|
+
type EngineeringLeadPosture = "lead_ready" | "lead_watch" | "lead_blocked" | "lead_cold_start";
|
|
2155
|
+
type EngineeringLeadStatus = "healthy" | "watch" | "risk" | "unknown";
|
|
2156
|
+
type EngineeringLeadWorkerRole = "main_agent" | "coding_worker" | "test_worker" | "reviewer" | "documentation_worker" | "human_approver";
|
|
2157
|
+
type EngineeringLeadRoutingMode = "hold" | "main_agent_execute" | "explicit_handoff_ready" | "needs_contract";
|
|
2158
|
+
interface EngineeringLeadEvidenceRef {
|
|
2159
|
+
id: string;
|
|
2160
|
+
kind: "memory" | "project_decision" | "shadow_signal" | "context_graph" | "outcome_signal" | "retrieval_event" | "workflow" | "repository" | "manual";
|
|
2161
|
+
label: string;
|
|
2162
|
+
sourceRef?: string | null;
|
|
2163
|
+
strength?: number | null;
|
|
2164
|
+
reviewStatus?: string | null;
|
|
2165
|
+
authorityStatus?: string | null;
|
|
2166
|
+
freshness?: string | null;
|
|
2167
|
+
}
|
|
2168
|
+
interface EngineeringLeadWorkerContract {
|
|
2169
|
+
writeScope: string[];
|
|
2170
|
+
contextRefs: EngineeringLeadEvidenceRef[];
|
|
2171
|
+
acceptanceCriteria: string[];
|
|
2172
|
+
proofRequired: string[];
|
|
2173
|
+
approvalRequired: boolean;
|
|
2174
|
+
fallback: "main_agent";
|
|
2175
|
+
}
|
|
2176
|
+
interface EngineeringLeadWorkerRecommendation {
|
|
2177
|
+
id: string;
|
|
2178
|
+
role: EngineeringLeadWorkerRole;
|
|
2179
|
+
label: string;
|
|
2180
|
+
status: EngineeringLeadStatus;
|
|
2181
|
+
routingMode: EngineeringLeadRoutingMode;
|
|
2182
|
+
workPackageId: string | null;
|
|
2183
|
+
workPackageTitle: string | null;
|
|
2184
|
+
owner: string | null;
|
|
2185
|
+
rationale: string;
|
|
2186
|
+
contract: EngineeringLeadWorkerContract;
|
|
2187
|
+
proofGates: string[];
|
|
2188
|
+
brainUpdateCandidates: string[];
|
|
2189
|
+
evidence: EngineeringLeadEvidenceRef[];
|
|
2190
|
+
reasonCodes: string[];
|
|
2191
|
+
}
|
|
2192
|
+
interface EngineeringLeadPlanSummary {
|
|
2193
|
+
version: "project-intelligence-engineering-lead-plan-v0";
|
|
2194
|
+
posture: EngineeringLeadPosture;
|
|
2195
|
+
status: EngineeringLeadStatus;
|
|
2196
|
+
score: number;
|
|
2197
|
+
headline: string;
|
|
2198
|
+
operatingMode: "advisory_fail_closed";
|
|
2199
|
+
nextAction: string;
|
|
2200
|
+
workersSpawned: 0;
|
|
2201
|
+
failClosedFallback: "main_agent";
|
|
2202
|
+
workerRecommendations: EngineeringLeadWorkerRecommendation[];
|
|
2203
|
+
proofGates: string[];
|
|
2204
|
+
brainUpdateActions: string[];
|
|
2205
|
+
metrics: Array<{
|
|
2206
|
+
label: string;
|
|
2207
|
+
value: string | number;
|
|
2208
|
+
}>;
|
|
2209
|
+
evidence: EngineeringLeadEvidenceRef[];
|
|
2210
|
+
caveats: string[];
|
|
2211
|
+
reasonCodes: string[];
|
|
2212
|
+
}
|
|
2213
|
+
interface CompanionEngineeringLeadPlanReport {
|
|
2214
|
+
version: "snipara.companion_engineering_lead_plan.v1";
|
|
2215
|
+
generatedAt: string;
|
|
2216
|
+
source: "local_companion_inputs" | "project_health_cockpit";
|
|
2217
|
+
target: {
|
|
2218
|
+
id: AgentReadinessTarget;
|
|
2219
|
+
label: string;
|
|
2220
|
+
};
|
|
2221
|
+
task?: string;
|
|
2222
|
+
engineeringLeadPlan: EngineeringLeadPlanSummary;
|
|
2223
|
+
explicitInputs: {
|
|
2224
|
+
changedFiles: string[];
|
|
2225
|
+
contextRefs: string[];
|
|
2226
|
+
proofGates: string[];
|
|
2227
|
+
acceptanceCriteria: string[];
|
|
2228
|
+
declaredRisks: string[];
|
|
2229
|
+
};
|
|
2230
|
+
localSignals: AgentReadinessLocalSignals;
|
|
2231
|
+
suggestedCommands: string[];
|
|
2232
|
+
caveats: string[];
|
|
2233
|
+
}
|
|
2234
|
+
interface LeadPlanCommandOptions {
|
|
2235
|
+
task?: string;
|
|
2236
|
+
target?: string;
|
|
2237
|
+
changedFiles?: string[];
|
|
2238
|
+
context?: string[];
|
|
2239
|
+
proof?: string[];
|
|
2240
|
+
acceptance?: string[];
|
|
2241
|
+
risk?: string[];
|
|
2242
|
+
fromCockpit?: string;
|
|
2243
|
+
dir?: string;
|
|
2244
|
+
output?: string;
|
|
2245
|
+
json?: boolean;
|
|
2246
|
+
}
|
|
2247
|
+
interface BuildCompanionEngineeringLeadPlanOptions extends LeadPlanCommandOptions {
|
|
2248
|
+
cwd?: string;
|
|
2249
|
+
now?: Date;
|
|
2250
|
+
localSignals?: AgentReadinessLocalSignals;
|
|
2251
|
+
cockpit?: Record<string, unknown>;
|
|
2252
|
+
}
|
|
2253
|
+
declare function buildCompanionEngineeringLeadPlanReport(options?: BuildCompanionEngineeringLeadPlanOptions): CompanionEngineeringLeadPlanReport;
|
|
2254
|
+
declare function formatCompanionEngineeringLeadPlanReport(report: CompanionEngineeringLeadPlanReport): string;
|
|
2255
|
+
declare function leadPlanCommand(options: LeadPlanCommandOptions): Promise<void>;
|
|
2256
|
+
|
|
2048
2257
|
type ProjectPolicyGateSeverity = "advisory" | "required_action" | "block";
|
|
2049
2258
|
type ProjectPolicyGateSurface = "release" | "schema" | "auth" | "billing" | "deploy" | "package_surface";
|
|
2050
2259
|
type ProjectPolicyGateSampleMode = "not_applicable" | "structural" | "explicit_contract" | "sample_gated";
|
|
@@ -2835,6 +3044,12 @@ interface TeamSyncCommandOptions {
|
|
|
2835
3044
|
next?: string;
|
|
2836
3045
|
attention?: string;
|
|
2837
3046
|
risk?: string;
|
|
3047
|
+
adapterPack?: boolean;
|
|
3048
|
+
adapterTarget?: string;
|
|
3049
|
+
context?: string[];
|
|
3050
|
+
proof?: string[];
|
|
3051
|
+
acceptance?: string[];
|
|
3052
|
+
conflictPosture?: string;
|
|
2838
3053
|
since?: string;
|
|
2839
3054
|
dir?: string;
|
|
2840
3055
|
includeSessionContext?: boolean;
|
|
@@ -2861,6 +3076,39 @@ interface TeamSyncSweepResult {
|
|
|
2861
3076
|
archivedWork: TeamSyncWorkRecord[];
|
|
2862
3077
|
summary: TeamSyncSummary;
|
|
2863
3078
|
}
|
|
3079
|
+
type AgenticHandoffAdapterTarget = "codex" | "claude-code" | "cursor" | "orca" | "windsurf" | "custom";
|
|
3080
|
+
type AgenticHandoffConflictPosture = "continue" | "wait" | "split_work" | "review_only" | "handoff";
|
|
3081
|
+
interface AgenticHandoffAdapterPack {
|
|
3082
|
+
version: "snipara.ade_adapter_pack.v1";
|
|
3083
|
+
target: {
|
|
3084
|
+
id: AgenticHandoffAdapterTarget;
|
|
3085
|
+
label: string;
|
|
3086
|
+
instruction: string;
|
|
3087
|
+
};
|
|
3088
|
+
contextPack: {
|
|
3089
|
+
summary: string;
|
|
3090
|
+
files: string[];
|
|
3091
|
+
contextRefs: string[];
|
|
3092
|
+
workflow?: {
|
|
3093
|
+
goal?: string;
|
|
3094
|
+
status?: string;
|
|
3095
|
+
currentPhaseId?: string;
|
|
3096
|
+
currentPhaseTitle?: string;
|
|
3097
|
+
};
|
|
3098
|
+
resumeCommands: string[];
|
|
3099
|
+
constraints: string[];
|
|
3100
|
+
};
|
|
3101
|
+
conflictPosture: AgenticHandoffConflictPosture;
|
|
3102
|
+
proofGates: string[];
|
|
3103
|
+
acceptanceCriteria: string[];
|
|
3104
|
+
receiptExpectation: {
|
|
3105
|
+
required: boolean;
|
|
3106
|
+
command: string;
|
|
3107
|
+
requiredFields: string[];
|
|
3108
|
+
};
|
|
3109
|
+
prompt: string;
|
|
3110
|
+
caveats: string[];
|
|
3111
|
+
}
|
|
2864
3112
|
interface TeamSyncCompletionEvidenceOptions {
|
|
2865
3113
|
summary?: string;
|
|
2866
3114
|
workflowGoal?: string;
|
|
@@ -2888,6 +3136,7 @@ interface AgenticHandoffArtifact {
|
|
|
2888
3136
|
whereToResume: string[];
|
|
2889
3137
|
};
|
|
2890
3138
|
suggestedCommands: string[];
|
|
3139
|
+
adapter?: AgenticHandoffAdapterPack;
|
|
2891
3140
|
}
|
|
2892
3141
|
declare function buildTeamSyncStartWorkRecord(input: TeamSyncRecordInput): TeamSyncWorkRecord;
|
|
2893
3142
|
declare function buildTeamSyncHandoffRecord(input: TeamSyncRecordInput): TeamSyncHandoffRecord;
|
|
@@ -3308,4 +3557,4 @@ declare function buildOrchestratorHandoff(options: OrchestratorHandoffOptions):
|
|
|
3308
3557
|
declare function buildAdaptiveWorkRoutingRecommendation(options: AdaptiveWorkRoutingOptions): AdaptiveWorkRoutingRecommendation;
|
|
3309
3558
|
declare function writeOrchestratorHandoff(options: OrchestratorHandoffOptions): WrittenOrchestratorHandoff;
|
|
3310
3559
|
|
|
3311
|
-
export { AUTOMATION_MANIFEST_RELATIVE_PATH, AutomationInstallConflictError, AutomationUnsupportedHookBundleError, COLLABORATION_STATE_RELATIVE_PATH, ORCHESTRATOR_HANDOFF_RELATIVE_PATH, TEAM_SYNC_STATE_RELATIVE_PATH, WORKFLOW_PLANS_RELATIVE_DIR, WORKFLOW_STATE_RELATIVE_PATH, archiveInactiveTeamSyncWork, attachLocalContextPackReceipts, autoArchiveTeamSyncState, buildAdaptiveWorkRoutingRecommendation, buildAgenticHandoffMarkdown, buildAgenticTimeline, buildAgenticWorkStatus, buildAutomationInstallPlan, buildCanonicalEvent, buildCodeHooksInstallPlan, buildCodePromotionResult, buildCodeStatusResult, buildCodeSyncResult, buildCollaborationActor, buildCollaborationGuardActionCards, buildCollaborationHooksInstallPlan, buildContextPackStats, buildEvalCaseArtifact, buildGeneratedWorkflowPlanDocument, buildHostedCodeOverlayUploadPayload, buildHostedGuardPayload, buildJournalCheckpointEntry, buildLocalCallersResult, buildLocalCodeOverlay, buildLocalContextPackReceipt, buildLocalContextPackReceipts, buildLocalImpactResult, buildLocalImportsResult, buildLocalNeighborsResult, buildLocalShortestPathResult, buildMemoryAudit, buildOnboardFolderManifest, buildOrchestratorHandoff, buildProjectIntelligenceBrief, buildProjectIntelligenceRun, buildProjectJudgmentCard, buildSessionBootstrapQuality, buildSyncDocumentsDryRun, buildTeamSyncHandoffRecord, buildTeamSyncStartWorkRecord, buildTeamSyncSummary, buildToolCallPayload, buildToolResultPayload, buildVerificationPlan, buildWorkflowImpactGate, buildWorkflowPhaseCommitSummary, buildWorkflowPlanScaffold, categoryFromGuardTag, classifyToolResult, cleanContextPacks, collaborationIdeStatusCommand, collectSyncDocuments, collectSyncDocumentsInput, compactHostedGuardResources, completeTeamSyncStateFromEvidence, completeTeamSyncWorkFromEvidence, contextPackCleanCommand, contextPackPackCommand, contextPackRetrieveCommand, contextPackStatsCommand, createClient, createEmptyCollaborationState, createEmptyTeamSyncState, createLocalQueryCache, deriveLocalCollaborationResourcesFromFiles, detectReleaseSurfacesFromFiles, detectRuntimeEnvironment, evalExportCommand, evalRunCommand, evaluateProjectPolicyGates, extractCommandFromToolInput, extractFilesFromToolInput, formatOrchestratorRecommendationReason, formatPolicyGateDecision, formatProjectJudgmentCard, formatStuckGuardDecision, getAutomationManifestPath, getAutomationStatus, getCollaborationStatePath, getConfigPath, getContextPackStoragePaths, getLocalCodeOverlayCachePath, getLocalCodePromotionStatePath, getOrchestratorRecommendation, getPlanStepDisplayTitle, getStagedFiles, getStuckGuardInjection, getTeamSyncStatePath, ingestReferences, installAutomationBundle, listProjectsForApiKey, loadAutomationManifest, loadCollaborationState, loadConfig, loadTeamSyncState, memoryAuditCommand, memoryCleanCandidatesCommand, memoryCompactCommand, memoryHealthCommand, memoryLocalCommand, normalizeCollaborationFiles, normalizeGuardTag, normalizeWorkflowPlanInput, packContext, parseCollaborationResources, projectIntelligenceBriefCommand, projectIntelligenceRunCommand, readLocalCodeOverlayCache, readLocalCodePromotionState, referencesIngestCommand, referencesScanCommand, resolveContextPackRecord, resolveFullWorkflowTokenBudget, resolveQueryFromToolInput, retrieveContextPack, runMemoryGuardCheck, saveCollaborationState, saveConfig, saveTeamSyncState, scanReferences, shouldSuggestOrchestratorForWorkflow, shouldSuggestRuntimeForWorkflow, summarizeLocalCodeOverlay, teamSyncSweepCommand, validatePlanResult, verifyCommand, writeLocalCodeOverlayCache, writeLocalCodePromotionState, writeOrchestratorHandoff };
|
|
3560
|
+
export { AUTOMATION_MANIFEST_RELATIVE_PATH, AutomationInstallConflictError, AutomationUnsupportedHookBundleError, COLLABORATION_STATE_RELATIVE_PATH, ORCHESTRATOR_HANDOFF_RELATIVE_PATH, TEAM_SYNC_STATE_RELATIVE_PATH, WORKFLOW_PLANS_RELATIVE_DIR, WORKFLOW_STATE_RELATIVE_PATH, agentReadinessAuditCommand, archiveInactiveTeamSyncWork, attachLocalContextPackReceipts, autoArchiveTeamSyncState, buildAdaptiveWorkRoutingRecommendation, buildAgentReadinessAuditReport, buildAgenticHandoffMarkdown, buildAgenticTimeline, buildAgenticWorkStatus, buildAutomationInstallPlan, buildCanonicalEvent, buildCodeHooksInstallPlan, buildCodePromotionResult, buildCodeStatusResult, buildCodeSyncResult, buildCollaborationActor, buildCollaborationGuardActionCards, buildCollaborationHooksInstallPlan, buildCompanionEngineeringLeadPlanReport, buildContextPackStats, buildEvalCaseArtifact, buildGeneratedWorkflowPlanDocument, buildHostedCodeOverlayUploadPayload, buildHostedGuardPayload, buildJournalCheckpointEntry, buildLocalCallersResult, buildLocalCodeOverlay, buildLocalContextPackReceipt, buildLocalContextPackReceipts, buildLocalImpactResult, buildLocalImportsResult, buildLocalNeighborsResult, buildLocalShortestPathResult, buildMemoryAudit, buildOnboardFolderManifest, buildOrchestratorHandoff, buildProjectIntelligenceBrief, buildProjectIntelligenceRun, buildProjectJudgmentCard, buildSessionBootstrapQuality, buildSyncDocumentsDryRun, buildTeamSyncHandoffRecord, buildTeamSyncStartWorkRecord, buildTeamSyncSummary, buildToolCallPayload, buildToolResultPayload, buildVerificationPlan, buildWorkflowImpactGate, buildWorkflowPhaseCommitSummary, buildWorkflowPlanScaffold, categoryFromGuardTag, classifyToolResult, cleanContextPacks, collaborationIdeStatusCommand, collectAgentReadinessLocalSignals, collectSyncDocuments, collectSyncDocumentsInput, compactHostedGuardResources, completeTeamSyncStateFromEvidence, completeTeamSyncWorkFromEvidence, contextPackCleanCommand, contextPackPackCommand, contextPackRetrieveCommand, contextPackStatsCommand, createClient, createEmptyCollaborationState, createEmptyTeamSyncState, createLocalQueryCache, deriveLocalCollaborationResourcesFromFiles, detectReleaseSurfacesFromFiles, detectRuntimeEnvironment, evalExportCommand, evalRunCommand, evaluateProjectPolicyGates, extractCommandFromToolInput, extractFilesFromToolInput, formatAgentReadinessAuditReport, formatCompanionEngineeringLeadPlanReport, formatOrchestratorRecommendationReason, formatPolicyGateDecision, formatProjectJudgmentCard, formatStuckGuardDecision, getAutomationManifestPath, getAutomationStatus, getCollaborationStatePath, getConfigPath, getContextPackStoragePaths, getLocalCodeOverlayCachePath, getLocalCodePromotionStatePath, getOrchestratorRecommendation, getPlanStepDisplayTitle, getStagedFiles, getStuckGuardInjection, getTeamSyncStatePath, ingestReferences, installAutomationBundle, leadPlanCommand, listProjectsForApiKey, loadAutomationManifest, loadCollaborationState, loadConfig, loadTeamSyncState, memoryAuditCommand, memoryCleanCandidatesCommand, memoryCompactCommand, memoryHealthCommand, memoryLocalCommand, normalizeCollaborationFiles, normalizeGuardTag, normalizeWorkflowPlanInput, packContext, parseCollaborationResources, projectIntelligenceBriefCommand, projectIntelligenceRunCommand, readLocalCodeOverlayCache, readLocalCodePromotionState, referencesIngestCommand, referencesScanCommand, resolveContextPackRecord, resolveFullWorkflowTokenBudget, resolveQueryFromToolInput, retrieveContextPack, runMemoryGuardCheck, saveCollaborationState, saveConfig, saveTeamSyncState, scanReferences, shouldSuggestOrchestratorForWorkflow, shouldSuggestRuntimeForWorkflow, summarizeLocalCodeOverlay, teamSyncSweepCommand, validatePlanResult, verifyCommand, writeLocalCodeOverlayCache, writeLocalCodePromotionState, writeOrchestratorHandoff };
|