@swarmvaultai/engine 1.0.1 → 1.2.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/LICENSE +21 -0
- package/README.md +3 -2
- package/dist/chunk-UQCF65BN.js +1623 -0
- package/dist/hooks/claude.js +0 -0
- package/dist/hooks/copilot.js +0 -0
- package/dist/hooks/gemini.js +0 -0
- package/dist/index.d.ts +185 -1
- package/dist/index.js +522 -91
- package/dist/registry-GH4O3A7H.js +12 -0
- package/dist/viewer/assets/{index-TXBR63qb.js → index-DwLzGcBF.js} +1 -1
- package/dist/viewer/index.html +1 -1
- package/package.json +8 -9
package/dist/hooks/claude.js
CHANGED
|
File without changes
|
package/dist/hooks/copilot.js
CHANGED
|
File without changes
|
package/dist/hooks/gemini.js
CHANGED
|
File without changes
|
package/dist/index.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ declare const providerTypeSchema: z.ZodEnum<{
|
|
|
27
27
|
together: "together";
|
|
28
28
|
xai: "xai";
|
|
29
29
|
cerebras: "cerebras";
|
|
30
|
+
"local-whisper": "local-whisper";
|
|
30
31
|
custom: "custom";
|
|
31
32
|
}>;
|
|
32
33
|
type ProviderType = z.infer<typeof providerTypeSchema>;
|
|
@@ -161,6 +162,14 @@ interface ProviderConfig {
|
|
|
161
162
|
module?: string;
|
|
162
163
|
capabilities?: ProviderCapability[];
|
|
163
164
|
apiStyle?: "responses" | "chat";
|
|
165
|
+
/** local-whisper: override the binary discovery search. */
|
|
166
|
+
binaryPath?: string;
|
|
167
|
+
/** local-whisper: explicit path to the ggml model file. */
|
|
168
|
+
modelPath?: string;
|
|
169
|
+
/** local-whisper: extra CLI flags forwarded to whisper.cpp. */
|
|
170
|
+
extraArgs?: string[];
|
|
171
|
+
/** local-whisper: thread count passed as `-t`. */
|
|
172
|
+
threads?: number;
|
|
164
173
|
}
|
|
165
174
|
interface WebSearchProviderConfig {
|
|
166
175
|
type: WebSearchProviderType;
|
|
@@ -1611,6 +1620,48 @@ interface GraphReportArtifact {
|
|
|
1611
1620
|
warnings: string[];
|
|
1612
1621
|
};
|
|
1613
1622
|
}
|
|
1623
|
+
interface GraphShareArtifact {
|
|
1624
|
+
generatedAt: string;
|
|
1625
|
+
vaultName: string;
|
|
1626
|
+
tagline: string;
|
|
1627
|
+
overview: {
|
|
1628
|
+
sources: number;
|
|
1629
|
+
nodes: number;
|
|
1630
|
+
edges: number;
|
|
1631
|
+
pages: number;
|
|
1632
|
+
communities: number;
|
|
1633
|
+
};
|
|
1634
|
+
firstPartyOverview: {
|
|
1635
|
+
nodes: number;
|
|
1636
|
+
edges: number;
|
|
1637
|
+
pages: number;
|
|
1638
|
+
communities: number;
|
|
1639
|
+
};
|
|
1640
|
+
highlights: {
|
|
1641
|
+
topHubs: Array<{
|
|
1642
|
+
nodeId: string;
|
|
1643
|
+
label: string;
|
|
1644
|
+
degree?: number;
|
|
1645
|
+
}>;
|
|
1646
|
+
bridgeNodes: Array<{
|
|
1647
|
+
nodeId: string;
|
|
1648
|
+
label: string;
|
|
1649
|
+
bridgeScore?: number;
|
|
1650
|
+
}>;
|
|
1651
|
+
surprisingConnections: Array<{
|
|
1652
|
+
sourceLabel: string;
|
|
1653
|
+
targetLabel: string;
|
|
1654
|
+
relation: string;
|
|
1655
|
+
why: string;
|
|
1656
|
+
}>;
|
|
1657
|
+
suggestedQuestions: string[];
|
|
1658
|
+
};
|
|
1659
|
+
knowledgeGaps: string[];
|
|
1660
|
+
shortPost: string;
|
|
1661
|
+
relatedNodeIds: string[];
|
|
1662
|
+
relatedPageIds: string[];
|
|
1663
|
+
relatedSourceIds: string[];
|
|
1664
|
+
}
|
|
1614
1665
|
interface ScheduledCompileTask {
|
|
1615
1666
|
type: "compile";
|
|
1616
1667
|
approve?: boolean;
|
|
@@ -1952,6 +2003,13 @@ type GraphPushInternalOptions = GraphPushNeo4jOptions & {
|
|
|
1952
2003
|
};
|
|
1953
2004
|
declare function pushGraphNeo4j(rootDir: string, options?: GraphPushInternalOptions): Promise<GraphPushResult>;
|
|
1954
2005
|
|
|
2006
|
+
declare function buildGraphShareArtifact(input: {
|
|
2007
|
+
graph: GraphArtifact;
|
|
2008
|
+
report?: GraphReportArtifact | null;
|
|
2009
|
+
vaultName?: string;
|
|
2010
|
+
}): GraphShareArtifact;
|
|
2011
|
+
declare function renderGraphShareMarkdown(artifact: GraphShareArtifact): string;
|
|
2012
|
+
|
|
1955
2013
|
declare function graphDiff(oldGraph: GraphArtifact, newGraph: GraphArtifact): GraphDiffResult;
|
|
1956
2014
|
/**
|
|
1957
2015
|
* Compute the blast radius of changing a file/module by tracing reverse import
|
|
@@ -2075,6 +2133,132 @@ declare function runMigration(rootDir: string, options?: {
|
|
|
2075
2133
|
dryRun?: boolean;
|
|
2076
2134
|
}): Promise<MigrationResult>;
|
|
2077
2135
|
|
|
2136
|
+
declare abstract class BaseProviderAdapter implements ProviderAdapter {
|
|
2137
|
+
readonly id: string;
|
|
2138
|
+
readonly type: ProviderType;
|
|
2139
|
+
readonly model: string;
|
|
2140
|
+
readonly capabilities: Set<ProviderCapability>;
|
|
2141
|
+
constructor(id: string, type: ProviderType, model: string, capabilities: ProviderCapability[]);
|
|
2142
|
+
abstract generateText(request: GenerationRequest): Promise<GenerationResponse>;
|
|
2143
|
+
embedTexts(_texts: string[]): Promise<number[][]>;
|
|
2144
|
+
generateImage(_request: ImageGenerationRequest): Promise<ImageGenerationResponse>;
|
|
2145
|
+
transcribeAudio(_request: AudioTranscriptionRequest): Promise<AudioTranscriptionResponse>;
|
|
2146
|
+
generateStructured<T>(request: GenerationRequest, schema: z.ZodType<T>): Promise<T>;
|
|
2147
|
+
protected encodeAttachments(attachments?: GenerationAttachment[]): Promise<Array<{
|
|
2148
|
+
mimeType: string;
|
|
2149
|
+
base64: string;
|
|
2150
|
+
}>>;
|
|
2151
|
+
}
|
|
2152
|
+
|
|
2153
|
+
interface LocalWhisperAdapterOptions {
|
|
2154
|
+
binaryPath?: string;
|
|
2155
|
+
model?: string;
|
|
2156
|
+
modelPath?: string;
|
|
2157
|
+
extraArgs?: string[];
|
|
2158
|
+
threads?: number;
|
|
2159
|
+
/**
|
|
2160
|
+
* Replaces the default `child_process.spawn`-based runner. Exposed so unit
|
|
2161
|
+
* tests can exercise the adapter without requiring a real whisper.cpp binary
|
|
2162
|
+
* on `$PATH`.
|
|
2163
|
+
*/
|
|
2164
|
+
runner?: WhisperRunner;
|
|
2165
|
+
/** Overrides the directory used for temp audio files. */
|
|
2166
|
+
tmpDir?: string;
|
|
2167
|
+
/** Overrides environment variable lookup. */
|
|
2168
|
+
env?: NodeJS.ProcessEnv;
|
|
2169
|
+
/** Overrides `$HOME` used to resolve the default models directory. */
|
|
2170
|
+
homeDir?: string;
|
|
2171
|
+
}
|
|
2172
|
+
type WhisperRunner = (input: {
|
|
2173
|
+
binaryPath: string;
|
|
2174
|
+
args: string[];
|
|
2175
|
+
}) => Promise<WhisperRunResult>;
|
|
2176
|
+
interface WhisperRunResult {
|
|
2177
|
+
code: number;
|
|
2178
|
+
stdout: string;
|
|
2179
|
+
stderr: string;
|
|
2180
|
+
}
|
|
2181
|
+
declare class LocalWhisperProviderAdapter extends BaseProviderAdapter {
|
|
2182
|
+
private readonly options;
|
|
2183
|
+
constructor(id: string, model: string, options?: LocalWhisperAdapterOptions);
|
|
2184
|
+
generateText(_request: GenerationRequest): Promise<GenerationResponse>;
|
|
2185
|
+
transcribeAudio(request: AudioTranscriptionRequest): Promise<AudioTranscriptionResponse>;
|
|
2186
|
+
private extensionForRequest;
|
|
2187
|
+
private resolveBinaryPath;
|
|
2188
|
+
private resolveModelPath;
|
|
2189
|
+
}
|
|
2190
|
+
|
|
2191
|
+
/**
|
|
2192
|
+
* Approximate download sizes for the shipped ggml models. Used only for
|
|
2193
|
+
* user-facing "this will download ~X MB" summaries — no correctness depends on
|
|
2194
|
+
* these being exact.
|
|
2195
|
+
*/
|
|
2196
|
+
declare const LOCAL_WHISPER_MODEL_SIZES: Readonly<Record<string, string>>;
|
|
2197
|
+
interface LocalWhisperDiscoveryOptions {
|
|
2198
|
+
env?: NodeJS.ProcessEnv;
|
|
2199
|
+
}
|
|
2200
|
+
interface LocalWhisperBinaryDiscovery {
|
|
2201
|
+
binaryPath: string | null;
|
|
2202
|
+
candidates: string[];
|
|
2203
|
+
source: "config" | "env" | "path" | "not-found";
|
|
2204
|
+
}
|
|
2205
|
+
declare function discoverLocalWhisperBinary(options?: LocalWhisperDiscoveryOptions): Promise<LocalWhisperBinaryDiscovery>;
|
|
2206
|
+
declare function expectedModelPath(modelName: string, homeDir?: string): string;
|
|
2207
|
+
declare function modelDownloadUrl(modelName: string): string;
|
|
2208
|
+
interface DownloadProgress {
|
|
2209
|
+
downloadedBytes: number;
|
|
2210
|
+
totalBytes?: number;
|
|
2211
|
+
}
|
|
2212
|
+
interface DownloadOptions {
|
|
2213
|
+
modelName: string;
|
|
2214
|
+
homeDir?: string;
|
|
2215
|
+
onProgress?: (progress: DownloadProgress) => void;
|
|
2216
|
+
fetchImpl?: typeof fetch;
|
|
2217
|
+
}
|
|
2218
|
+
interface DownloadResult {
|
|
2219
|
+
path: string;
|
|
2220
|
+
bytes: number;
|
|
2221
|
+
}
|
|
2222
|
+
declare function downloadWhisperModel(options: DownloadOptions): Promise<DownloadResult>;
|
|
2223
|
+
interface ProviderRegistrationOptions {
|
|
2224
|
+
rootDir: string;
|
|
2225
|
+
providerId?: string;
|
|
2226
|
+
model: string;
|
|
2227
|
+
setAsAudioProvider?: boolean;
|
|
2228
|
+
binaryPath?: string;
|
|
2229
|
+
modelPath?: string;
|
|
2230
|
+
threads?: number;
|
|
2231
|
+
}
|
|
2232
|
+
interface ProviderRegistrationResult {
|
|
2233
|
+
providerId: string;
|
|
2234
|
+
configPath: string;
|
|
2235
|
+
providerWasAdded: boolean;
|
|
2236
|
+
providerWasUpdated: boolean;
|
|
2237
|
+
audioProviderSet: boolean;
|
|
2238
|
+
previousAudioProvider?: string;
|
|
2239
|
+
}
|
|
2240
|
+
declare function registerLocalWhisperProvider(options: ProviderRegistrationOptions): Promise<ProviderRegistrationResult>;
|
|
2241
|
+
interface LocalWhisperSetupStatus {
|
|
2242
|
+
binary: {
|
|
2243
|
+
found: boolean;
|
|
2244
|
+
path: string | null;
|
|
2245
|
+
source: LocalWhisperBinaryDiscovery["source"];
|
|
2246
|
+
installHint: string;
|
|
2247
|
+
};
|
|
2248
|
+
model: {
|
|
2249
|
+
name: string;
|
|
2250
|
+
expectedPath: string;
|
|
2251
|
+
exists: boolean;
|
|
2252
|
+
downloadUrl: string;
|
|
2253
|
+
approximateSize: string | undefined;
|
|
2254
|
+
};
|
|
2255
|
+
}
|
|
2256
|
+
interface SummarizeSetupOptions extends LocalWhisperDiscoveryOptions {
|
|
2257
|
+
modelName: string;
|
|
2258
|
+
homeDir?: string;
|
|
2259
|
+
}
|
|
2260
|
+
declare function summarizeLocalWhisperSetup(options: SummarizeSetupOptions): Promise<LocalWhisperSetupStatus>;
|
|
2261
|
+
|
|
2078
2262
|
/**
|
|
2079
2263
|
* Canonical capability matrix for the OpenAI-compatible provider family.
|
|
2080
2264
|
*
|
|
@@ -2429,4 +2613,4 @@ declare function createWebSearchAdapter(id: string, config: WebSearchProviderCon
|
|
|
2429
2613
|
type WebSearchTaskId = "deepLintProvider" | "queryProvider" | "exploreProvider";
|
|
2430
2614
|
declare function getWebSearchAdapterForTask(rootDir: string, task: WebSearchTaskId): Promise<WebSearchAdapter>;
|
|
2431
2615
|
|
|
2432
|
-
export { ALL_MIGRATIONS, type AddOptions, type AddResult, type AgentType, type AnalyzedTerm, type ApprovalBundleType, type ApprovalChangeType, type ApprovalDetail, type ApprovalDiffHunk, type ApprovalDiffLine, type ApprovalEntry, type ApprovalEntryDetail, type ApprovalEntryLabel, type ApprovalEntryStatus, type ApprovalFrontmatterChange, type ApprovalManifest, type ApprovalStructuredDiff, type ApprovalSummary, type AudioTranscriptionRequest, type AudioTranscriptionResponse, type BenchmarkArtifact, type BenchmarkByClassEntry, type BenchmarkOptions, type BenchmarkQuestionResult, type BenchmarkSummary, type BlastRadiusResult, type CandidatePromotionConfig, type CandidateRecord, type ChartDatum, type ChartSpec, type ClaimStatus, type CodeAnalysis, type CodeDiagnostic, type CodeImport, type CodeIndexArtifact, type CodeIndexEntry, type CodeLanguage, type CodeSymbol, type CodeSymbolKind, type CommandRoleExecutorConfig, type CompileOptions, type CompileResult, type CompileState, type ConsolidationConfig, type ConsolidationPromotion, type ConsolidationResult, DEFAULT_CONSOLIDATION_CONFIG, DEFAULT_HALF_LIFE_DAYS, DEFAULT_HALF_LIFE_DAYS_BY_SOURCE_CLASS, DEFAULT_PROMOTION_CONFIG, DEFAULT_REDACTION_PATTERNS, DEFAULT_STALE_THRESHOLD, type DegradationOutcome, type DirectoryIngestFailure, type DirectoryIngestResult, type DirectoryIngestSkip, type EmbeddingCacheArtifact, type EmbeddingCacheEntry, type EvidenceClass, type ExploreOptions, type ExploreResult, type ExploreStepResult, type ExtractionClaim, type ExtractionKind, type ExtractionTerm, type Freshness, type FreshnessConfig, type GenerationAttachment, type GenerationRequest, type GenerationResponse, type GitHookStatus, type GraphArtifact, type GraphDiffResult, type GraphEdge, type GraphExplainNeighbor, type GraphExplainResult, type GraphExportFormat, type GraphExportResult, type GraphHyperedge, type GraphNode, type GraphPage, type GraphPathResult, type GraphPushCounts, type GraphPushNeo4jOptions, type GraphPushResult, type GraphQueryMatch, type GraphQueryResult, type GraphReportArtifact, type GuidedSessionMode, type GuidedSourceSessionAnswers, type GuidedSourceSessionQuestion, type GuidedSourceSessionRecord, type GuidedSourceSessionStatus, type ImageGenerationRequest, type ImageGenerationResponse, type ImageVisionExtraction, type InboxImportResult, type InboxImportSkip, type IngestOptions, type InitOptions, type InputIngestResult, type InstallAgentOptions, type InstallAgentResult, LARGE_REPO_NODE_THRESHOLD, type LintFinding, type LintOptions, type ManagedSourceAddOptions, type ManagedSourceAddResult, type ManagedSourceDeleteResult, type ManagedSourceKind, type ManagedSourceRecord, type ManagedSourceReloadOptions, type ManagedSourceReloadResult, type ManagedSourceStatus, type ManagedSourceSyncCounts, type ManagedSourcesArtifact, type MemoryTier, type MigrationPlan, type MigrationResult, type MigrationStep, type Neo4jGraphSinkConfig, OPENAI_COMPATIBLE_CAPABILITY_MATRIX, type OpenAiCompatiblePresetId, type OrchestrationConfig, type OrchestrationFinding, type OrchestrationProposal, type OrchestrationRole, type OrchestrationRoleConfig, type OrchestrationRoleResult, type OutputAsset, type OutputAssetRole, type OutputFormat, type OutputOrigin, type PageKind, type PageManager, type PageStatus, type PendingSemanticRefreshEntry, type Polarity, type PromotionDecision, type PromotionGateKind, type PromotionGateResult, type PromotionSession, type ProviderAdapter, type ProviderCapability, type ProviderConfig, type ProviderPresetCapability, type ProviderRoleExecutorConfig, type ProviderType, type QueryOptions, type QueryResult, type RedactionMatchSummary, type RedactionPatternConfig, type RedactionSettings, type RedactionSummary, type RepoSyncResult, type ResolvedLargeRepoDefaults, type ResolvedPaths, type ReviewActionResult, type RoleExecutorConfig, type SceneElement, type SceneSpec, type ScheduleController, type ScheduleJobConfig, type ScheduleStateRecord, type ScheduleTriggerConfig, type ScheduledCompileTask, type ScheduledConsolidateTask, type ScheduledExploreTask, type ScheduledLintTask, type ScheduledQueryTask, type ScheduledRunResult, type ScheduledTaskConfig, type SearchResult, type SourceAnalysis, type SourceAttachment, type SourceCaptureType, type SourceClaim, type SourceClass, type SourceExtractionArtifact, type SourceGuideResult, type SourceKind, type SourceManifest, type SourceRationale, type SourceReviewResult, type SynthesizedHubEdge, type SynthesizedHubNode, type SynthesizedHyperedgeHubs, type VaultConfig, type VaultDashboardPack, type VaultProfileConfig, type VaultProfilePreset, type VaultVersionRecord, type WatchConfig, type WatchController, type WatchOptions, type WatchRepoSyncResult, type WatchRunRecord, type WatchStatusResult, type WebSearchAdapter, type WebSearchProviderConfig, type WebSearchProviderType, type WebSearchResult, acceptApproval, addInput, addManagedSource, addWatchedRoot, agentTypeSchema, applyDecayToPages, archiveCandidate, assertProviderCapability, autoCommitWikiChanges, benchmarkVault, blastRadius, blastRadiusVault, bootstrapDemo, buildConfiguredRedactor, buildRedactor, compileVault, computeDecayScore, consolidateVault, createMcpServer, createProvider, createSupersessionEdge, createWebSearchAdapter, defaultVaultConfig, defaultVaultSchema, deleteManagedSource, detectVaultVersion, estimatePageTokens, estimateTokens, evaluateCandidateForPromotion, explainGraphVault, exploreVault, exportGraphFormat, exportGraphHtml, exportGraphReportHtml, exportObsidianCanvas, exportObsidianVault, getGitHookStatus, getProviderForTask, getWatchStatus, getWebSearchAdapterForTask, getWorkspaceInfo, graphDiff, guideManagedSource, guideSourceScope, importInbox, ingestDirectory, ingestInput, ingestInputDetailed, initVault, initWorkspace, installAgent, installConfiguredAgents, installGitHooks, lintVault, listApprovals, listCandidates, listGodNodes, listGraphHyperedges, listManagedSourceRecords, listManifests, listPages, listSchedules, listTrackedRepoRoots, listWatchedRoots, loadVaultConfig, loadVaultSchema, loadVaultSchemas, lookupPresetCapabilities, markSuperseded, pathGraphVault, persistDecayFrontmatter, planMigration, previewCandidatePromotions, promoteCandidate, providerCapabilitySchema, providerTypeSchema, pushGraphNeo4j, queryGraphVault, queryVault, readApproval, readExtractedText, readGraphReport, readPage, rejectApproval, reloadManagedSources, removeWatchedRoot, resetDecay, resolveConsolidationConfig, resolveDecayConfig, resolveLargeRepoDefaults, resolvePaths, resolveRedactionPatterns, resolveWatchedRepoRoots, resumeSourceSession, reviewManagedSource, reviewSourceScope, runAutoPromotion, runConsolidation, runDecayPass, runMigration, runSchedule, runWatchCycle, searchVault, serveSchedules, stageGeneratedOutputPages, startGraphServer, startMcpServer, syncTrackedRepos, syncTrackedReposForWatch, synthesizeHyperedgeHubs, trimToTokenBudget, uninstallGitHooks, watchVault, webSearchProviderTypeSchema, withCapabilityFallback };
|
|
2616
|
+
export { ALL_MIGRATIONS, type AddOptions, type AddResult, type AgentType, type AnalyzedTerm, type ApprovalBundleType, type ApprovalChangeType, type ApprovalDetail, type ApprovalDiffHunk, type ApprovalDiffLine, type ApprovalEntry, type ApprovalEntryDetail, type ApprovalEntryLabel, type ApprovalEntryStatus, type ApprovalFrontmatterChange, type ApprovalManifest, type ApprovalStructuredDiff, type ApprovalSummary, type AudioTranscriptionRequest, type AudioTranscriptionResponse, type BenchmarkArtifact, type BenchmarkByClassEntry, type BenchmarkOptions, type BenchmarkQuestionResult, type BenchmarkSummary, type BlastRadiusResult, type CandidatePromotionConfig, type CandidateRecord, type ChartDatum, type ChartSpec, type ClaimStatus, type CodeAnalysis, type CodeDiagnostic, type CodeImport, type CodeIndexArtifact, type CodeIndexEntry, type CodeLanguage, type CodeSymbol, type CodeSymbolKind, type CommandRoleExecutorConfig, type CompileOptions, type CompileResult, type CompileState, type ConsolidationConfig, type ConsolidationPromotion, type ConsolidationResult, DEFAULT_CONSOLIDATION_CONFIG, DEFAULT_HALF_LIFE_DAYS, DEFAULT_HALF_LIFE_DAYS_BY_SOURCE_CLASS, DEFAULT_PROMOTION_CONFIG, DEFAULT_REDACTION_PATTERNS, DEFAULT_STALE_THRESHOLD, type DegradationOutcome, type DirectoryIngestFailure, type DirectoryIngestResult, type DirectoryIngestSkip, type EmbeddingCacheArtifact, type EmbeddingCacheEntry, type EvidenceClass, type ExploreOptions, type ExploreResult, type ExploreStepResult, type ExtractionClaim, type ExtractionKind, type ExtractionTerm, type Freshness, type FreshnessConfig, type GenerationAttachment, type GenerationRequest, type GenerationResponse, type GitHookStatus, type GraphArtifact, type GraphDiffResult, type GraphEdge, type GraphExplainNeighbor, type GraphExplainResult, type GraphExportFormat, type GraphExportResult, type GraphHyperedge, type GraphNode, type GraphPage, type GraphPathResult, type GraphPushCounts, type GraphPushNeo4jOptions, type GraphPushResult, type GraphQueryMatch, type GraphQueryResult, type GraphReportArtifact, type GraphShareArtifact, type GuidedSessionMode, type GuidedSourceSessionAnswers, type GuidedSourceSessionQuestion, type GuidedSourceSessionRecord, type GuidedSourceSessionStatus, type ImageGenerationRequest, type ImageGenerationResponse, type ImageVisionExtraction, type InboxImportResult, type InboxImportSkip, type IngestOptions, type InitOptions, type InputIngestResult, type InstallAgentOptions, type InstallAgentResult, LARGE_REPO_NODE_THRESHOLD, LOCAL_WHISPER_MODEL_SIZES, type LintFinding, type LintOptions, type LocalWhisperAdapterOptions, type LocalWhisperBinaryDiscovery, LocalWhisperProviderAdapter, type LocalWhisperSetupStatus, type ManagedSourceAddOptions, type ManagedSourceAddResult, type ManagedSourceDeleteResult, type ManagedSourceKind, type ManagedSourceRecord, type ManagedSourceReloadOptions, type ManagedSourceReloadResult, type ManagedSourceStatus, type ManagedSourceSyncCounts, type ManagedSourcesArtifact, type MemoryTier, type MigrationPlan, type MigrationResult, type MigrationStep, type Neo4jGraphSinkConfig, OPENAI_COMPATIBLE_CAPABILITY_MATRIX, type OpenAiCompatiblePresetId, type OrchestrationConfig, type OrchestrationFinding, type OrchestrationProposal, type OrchestrationRole, type OrchestrationRoleConfig, type OrchestrationRoleResult, type OutputAsset, type OutputAssetRole, type OutputFormat, type OutputOrigin, type PageKind, type PageManager, type PageStatus, type PendingSemanticRefreshEntry, type Polarity, type PromotionDecision, type PromotionGateKind, type PromotionGateResult, type PromotionSession, type ProviderAdapter, type ProviderCapability, type ProviderConfig, type ProviderPresetCapability, type ProviderRegistrationOptions, type ProviderRegistrationResult, type ProviderRoleExecutorConfig, type ProviderType, type QueryOptions, type QueryResult, type RedactionMatchSummary, type RedactionPatternConfig, type RedactionSettings, type RedactionSummary, type RepoSyncResult, type ResolvedLargeRepoDefaults, type ResolvedPaths, type ReviewActionResult, type RoleExecutorConfig, type SceneElement, type SceneSpec, type ScheduleController, type ScheduleJobConfig, type ScheduleStateRecord, type ScheduleTriggerConfig, type ScheduledCompileTask, type ScheduledConsolidateTask, type ScheduledExploreTask, type ScheduledLintTask, type ScheduledQueryTask, type ScheduledRunResult, type ScheduledTaskConfig, type SearchResult, type SourceAnalysis, type SourceAttachment, type SourceCaptureType, type SourceClaim, type SourceClass, type SourceExtractionArtifact, type SourceGuideResult, type SourceKind, type SourceManifest, type SourceRationale, type SourceReviewResult, type SynthesizedHubEdge, type SynthesizedHubNode, type SynthesizedHyperedgeHubs, type VaultConfig, type VaultDashboardPack, type VaultProfileConfig, type VaultProfilePreset, type VaultVersionRecord, type WatchConfig, type WatchController, type WatchOptions, type WatchRepoSyncResult, type WatchRunRecord, type WatchStatusResult, type WebSearchAdapter, type WebSearchProviderConfig, type WebSearchProviderType, type WebSearchResult, type WhisperRunResult, type WhisperRunner, acceptApproval, addInput, addManagedSource, addWatchedRoot, agentTypeSchema, applyDecayToPages, archiveCandidate, assertProviderCapability, autoCommitWikiChanges, benchmarkVault, blastRadius, blastRadiusVault, bootstrapDemo, buildConfiguredRedactor, buildGraphShareArtifact, buildRedactor, compileVault, computeDecayScore, consolidateVault, createMcpServer, createProvider, createSupersessionEdge, createWebSearchAdapter, defaultVaultConfig, defaultVaultSchema, deleteManagedSource, detectVaultVersion, discoverLocalWhisperBinary, downloadWhisperModel, estimatePageTokens, estimateTokens, evaluateCandidateForPromotion, expectedModelPath, explainGraphVault, exploreVault, exportGraphFormat, exportGraphHtml, exportGraphReportHtml, exportObsidianCanvas, exportObsidianVault, getGitHookStatus, getProviderForTask, getWatchStatus, getWebSearchAdapterForTask, getWorkspaceInfo, graphDiff, guideManagedSource, guideSourceScope, importInbox, ingestDirectory, ingestInput, ingestInputDetailed, initVault, initWorkspace, installAgent, installConfiguredAgents, installGitHooks, lintVault, listApprovals, listCandidates, listGodNodes, listGraphHyperedges, listManagedSourceRecords, listManifests, listPages, listSchedules, listTrackedRepoRoots, listWatchedRoots, loadVaultConfig, loadVaultSchema, loadVaultSchemas, lookupPresetCapabilities, markSuperseded, modelDownloadUrl, pathGraphVault, persistDecayFrontmatter, planMigration, previewCandidatePromotions, promoteCandidate, providerCapabilitySchema, providerTypeSchema, pushGraphNeo4j, queryGraphVault, queryVault, readApproval, readExtractedText, readGraphReport, readPage, registerLocalWhisperProvider, rejectApproval, reloadManagedSources, removeWatchedRoot, renderGraphShareMarkdown, resetDecay, resolveConsolidationConfig, resolveDecayConfig, resolveLargeRepoDefaults, resolvePaths, resolveRedactionPatterns, resolveWatchedRepoRoots, resumeSourceSession, reviewManagedSource, reviewSourceScope, runAutoPromotion, runConsolidation, runDecayPass, runMigration, runSchedule, runWatchCycle, searchVault, serveSchedules, stageGeneratedOutputPages, startGraphServer, startMcpServer, summarizeLocalWhisperSetup, syncTrackedRepos, syncTrackedReposForWatch, synthesizeHyperedgeHubs, trimToTokenBudget, uninstallGitHooks, watchVault, webSearchProviderTypeSchema, withCapabilityFallback };
|