@swarmvaultai/engine 0.7.24 → 0.7.26
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/chunk-MB7HPUTR.js +1364 -0
- package/dist/chunk-N56FAH4N.js +1404 -0
- package/dist/chunk-NAIERP4C.js +65 -0
- package/dist/chunk-ZQ5T64AR.js +1365 -0
- package/dist/index.d.ts +98 -5
- package/dist/index.js +1124 -134
- package/dist/registry-FKEREVDO.js +12 -0
- package/dist/registry-SYCRRA65.js +12 -0
- package/dist/registry-UA42LQUQ.js +12 -0
- package/dist/token-estimation-TTONKT4O.js +10 -0
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ declare const providerCapabilitySchema: z.ZodEnum<{
|
|
|
12
12
|
streaming: "streaming";
|
|
13
13
|
local: "local";
|
|
14
14
|
image_generation: "image_generation";
|
|
15
|
+
audio: "audio";
|
|
15
16
|
}>;
|
|
16
17
|
type ProviderCapability = z.infer<typeof providerCapabilitySchema>;
|
|
17
18
|
declare const providerTypeSchema: z.ZodEnum<{
|
|
@@ -52,7 +53,7 @@ type Polarity = "positive" | "negative" | "neutral";
|
|
|
52
53
|
type OutputOrigin = "query" | "explore" | "source_brief" | "source_review" | "source_guide" | "source_session";
|
|
53
54
|
type OutputFormat = "markdown" | "report" | "slides" | "chart" | "image";
|
|
54
55
|
type OutputAssetRole = "primary" | "preview" | "manifest" | "poster";
|
|
55
|
-
type GraphExportFormat = "html" | "html-standalone" | "svg" | "graphml" | "cypher" | "json" | "obsidian" | "canvas";
|
|
56
|
+
type GraphExportFormat = "html" | "html-standalone" | "report" | "svg" | "graphml" | "cypher" | "json" | "obsidian" | "canvas";
|
|
56
57
|
type PageStatus = "draft" | "candidate" | "active" | "archived";
|
|
57
58
|
type PageManager = "system" | "human";
|
|
58
59
|
type ApprovalEntryStatus = "pending" | "accepted" | "rejected";
|
|
@@ -63,7 +64,7 @@ type GuidedSourceSessionStatus = "awaiting_input" | "ready_to_stage" | "staged"
|
|
|
63
64
|
type VaultProfilePreset = "reader" | "timeline" | "diligence" | "thesis";
|
|
64
65
|
type VaultDashboardPack = "default" | "reader" | "diligence";
|
|
65
66
|
type GuidedSessionMode = "insights_only" | "canonical_review";
|
|
66
|
-
type SourceKind = "markdown" | "text" | "pdf" | "image" | "html" | "docx" | "epub" | "csv" | "xlsx" | "pptx" | "odt" | "odp" | "ods" | "jupyter" | "data" | "bibtex" | "rtf" | "org" | "asciidoc" | "transcript" | "chat_export" | "email" | "calendar" | "binary" | "code";
|
|
67
|
+
type SourceKind = "markdown" | "text" | "pdf" | "image" | "html" | "docx" | "epub" | "csv" | "xlsx" | "pptx" | "odt" | "odp" | "ods" | "jupyter" | "data" | "bibtex" | "rtf" | "org" | "asciidoc" | "transcript" | "chat_export" | "email" | "calendar" | "audio" | "youtube" | "binary" | "code";
|
|
67
68
|
type SourceCaptureType = "arxiv" | "doi" | "tweet" | "article" | "url";
|
|
68
69
|
type SourceClass = "first_party" | "third_party" | "resource" | "generated";
|
|
69
70
|
type ManagedSourceKind = "directory" | "file" | "github_repo" | "crawl_url";
|
|
@@ -107,6 +108,17 @@ interface ImageGenerationResponse {
|
|
|
107
108
|
height?: number;
|
|
108
109
|
revisedPrompt?: string;
|
|
109
110
|
}
|
|
111
|
+
interface AudioTranscriptionRequest {
|
|
112
|
+
mimeType: string;
|
|
113
|
+
bytes: Buffer;
|
|
114
|
+
fileName?: string;
|
|
115
|
+
language?: string;
|
|
116
|
+
}
|
|
117
|
+
interface AudioTranscriptionResponse {
|
|
118
|
+
text: string;
|
|
119
|
+
duration?: number;
|
|
120
|
+
language?: string;
|
|
121
|
+
}
|
|
110
122
|
interface ProviderAdapter {
|
|
111
123
|
readonly id: string;
|
|
112
124
|
readonly type: ProviderType;
|
|
@@ -116,6 +128,7 @@ interface ProviderAdapter {
|
|
|
116
128
|
generateStructured<T>(request: GenerationRequest, schema: z.ZodType<T>): Promise<T>;
|
|
117
129
|
embedTexts?(texts: string[]): Promise<number[][]>;
|
|
118
130
|
generateImage?(request: ImageGenerationRequest): Promise<ImageGenerationResponse>;
|
|
131
|
+
transcribeAudio?(request: AudioTranscriptionRequest): Promise<AudioTranscriptionResponse>;
|
|
119
132
|
}
|
|
120
133
|
interface ProviderConfig {
|
|
121
134
|
type: ProviderType;
|
|
@@ -177,6 +190,7 @@ interface VaultConfig {
|
|
|
177
190
|
visionProvider: string;
|
|
178
191
|
imageProvider?: string;
|
|
179
192
|
embeddingProvider?: string;
|
|
193
|
+
audioProvider?: string;
|
|
180
194
|
};
|
|
181
195
|
viewer: {
|
|
182
196
|
port: number;
|
|
@@ -201,12 +215,20 @@ interface VaultConfig {
|
|
|
201
215
|
graphSinks?: {
|
|
202
216
|
neo4j?: Neo4jGraphSinkConfig;
|
|
203
217
|
};
|
|
218
|
+
graph?: {
|
|
219
|
+
communityResolution?: number;
|
|
220
|
+
};
|
|
204
221
|
webSearch?: {
|
|
205
222
|
providers: Record<string, WebSearchProviderConfig>;
|
|
206
223
|
tasks: {
|
|
207
224
|
deepLintProvider: string;
|
|
208
225
|
};
|
|
209
226
|
};
|
|
227
|
+
search?: {
|
|
228
|
+
hybrid?: boolean;
|
|
229
|
+
rerank?: boolean;
|
|
230
|
+
};
|
|
231
|
+
autoCommit?: boolean;
|
|
210
232
|
}
|
|
211
233
|
interface ResolvedPaths {
|
|
212
234
|
rootDir: string;
|
|
@@ -250,7 +272,7 @@ interface SourceAttachment {
|
|
|
250
272
|
mimeType: string;
|
|
251
273
|
originalPath?: string;
|
|
252
274
|
}
|
|
253
|
-
type ExtractionKind = "plain_text" | "html_readability" | "pdf_text" | "docx_text" | "epub_text" | "csv_text" | "xlsx_text" | "pptx_text" | "odt_text" | "odp_text" | "ods_text" | "jupyter_text" | "structured_data" | "bibtex_text" | "rtf_text" | "org_text" | "asciidoc_text" | "transcript_text" | "chat_export_text" | "email_text" | "calendar_text" | "image_vision";
|
|
275
|
+
type ExtractionKind = "plain_text" | "html_readability" | "pdf_text" | "docx_text" | "epub_text" | "csv_text" | "xlsx_text" | "pptx_text" | "odt_text" | "odp_text" | "ods_text" | "jupyter_text" | "structured_data" | "bibtex_text" | "rtf_text" | "org_text" | "asciidoc_text" | "transcript_text" | "chat_export_text" | "email_text" | "calendar_text" | "image_vision" | "audio_transcription" | "youtube_transcript";
|
|
254
276
|
interface ExtractionTerm {
|
|
255
277
|
name: string;
|
|
256
278
|
description: string;
|
|
@@ -687,9 +709,22 @@ interface CandidateRecord {
|
|
|
687
709
|
createdAt: string;
|
|
688
710
|
updatedAt: string;
|
|
689
711
|
}
|
|
712
|
+
interface BlastRadiusResult {
|
|
713
|
+
target: string;
|
|
714
|
+
resolvedModuleId?: string;
|
|
715
|
+
affectedModules: Array<{
|
|
716
|
+
moduleId: string;
|
|
717
|
+
label: string;
|
|
718
|
+
depth: number;
|
|
719
|
+
}>;
|
|
720
|
+
totalAffected: number;
|
|
721
|
+
maxDepth: number;
|
|
722
|
+
summary: string;
|
|
723
|
+
}
|
|
690
724
|
interface CompileOptions {
|
|
691
725
|
approve?: boolean;
|
|
692
726
|
codeOnly?: boolean;
|
|
727
|
+
maxTokens?: number;
|
|
693
728
|
}
|
|
694
729
|
interface InitOptions {
|
|
695
730
|
obsidian?: boolean;
|
|
@@ -707,6 +742,12 @@ interface CompileResult {
|
|
|
707
742
|
postPassApprovalDir?: string;
|
|
708
743
|
promotedPageIds: string[];
|
|
709
744
|
candidatePageCount: number;
|
|
745
|
+
tokenStats?: {
|
|
746
|
+
estimatedTokens: number;
|
|
747
|
+
maxTokens: number;
|
|
748
|
+
pagesKept: number;
|
|
749
|
+
pagesDropped: number;
|
|
750
|
+
};
|
|
710
751
|
}
|
|
711
752
|
interface SearchResult {
|
|
712
753
|
pageId: string;
|
|
@@ -1328,6 +1369,10 @@ interface ScheduleController {
|
|
|
1328
1369
|
declare function installAgent(rootDir: string, agent: AgentType, options?: InstallAgentOptions): Promise<InstallAgentResult>;
|
|
1329
1370
|
declare function installConfiguredAgents(rootDir: string): Promise<InstallAgentResult[]>;
|
|
1330
1371
|
|
|
1372
|
+
declare function autoCommitWikiChanges(rootDir: string, operation: string, detail?: string, options?: {
|
|
1373
|
+
force?: boolean;
|
|
1374
|
+
}): Promise<string | null>;
|
|
1375
|
+
|
|
1331
1376
|
declare function defaultVaultConfig(profile?: VaultProfileConfig): VaultConfig;
|
|
1332
1377
|
declare function defaultVaultSchema(profile?: string | VaultProfileConfig): string;
|
|
1333
1378
|
declare function resolvePaths(rootDir: string, config?: VaultConfig, configPath?: string, schemaPath?: string): ResolvedPaths;
|
|
@@ -1342,7 +1387,8 @@ declare function initWorkspace(rootDir: string, options?: {
|
|
|
1342
1387
|
paths: ResolvedPaths;
|
|
1343
1388
|
}>;
|
|
1344
1389
|
|
|
1345
|
-
declare function exportGraphFormat(rootDir: string, format: Exclude<GraphExportFormat, "html" | "obsidian" | "canvas">, outputPath: string): Promise<GraphExportResult>;
|
|
1390
|
+
declare function exportGraphFormat(rootDir: string, format: Exclude<GraphExportFormat, "html" | "report" | "obsidian" | "canvas">, outputPath: string): Promise<GraphExportResult>;
|
|
1391
|
+
declare function exportGraphReportHtml(rootDir: string, outputPath: string): Promise<GraphExportResult>;
|
|
1346
1392
|
declare function exportObsidianVault(rootDir: string, outputDir: string): Promise<GraphExportResult>;
|
|
1347
1393
|
declare function exportObsidianCanvas(rootDir: string, outputPath: string): Promise<GraphExportResult>;
|
|
1348
1394
|
|
|
@@ -1364,6 +1410,13 @@ type GraphPushInternalOptions = GraphPushNeo4jOptions & {
|
|
|
1364
1410
|
declare function pushGraphNeo4j(rootDir: string, options?: GraphPushInternalOptions): Promise<GraphPushResult>;
|
|
1365
1411
|
|
|
1366
1412
|
declare function graphDiff(oldGraph: GraphArtifact, newGraph: GraphArtifact): GraphDiffResult;
|
|
1413
|
+
/**
|
|
1414
|
+
* Compute the blast radius of changing a file/module by tracing reverse import
|
|
1415
|
+
* edges via BFS. Returns all modules that transitively depend on the target.
|
|
1416
|
+
*/
|
|
1417
|
+
declare function blastRadius(graph: GraphArtifact, target: string, options?: {
|
|
1418
|
+
maxDepth?: number;
|
|
1419
|
+
}): BlastRadiusResult;
|
|
1367
1420
|
|
|
1368
1421
|
declare function getGitHookStatus(rootDir: string): Promise<GitHookStatus>;
|
|
1369
1422
|
declare function installGitHooks(rootDir: string): Promise<GitHookStatus>;
|
|
@@ -1432,6 +1485,43 @@ declare function addManagedSource(rootDir: string, input: string, options?: Mana
|
|
|
1432
1485
|
declare function reloadManagedSources(rootDir: string, options?: ManagedSourceReloadOptions): Promise<ManagedSourceReloadResult>;
|
|
1433
1486
|
declare function deleteManagedSource(rootDir: string, id: string): Promise<ManagedSourceDeleteResult>;
|
|
1434
1487
|
|
|
1488
|
+
/**
|
|
1489
|
+
* LLM token estimation for context-window budgeting.
|
|
1490
|
+
*
|
|
1491
|
+
* Distinct from tokenize.ts (NLP tokenizer for search indexing).
|
|
1492
|
+
* This module estimates how many LLM tokens a piece of text will consume
|
|
1493
|
+
* and provides a priority-based trimming strategy for wiki output.
|
|
1494
|
+
*/
|
|
1495
|
+
/**
|
|
1496
|
+
* Estimate the number of LLM tokens for a text string.
|
|
1497
|
+
* Uses a blended heuristic: ~4 chars/token for prose, ~3 chars/token for code.
|
|
1498
|
+
*/
|
|
1499
|
+
declare function estimateTokens(text: string): number;
|
|
1500
|
+
interface PageTokenEstimate {
|
|
1501
|
+
pageId: string;
|
|
1502
|
+
path: string;
|
|
1503
|
+
kind: string;
|
|
1504
|
+
tokens: number;
|
|
1505
|
+
priority: number;
|
|
1506
|
+
}
|
|
1507
|
+
/**
|
|
1508
|
+
* Estimate tokens and priority for a wiki page.
|
|
1509
|
+
* Priority is based on page kind, node degree, and confidence.
|
|
1510
|
+
*/
|
|
1511
|
+
declare function estimatePageTokens(pageId: string, path: string, kind: string, content: string, nodeDegree?: number, confidence?: number): PageTokenEstimate;
|
|
1512
|
+
interface TokenBudgetResult {
|
|
1513
|
+
kept: PageTokenEstimate[];
|
|
1514
|
+
dropped: PageTokenEstimate[];
|
|
1515
|
+
totalTokens: number;
|
|
1516
|
+
budgetTokens: number;
|
|
1517
|
+
keptTokens: number;
|
|
1518
|
+
}
|
|
1519
|
+
/**
|
|
1520
|
+
* Given a set of page estimates and a token budget, return which pages to keep.
|
|
1521
|
+
* Lower-priority pages are dropped first. The boundary page is truncated if needed.
|
|
1522
|
+
*/
|
|
1523
|
+
declare function trimToTokenBudget(pages: PageTokenEstimate[], maxTokens: number): TokenBudgetResult;
|
|
1524
|
+
|
|
1435
1525
|
type GeneratedOutputArtifacts = {
|
|
1436
1526
|
answer: string;
|
|
1437
1527
|
outputAssets: OutputAsset[];
|
|
@@ -1478,6 +1568,9 @@ declare function explainGraphVault(rootDir: string, target: string): Promise<Gra
|
|
|
1478
1568
|
declare function listGraphHyperedges(rootDir: string, target?: string, limit?: number): Promise<GraphHyperedge[]>;
|
|
1479
1569
|
declare function readGraphReport(rootDir: string): Promise<GraphReportArtifact | null>;
|
|
1480
1570
|
declare function listGodNodes(rootDir: string, limit?: number): Promise<GraphNode[]>;
|
|
1571
|
+
declare function blastRadiusVault(rootDir: string, target: string, options?: {
|
|
1572
|
+
maxDepth?: number;
|
|
1573
|
+
}): Promise<BlastRadiusResult>;
|
|
1481
1574
|
declare function listPages(rootDir: string): Promise<GraphPage[]>;
|
|
1482
1575
|
declare function readPage(rootDir: string, relativePath: string): Promise<{
|
|
1483
1576
|
path: string;
|
|
@@ -1534,4 +1627,4 @@ declare function getWatchStatus(rootDir: string): Promise<WatchStatusResult>;
|
|
|
1534
1627
|
declare function createWebSearchAdapter(id: string, config: WebSearchProviderConfig, rootDir: string): Promise<WebSearchAdapter>;
|
|
1535
1628
|
declare function getWebSearchAdapterForTask(rootDir: string, task: "deepLintProvider"): Promise<WebSearchAdapter>;
|
|
1536
1629
|
|
|
1537
|
-
export { type AddOptions, type AddResult, type AgentType, type AnalyzedTerm, type ApprovalBundleType, type ApprovalChangeType, type ApprovalDetail, type ApprovalEntry, type ApprovalEntryDetail, type ApprovalEntryLabel, type ApprovalEntryStatus, type ApprovalManifest, type ApprovalSummary, type BenchmarkArtifact, type BenchmarkOptions, type BenchmarkQuestionResult, type BenchmarkSummary, 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 DirectoryIngestResult, type DirectoryIngestSkip, type EmbeddingCacheArtifact, type EmbeddingCacheEntry, type EvidenceClass, type ExploreOptions, type ExploreResult, type ExploreStepResult, type ExtractionClaim, type ExtractionKind, type ExtractionTerm, type Freshness, 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, 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 Neo4jGraphSinkConfig, 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 ProviderAdapter, type ProviderCapability, type ProviderConfig, type ProviderRoleExecutorConfig, type ProviderType, type QueryOptions, type QueryResult, type RepoSyncResult, type ResolvedPaths, type ReviewActionResult, type RoleExecutorConfig, type SceneElement, type SceneSpec, type ScheduleController, type ScheduleJobConfig, type ScheduleStateRecord, type ScheduleTriggerConfig, type ScheduledCompileTask, 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 VaultConfig, type VaultDashboardPack, type VaultProfileConfig, type VaultProfilePreset, type WatchController, type WatchOptions, type WatchRepoSyncResult, type WatchRunRecord, type WatchStatusResult, type WebSearchAdapter, type WebSearchProviderConfig, type WebSearchProviderType, type WebSearchResult, acceptApproval, addInput, addManagedSource, agentTypeSchema, archiveCandidate, assertProviderCapability, benchmarkVault, bootstrapDemo, compileVault, createMcpServer, createProvider, createWebSearchAdapter, defaultVaultConfig, defaultVaultSchema, deleteManagedSource, explainGraphVault, exploreVault, exportGraphFormat, exportGraphHtml, 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, loadVaultConfig, loadVaultSchema, loadVaultSchemas, pathGraphVault, promoteCandidate, providerCapabilitySchema, providerTypeSchema, pushGraphNeo4j, queryGraphVault, queryVault, readApproval, readExtractedText, readGraphReport, readPage, rejectApproval, reloadManagedSources, resolvePaths, resumeSourceSession, reviewManagedSource, reviewSourceScope, runSchedule, runWatchCycle, searchVault, serveSchedules, stageGeneratedOutputPages, startGraphServer, startMcpServer, syncTrackedRepos, syncTrackedReposForWatch, uninstallGitHooks, watchVault, webSearchProviderTypeSchema };
|
|
1630
|
+
export { type AddOptions, type AddResult, type AgentType, type AnalyzedTerm, type ApprovalBundleType, type ApprovalChangeType, type ApprovalDetail, type ApprovalEntry, type ApprovalEntryDetail, type ApprovalEntryLabel, type ApprovalEntryStatus, type ApprovalManifest, type ApprovalSummary, type AudioTranscriptionRequest, type AudioTranscriptionResponse, type BenchmarkArtifact, type BenchmarkOptions, type BenchmarkQuestionResult, type BenchmarkSummary, type BlastRadiusResult, 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 DirectoryIngestResult, type DirectoryIngestSkip, type EmbeddingCacheArtifact, type EmbeddingCacheEntry, type EvidenceClass, type ExploreOptions, type ExploreResult, type ExploreStepResult, type ExtractionClaim, type ExtractionKind, type ExtractionTerm, type Freshness, 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, 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 Neo4jGraphSinkConfig, 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 ProviderAdapter, type ProviderCapability, type ProviderConfig, type ProviderRoleExecutorConfig, type ProviderType, type QueryOptions, type QueryResult, type RepoSyncResult, type ResolvedPaths, type ReviewActionResult, type RoleExecutorConfig, type SceneElement, type SceneSpec, type ScheduleController, type ScheduleJobConfig, type ScheduleStateRecord, type ScheduleTriggerConfig, type ScheduledCompileTask, 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 VaultConfig, type VaultDashboardPack, type VaultProfileConfig, type VaultProfilePreset, type WatchController, type WatchOptions, type WatchRepoSyncResult, type WatchRunRecord, type WatchStatusResult, type WebSearchAdapter, type WebSearchProviderConfig, type WebSearchProviderType, type WebSearchResult, acceptApproval, addInput, addManagedSource, agentTypeSchema, archiveCandidate, assertProviderCapability, autoCommitWikiChanges, benchmarkVault, blastRadius, blastRadiusVault, bootstrapDemo, compileVault, createMcpServer, createProvider, createWebSearchAdapter, defaultVaultConfig, defaultVaultSchema, deleteManagedSource, estimatePageTokens, estimateTokens, 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, loadVaultConfig, loadVaultSchema, loadVaultSchemas, pathGraphVault, promoteCandidate, providerCapabilitySchema, providerTypeSchema, pushGraphNeo4j, queryGraphVault, queryVault, readApproval, readExtractedText, readGraphReport, readPage, rejectApproval, reloadManagedSources, resolvePaths, resumeSourceSession, reviewManagedSource, reviewSourceScope, runSchedule, runWatchCycle, searchVault, serveSchedules, stageGeneratedOutputPages, startGraphServer, startMcpServer, syncTrackedRepos, syncTrackedReposForWatch, trimToTokenBudget, uninstallGitHooks, watchVault, webSearchProviderTypeSchema };
|