@swarmvaultai/engine 3.14.2 → 3.16.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 +6 -1
- package/dist/chunk-JJDJF2P3.js +27012 -0
- package/dist/chunk-L7DKPPV4.js +27339 -0
- package/dist/chunk-NON6BVEI.js +1705 -0
- package/dist/chunk-NUWZUYE7.js +1701 -0
- package/dist/chunk-TQIIJVVG.js +27343 -0
- package/dist/index.d.ts +80 -2
- package/dist/index.js +210 -4
- package/dist/memory-4BDKH4Y2.js +32 -0
- package/dist/memory-PK55JUKG.js +32 -0
- package/dist/memory-QCVKS3H4.js +32 -0
- package/dist/registry-ILDEBNCW.js +12 -0
- package/dist/registry-ZZ6NESFD.js +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -215,6 +215,7 @@ The engine supports:
|
|
|
215
215
|
- `together`
|
|
216
216
|
- `xai`
|
|
217
217
|
- `cerebras`
|
|
218
|
+
- `local-whisper`
|
|
218
219
|
- `openai-compatible`
|
|
219
220
|
- `custom`
|
|
220
221
|
|
|
@@ -228,6 +229,7 @@ Providers are capability-driven. Each provider declares support for features suc
|
|
|
228
229
|
- `streaming`
|
|
229
230
|
- `local`
|
|
230
231
|
- `image_generation`
|
|
232
|
+
- `audio`
|
|
231
233
|
|
|
232
234
|
This matters because many "OpenAI-compatible" backends only implement part of the OpenAI surface.
|
|
233
235
|
|
|
@@ -271,6 +273,7 @@ This matters because many "OpenAI-compatible" backends only implement part of th
|
|
|
271
273
|
- `queryGraphVault(rootDir, question, { traversal, budget })` runs deterministic local graph search, preferring semantic seed matches from `tasks.embeddingProvider` when configured and falling back to lexical search plus matching group patterns otherwise
|
|
272
274
|
- `pathGraphVault(rootDir, from, to)` returns the shortest graph path between two targets
|
|
273
275
|
- `explainGraphVault(rootDir, target)` returns node, community, neighbor, provenance, and group-pattern details
|
|
276
|
+
- `findGraphCycles(graph, { relations, limit, maxDepth })` returns deterministic directed cycles, commonly used for import or call-loop inspection
|
|
274
277
|
- `listGraphHyperedges(rootDir, target?, limit?)` returns graph hyperedges globally or for a specific node/page target
|
|
275
278
|
- `listGodNodes(rootDir, limit)` returns the most connected bridge-heavy graph nodes
|
|
276
279
|
- `buildGraphShareArtifact(...)`, `renderGraphShareMarkdown(...)`, `renderGraphShareSvg(...)`, `renderGraphSharePreviewHtml(...)`, and `renderGraphShareBundleFiles(...)` produce the post-ready text, 1200x630 visual card, self-contained HTML preview, and portable share kit used by `wiki/graph/share-card.md`, `wiki/graph/share-card.svg`, `wiki/graph/share-kit/`, and the CLI `graph share` command
|
|
@@ -289,7 +292,9 @@ This matters because many "OpenAI-compatible" backends only implement part of th
|
|
|
289
292
|
- large ingest and compile passes emit low-noise progress on TTYs, bound source-analysis concurrency, and use sparse graph co-occurrence projection so dense note sets do not create unbounded pairwise graph work
|
|
290
293
|
- JSON state writes are atomic, and JSON parse failures include the exact state file path that failed to parse
|
|
291
294
|
- `installGitHooks(rootDir)`, `uninstallGitHooks(rootDir)`, and `getGitHookStatus(rootDir)` manage local `post-commit` and `post-checkout` hook blocks for the nearest git repository
|
|
292
|
-
- `installAgent(rootDir, agent, { hook })` writes agent instructions and returns the primary `target`, all touched `targets`, and optional merge warnings for agents such as Aider
|
|
295
|
+
- `installAgent(rootDir, agent, { hook, scope })` writes agent instructions and returns the primary `target`, all touched `targets`, and optional merge warnings for agents such as Aider and Kilo
|
|
296
|
+
- `getAgentInstallStatus(rootDir, agent, { scope })` reports expected install targets, presence, and managed-block status
|
|
297
|
+
- `addProviderConfig`, `listProviderConfigEntries`, `getProviderConfigEntry`, and `removeProviderConfig` manage named provider entries and task routing in `swarmvault.config.json`
|
|
293
298
|
- `lintVault(rootDir, options)` runs structural lint, optional deep lint, optional contradiction-only filtering through `{ conflicts: true }`, and optional web-augmented evidence gathering
|
|
294
299
|
- `listSchedules(rootDir)`, `runSchedule(rootDir, jobId)`, and `serveSchedules(rootDir)` manage recurring local jobs from config
|
|
295
300
|
- compile, query, explore, lint, and watch also write canonical markdown session artifacts to `state/sessions/`
|