@swarmvaultai/engine 0.1.32 → 0.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 +23 -1
- package/dist/chunk-CWLDFLH2.js +1163 -0
- package/dist/index.d.ts +68 -2
- package/dist/index.js +1924 -505
- package/dist/registry-2REAPKPO.js +12 -0
- package/package.json +8 -7
package/dist/index.d.ts
CHANGED
|
@@ -57,7 +57,9 @@ type ApprovalChangeType = "create" | "update" | "delete" | "promote";
|
|
|
57
57
|
type SourceKind = "markdown" | "text" | "pdf" | "image" | "html" | "docx" | "binary" | "code";
|
|
58
58
|
type SourceCaptureType = "arxiv" | "doi" | "tweet" | "article" | "url";
|
|
59
59
|
type SourceClass = "first_party" | "third_party" | "resource" | "generated";
|
|
60
|
-
type
|
|
60
|
+
type ManagedSourceKind = "directory" | "github_repo" | "crawl_url";
|
|
61
|
+
type ManagedSourceStatus = "ready" | "missing" | "error";
|
|
62
|
+
type CodeLanguage = "javascript" | "jsx" | "typescript" | "tsx" | "python" | "go" | "rust" | "java" | "kotlin" | "scala" | "csharp" | "c" | "cpp" | "php" | "ruby" | "powershell";
|
|
61
63
|
type CodeSymbolKind = "function" | "class" | "interface" | "type_alias" | "enum" | "variable" | "struct" | "trait";
|
|
62
64
|
type OrchestrationRole = "research" | "audit" | "context" | "safety";
|
|
63
65
|
declare const webSearchProviderTypeSchema: z.ZodEnum<{
|
|
@@ -220,6 +222,8 @@ interface ResolvedPaths {
|
|
|
220
222
|
watchDir: string;
|
|
221
223
|
watchStatusPath: string;
|
|
222
224
|
pendingSemanticRefreshPath: string;
|
|
225
|
+
managedSourcesPath: string;
|
|
226
|
+
managedSourcesDir: string;
|
|
223
227
|
configPath: string;
|
|
224
228
|
}
|
|
225
229
|
interface SourceAttachment {
|
|
@@ -301,6 +305,34 @@ interface SourceManifest {
|
|
|
301
305
|
updatedAt: string;
|
|
302
306
|
attachments?: SourceAttachment[];
|
|
303
307
|
}
|
|
308
|
+
interface ManagedSourceSyncCounts {
|
|
309
|
+
scannedCount: number;
|
|
310
|
+
importedCount: number;
|
|
311
|
+
updatedCount: number;
|
|
312
|
+
removedCount: number;
|
|
313
|
+
skippedCount: number;
|
|
314
|
+
}
|
|
315
|
+
interface ManagedSourceRecord {
|
|
316
|
+
id: string;
|
|
317
|
+
kind: ManagedSourceKind;
|
|
318
|
+
title: string;
|
|
319
|
+
path?: string;
|
|
320
|
+
repoRoot?: string;
|
|
321
|
+
url?: string;
|
|
322
|
+
createdAt: string;
|
|
323
|
+
updatedAt: string;
|
|
324
|
+
status: ManagedSourceStatus;
|
|
325
|
+
sourceIds: string[];
|
|
326
|
+
briefPath?: string;
|
|
327
|
+
lastSyncAt?: string;
|
|
328
|
+
lastSyncStatus?: "success" | "error";
|
|
329
|
+
lastSyncCounts?: ManagedSourceSyncCounts;
|
|
330
|
+
lastError?: string;
|
|
331
|
+
}
|
|
332
|
+
interface ManagedSourcesArtifact {
|
|
333
|
+
version: 1;
|
|
334
|
+
sources: ManagedSourceRecord[];
|
|
335
|
+
}
|
|
304
336
|
interface AnalyzedTerm {
|
|
305
337
|
id: string;
|
|
306
338
|
name: string;
|
|
@@ -708,6 +740,29 @@ interface InstallAgentResult {
|
|
|
708
740
|
targets: string[];
|
|
709
741
|
warnings?: string[];
|
|
710
742
|
}
|
|
743
|
+
interface ManagedSourceAddOptions {
|
|
744
|
+
compile?: boolean;
|
|
745
|
+
brief?: boolean;
|
|
746
|
+
maxPages?: number;
|
|
747
|
+
maxDepth?: number;
|
|
748
|
+
}
|
|
749
|
+
interface ManagedSourceReloadOptions extends ManagedSourceAddOptions {
|
|
750
|
+
id?: string;
|
|
751
|
+
all?: boolean;
|
|
752
|
+
}
|
|
753
|
+
interface ManagedSourceAddResult {
|
|
754
|
+
source: ManagedSourceRecord;
|
|
755
|
+
compile?: CompileResult;
|
|
756
|
+
briefGenerated: boolean;
|
|
757
|
+
}
|
|
758
|
+
interface ManagedSourceReloadResult {
|
|
759
|
+
sources: ManagedSourceRecord[];
|
|
760
|
+
compile?: CompileResult;
|
|
761
|
+
briefPaths: string[];
|
|
762
|
+
}
|
|
763
|
+
interface ManagedSourceDeleteResult {
|
|
764
|
+
removed: ManagedSourceRecord;
|
|
765
|
+
}
|
|
711
766
|
interface GitHookStatus {
|
|
712
767
|
repoRoot: string | null;
|
|
713
768
|
postCommit: "installed" | "not_installed" | "other_content";
|
|
@@ -966,6 +1021,12 @@ interface GraphReportArtifact {
|
|
|
966
1021
|
path?: string;
|
|
967
1022
|
title?: string;
|
|
968
1023
|
}>;
|
|
1024
|
+
fragmentedCommunityRollup?: {
|
|
1025
|
+
totalCommunities: number;
|
|
1026
|
+
rolledUpCount: number;
|
|
1027
|
+
rolledUpNodes: number;
|
|
1028
|
+
exampleLabels: string[];
|
|
1029
|
+
};
|
|
969
1030
|
surprisingConnections: Array<{
|
|
970
1031
|
id: string;
|
|
971
1032
|
sourceNodeId: string;
|
|
@@ -1177,6 +1238,11 @@ interface LoadedVaultSchemas {
|
|
|
1177
1238
|
declare function loadVaultSchemas(rootDir: string): Promise<LoadedVaultSchemas>;
|
|
1178
1239
|
declare function loadVaultSchema(rootDir: string): Promise<VaultSchema>;
|
|
1179
1240
|
|
|
1241
|
+
declare function listManagedSourceRecords(rootDir: string): Promise<ManagedSourceRecord[]>;
|
|
1242
|
+
declare function addManagedSource(rootDir: string, input: string, options?: ManagedSourceAddOptions): Promise<ManagedSourceAddResult>;
|
|
1243
|
+
declare function reloadManagedSources(rootDir: string, options?: ManagedSourceReloadOptions): Promise<ManagedSourceReloadResult>;
|
|
1244
|
+
declare function deleteManagedSource(rootDir: string, id: string): Promise<ManagedSourceDeleteResult>;
|
|
1245
|
+
|
|
1180
1246
|
declare function listApprovals(rootDir: string): Promise<ApprovalSummary[]>;
|
|
1181
1247
|
declare function readApproval(rootDir: string, approvalId: string, options?: {
|
|
1182
1248
|
diff?: boolean;
|
|
@@ -1253,4 +1319,4 @@ declare function getWatchStatus(rootDir: string): Promise<WatchStatusResult>;
|
|
|
1253
1319
|
declare function createWebSearchAdapter(id: string, config: WebSearchProviderConfig, rootDir: string): Promise<WebSearchAdapter>;
|
|
1254
1320
|
declare function getWebSearchAdapterForTask(rootDir: string, task: "deepLintProvider"): Promise<WebSearchAdapter>;
|
|
1255
1321
|
|
|
1256
|
-
export { type AddOptions, type AddResult, type AgentType, type AnalyzedTerm, type ApprovalChangeType, type ApprovalDetail, type ApprovalEntry, type ApprovalEntryDetail, 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 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 ImageGenerationRequest, type ImageGenerationResponse, type ImageVisionExtraction, type InboxImportResult, type InboxImportSkip, type IngestOptions, type InitOptions, type InstallAgentOptions, type InstallAgentResult, type LintFinding, type LintOptions, 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 SourceKind, type SourceManifest, type SourceRationale, type VaultConfig, type WatchController, type WatchOptions, type WatchRepoSyncResult, type WatchRunRecord, type WatchStatusResult, type WebSearchAdapter, type WebSearchProviderConfig, type WebSearchProviderType, type WebSearchResult, acceptApproval, addInput, agentTypeSchema, archiveCandidate, assertProviderCapability, benchmarkVault, bootstrapDemo, compileVault, createMcpServer, createProvider, createWebSearchAdapter, defaultVaultConfig, defaultVaultSchema, explainGraphVault, exploreVault, exportGraphFormat, exportGraphHtml, getGitHookStatus, getProviderForTask, getWatchStatus, getWebSearchAdapterForTask, getWorkspaceInfo, importInbox, ingestDirectory, ingestInput, initVault, initWorkspace, installAgent, installConfiguredAgents, installGitHooks, lintVault, listApprovals, listCandidates, listGodNodes, listGraphHyperedges, listManifests, listPages, listSchedules, listTrackedRepoRoots, loadVaultConfig, loadVaultSchema, loadVaultSchemas, pathGraphVault, promoteCandidate, providerCapabilitySchema, providerTypeSchema, pushGraphNeo4j, queryGraphVault, queryVault, readApproval, readExtractedText, readGraphReport, readPage, rejectApproval, resolvePaths, runSchedule, runWatchCycle, searchVault, serveSchedules, startGraphServer, startMcpServer, syncTrackedRepos, syncTrackedReposForWatch, uninstallGitHooks, watchVault, webSearchProviderTypeSchema };
|
|
1322
|
+
export { type AddOptions, type AddResult, type AgentType, type AnalyzedTerm, type ApprovalChangeType, type ApprovalDetail, type ApprovalEntry, type ApprovalEntryDetail, 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 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 ImageGenerationRequest, type ImageGenerationResponse, type ImageVisionExtraction, type InboxImportResult, type InboxImportSkip, type IngestOptions, type InitOptions, 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 SourceKind, type SourceManifest, type SourceRationale, type VaultConfig, 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, getGitHookStatus, getProviderForTask, getWatchStatus, getWebSearchAdapterForTask, getWorkspaceInfo, importInbox, ingestDirectory, ingestInput, 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, runSchedule, runWatchCycle, searchVault, serveSchedules, startGraphServer, startMcpServer, syncTrackedRepos, syncTrackedReposForWatch, uninstallGitHooks, watchVault, webSearchProviderTypeSchema };
|