@quantiya/codevibe-codex-plugin 2.0.51 → 2.0.53
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/node_modules/@quantiya/codevibe-core/dist/index.d.ts +4 -1
- package/node_modules/@quantiya/codevibe-core/dist/index.js +559 -536
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/anchored-fs.d.ts +20 -1
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/bounded-directory.d.ts +1 -14
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/bounded-helper.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/durable-directory.d.ts +0 -4
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/process-tree.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/shadow-protocol.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/shadow-recovery.d.ts +55 -13
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/workspace-authority.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/workspace-shadow.d.ts +3 -2
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.d.ts +55 -3
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +3819 -851
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/components/OrchestrationApp.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/doctor-cli.d.ts +79 -3
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/emit-shell-event.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +4 -2
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/quorum-loop.d.ts +115 -2
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/status-format.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/planner/client.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/planner/composite-adapter.d.ts +39 -0
- package/node_modules/@quantiya/codevibe-core/dist/planner/index.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/index.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/reviewer-credential-preflight.d.ts +26 -0
- package/node_modules/@quantiya/codevibe-core/package.json +2 -2
- package/package.json +3 -3
|
@@ -37,6 +37,8 @@ export * as CredentialBroker from './credential-broker';
|
|
|
37
37
|
export * as SubstrateLaunch from './substrate-launch';
|
|
38
38
|
export * from './types';
|
|
39
39
|
export * as Planner from './planner';
|
|
40
|
+
export { CompositePlannerAdapter, type CompositePlannerAdapterOptions, } from './planner';
|
|
41
|
+
export { assertReviewerVendorCredential, reviewerProviderFor, withReviewerCredentialPreflight, ReviewerCredentialMissingError, assertImplementorVendorCredential, implementorProviderFor, withImplementorCredentialPreflight, ImplementorCredentialMissingError, type ReviewerCredentialStore, } from './substrate-launch';
|
|
40
42
|
export { OllamaGemmaPlannerRunner, type OllamaRuntimeConfig } from './local-model/ollama';
|
|
41
43
|
export * as Continuation from './continuation';
|
|
42
44
|
export * as StructuralSummary from './structural-summary';
|
|
@@ -58,7 +60,8 @@ export { digestOf, stableStringify } from './tool-activity';
|
|
|
58
60
|
export { CONTEXT_SESSION_PSEUDO_TASK_NAMESPACE, deriveSessionPseudoTaskId, auditPartitionTaskIdFor, buildContextItemWireRow, decryptContextItemWireRow, type ContextItem, type ContextItemWireRow, } from './orchestration-shell';
|
|
59
61
|
export type { Mode, Tier, PlannerDecision, AgentKind, PlannerHealthState, OrchestrationState, OrchestrationAction, ConversationEntry, RunningTaskState, ReviewerSeatState, GateState, ExecutionEventEntry, RefusalEventEntry, BypassEventEntry, MobileEventEntry, EventStreamEntry, QueuedTask, PendingClarification, LastModeFile, } from './orchestration-shell';
|
|
60
62
|
export { buildAuditBrowserModel, formatAuditExport, renderAuditBrowserText, renderAuditResultText, runAuditBrowser, type AuditDetailRow, type AuditFilterOptions, type AuditExportFormat, type AuditExportPayload, type AuditBrowserModel, type AuditEntryModel, } from './orchestration-shell';
|
|
61
|
-
export { compileAuditSummary, renderSummaryMarkdown, isTaskCompletionAuditSummary, runAuditSummary, wireTeamMergeAuditSummary, AUDIT_SUMMARY_PRO_MAX_HEADLINE, AUDIT_SUMMARY_UPGRADE_HINT, type TaskAuditSummaryModel, type AuditSeatModel, type AuditFindingModel, type VerificationResultModel, type TaskCompletionOutcome, type UserDecisionRecord, type ReviewHistorySnapshot, type RunAuditSummaryResult, type RunAuditSummaryDeps, QuorumLoop, type QuorumLoopDeps, } from './orchestration-shell';
|
|
63
|
+
export { compileAuditSummary, renderSummaryMarkdown, isTaskCompletionAuditSummary, runAuditSummary, wireTeamMergeAuditSummary, AUDIT_SUMMARY_PRO_MAX_HEADLINE, AUDIT_SUMMARY_UPGRADE_HINT, type TaskAuditSummaryModel, type AuditSeatModel, type AuditFindingModel, type VerificationResultModel, type TaskCompletionOutcome, type UserDecisionRecord, type ReviewHistorySnapshot, type RunAuditSummaryResult, type RunAuditSummaryDeps, QuorumLoop, type QuorumLoopDeps, claimOutageNotificationOnDisk, isOutageNotificationDeliveredOnDisk, markOutageNotificationDeliveredOnDisk, releaseOutageNotificationClaimOnDisk, tryAcquireRecoveryLock, releaseRecoveryLock, cleanArbiterSafely, type RecoveryLockHandle, type RecoveryLockDeps, defaultOutageNotificationRoot, } from './orchestration-shell';
|
|
62
64
|
export { atomicWriteJsonSync, FileDurableTeamDeliveryJournal, RevertManifestStore, wireSnapshotMergeObserver, adaptSnapshotMergeResult, runSnapshotMergeWithObservedCleanup, emitTeamCompletionSummary, runSnapshotMergeGate, createSnapshotTrackBundle, captureWorkspaceRootAuthority, LocalExecutorImpl, WorkspaceShadow, buildImplementorArgv, extractMcpServerConfig, setupAgyWebPlugin, stripAgyWebPlugin, stripClaudeWebArgs, stripCodexWebArgs, enforceCommand, makeImplementorCommandScope, scrubSearchApiKeys, SEARCH_API_KEY_NAMES, type SnapshotTrackBundle, type WorkspaceRootAuthority, type ShadowEnv, type ShadowDiffFile, type LocalExecutorImplDeps, type AtomicWriteOptions, type TeamDeliveryJournalEntry, type TeamDeliveryRouting, type SnapshotCleanupObserver, type WireSnapshotMergeObserverResult, type AdaptedSnapshotMergeResult, type RunSnapshotMergeWithObservedCleanupOptions, type EmitTeamCompletionSummaryOptions, type EmitTeamCompletionSummaryResult, } from './local-executor';
|
|
63
65
|
export { startAgentWebTurn, sweepOrphanedFallbackDirs, formatFetchedContent, sanitizeUrlForAudit, MAX_SEARCHES_PER_TURN, MAX_FETCHES_PER_TURN, MAX_DYNAMIC_FETCH_CHARS, type AgentWebTurnContext, type WebAuditRecord, } from './orchestration-shell/web/agent-web-server';
|
|
64
66
|
export { WebExtractTimeoutError, WebExtractAbortError, htmlToTextWorker, type WorkerExtractOptions, } from './orchestration-shell/web/extract';
|
|
67
|
+
export { runDoctorCli, probeOrphanStatus, probeAgentClis, probeAuthPreflight, probeBackendConnectivity, type DoctorCliOpts, type OrphanPreflightStatus, type AgentCliStatus, type AuthPreflightStatus, type ConnectivityPreflightStatus, type RepairOutcome, } from './orchestration-shell/doctor-cli';
|