@soederpop/luca 0.0.2
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/CLAUDE.md +71 -0
- package/README.md +78 -0
- package/bun.lock +2928 -0
- package/bunfig.toml +3 -0
- package/commands/audit-docs.ts +740 -0
- package/commands/build-scaffolds.ts +154 -0
- package/commands/generate-api-docs.ts +114 -0
- package/commands/update-introspection.ts +67 -0
- package/docs/CLI.md +335 -0
- package/docs/README.md +88 -0
- package/docs/TABLE-OF-CONTENTS.md +157 -0
- package/docs/apis/clients/elevenlabs.md +84 -0
- package/docs/apis/clients/graph.md +56 -0
- package/docs/apis/clients/openai.md +69 -0
- package/docs/apis/clients/rest.md +41 -0
- package/docs/apis/clients/websocket.md +107 -0
- package/docs/apis/features/agi/assistant.md +471 -0
- package/docs/apis/features/agi/assistants-manager.md +154 -0
- package/docs/apis/features/agi/claude-code.md +602 -0
- package/docs/apis/features/agi/conversation-history.md +352 -0
- package/docs/apis/features/agi/conversation.md +333 -0
- package/docs/apis/features/agi/docs-reader.md +121 -0
- package/docs/apis/features/agi/openai-codex.md +318 -0
- package/docs/apis/features/agi/openapi.md +138 -0
- package/docs/apis/features/agi/semantic-search.md +387 -0
- package/docs/apis/features/agi/skills-library.md +216 -0
- package/docs/apis/features/node/container-link.md +133 -0
- package/docs/apis/features/node/content-db.md +313 -0
- package/docs/apis/features/node/disk-cache.md +379 -0
- package/docs/apis/features/node/dns.md +651 -0
- package/docs/apis/features/node/docker.md +705 -0
- package/docs/apis/features/node/downloader.md +81 -0
- package/docs/apis/features/node/esbuild.md +59 -0
- package/docs/apis/features/node/file-manager.md +182 -0
- package/docs/apis/features/node/fs.md +581 -0
- package/docs/apis/features/node/git.md +330 -0
- package/docs/apis/features/node/google-auth.md +174 -0
- package/docs/apis/features/node/google-calendar.md +187 -0
- package/docs/apis/features/node/google-docs.md +151 -0
- package/docs/apis/features/node/google-drive.md +225 -0
- package/docs/apis/features/node/google-sheets.md +179 -0
- package/docs/apis/features/node/grep.md +290 -0
- package/docs/apis/features/node/helpers.md +135 -0
- package/docs/apis/features/node/ink.md +334 -0
- package/docs/apis/features/node/ipc-socket.md +260 -0
- package/docs/apis/features/node/json-tree.md +86 -0
- package/docs/apis/features/node/launcher-app-command-listener.md +145 -0
- package/docs/apis/features/node/networking.md +281 -0
- package/docs/apis/features/node/nlp.md +133 -0
- package/docs/apis/features/node/opener.md +97 -0
- package/docs/apis/features/node/os.md +118 -0
- package/docs/apis/features/node/package-finder.md +402 -0
- package/docs/apis/features/node/postgres.md +212 -0
- package/docs/apis/features/node/proc.md +430 -0
- package/docs/apis/features/node/process-manager.md +210 -0
- package/docs/apis/features/node/python.md +278 -0
- package/docs/apis/features/node/repl.md +88 -0
- package/docs/apis/features/node/runpod.md +673 -0
- package/docs/apis/features/node/secure-shell.md +169 -0
- package/docs/apis/features/node/semantic-search.md +401 -0
- package/docs/apis/features/node/sqlite.md +211 -0
- package/docs/apis/features/node/telegram.md +254 -0
- package/docs/apis/features/node/tts.md +118 -0
- package/docs/apis/features/node/ui.md +703 -0
- package/docs/apis/features/node/vault.md +64 -0
- package/docs/apis/features/node/vm.md +84 -0
- package/docs/apis/features/node/window-manager.md +337 -0
- package/docs/apis/features/node/yaml-tree.md +85 -0
- package/docs/apis/features/node/yaml.md +176 -0
- package/docs/apis/features/web/asset-loader.md +47 -0
- package/docs/apis/features/web/container-link.md +133 -0
- package/docs/apis/features/web/esbuild.md +59 -0
- package/docs/apis/features/web/helpers.md +135 -0
- package/docs/apis/features/web/network.md +30 -0
- package/docs/apis/features/web/speech.md +55 -0
- package/docs/apis/features/web/vault.md +64 -0
- package/docs/apis/features/web/vm.md +84 -0
- package/docs/apis/features/web/voice.md +67 -0
- package/docs/apis/servers/express.md +127 -0
- package/docs/apis/servers/mcp.md +213 -0
- package/docs/apis/servers/websocket.md +99 -0
- package/docs/documentation-audit.md +134 -0
- package/docs/examples/content-db.md +77 -0
- package/docs/examples/disk-cache.md +83 -0
- package/docs/examples/docker.md +101 -0
- package/docs/examples/downloader.md +70 -0
- package/docs/examples/esbuild.md +80 -0
- package/docs/examples/file-manager.md +82 -0
- package/docs/examples/fs.md +83 -0
- package/docs/examples/git.md +85 -0
- package/docs/examples/google-auth.md +88 -0
- package/docs/examples/google-calendar.md +94 -0
- package/docs/examples/google-docs.md +82 -0
- package/docs/examples/google-drive.md +96 -0
- package/docs/examples/google-sheets.md +95 -0
- package/docs/examples/grep.md +85 -0
- package/docs/examples/ink-blocks.md +75 -0
- package/docs/examples/ink-renderer.md +41 -0
- package/docs/examples/ink.md +103 -0
- package/docs/examples/ipc-socket.md +103 -0
- package/docs/examples/json-tree.md +91 -0
- package/docs/examples/launcher-app-command-listener.md +120 -0
- package/docs/examples/networking.md +58 -0
- package/docs/examples/nlp.md +91 -0
- package/docs/examples/opener.md +78 -0
- package/docs/examples/os.md +72 -0
- package/docs/examples/package-finder.md +89 -0
- package/docs/examples/port-exposer.md +89 -0
- package/docs/examples/postgres.md +91 -0
- package/docs/examples/proc.md +81 -0
- package/docs/examples/process-manager.md +79 -0
- package/docs/examples/python.md +91 -0
- package/docs/examples/repl.md +93 -0
- package/docs/examples/runpod.md +119 -0
- package/docs/examples/secure-shell.md +92 -0
- package/docs/examples/sqlite.md +86 -0
- package/docs/examples/telegram.md +77 -0
- package/docs/examples/tts.md +86 -0
- package/docs/examples/ui.md +80 -0
- package/docs/examples/vault.md +70 -0
- package/docs/examples/vm.md +86 -0
- package/docs/examples/window-manager.md +125 -0
- package/docs/examples/yaml-tree.md +93 -0
- package/docs/examples/yaml.md +104 -0
- package/docs/ideas/class-registration-refactor-possibilities.md +197 -0
- package/docs/ideas/container-use-api.md +9 -0
- package/docs/ideas/easy-auth-for-express-servers-and-luca-serve.md +0 -0
- package/docs/ideas/feature-stacks.md +22 -0
- package/docs/ideas/luca-cli-self-sufficiency-demo.md +23 -0
- package/docs/ideas/mcp-design.md +9 -0
- package/docs/ideas/web-container-debugging-feature.md +13 -0
- package/docs/introspection-audit.md +49 -0
- package/docs/introspection.md +154 -0
- package/docs/mcp/readme.md +162 -0
- package/docs/models.ts +38 -0
- package/docs/philosophy.md +85 -0
- package/docs/principles.md +7 -0
- package/docs/prompts/audit-codebase-for-failures-to-use-the-container.md +34 -0
- package/docs/prompts/mcp-test-easy-command.md +27 -0
- package/docs/reports/assistant-bugs.md +38 -0
- package/docs/reports/attach-pattern-usage.md +18 -0
- package/docs/reports/code-audit-results.md +391 -0
- package/docs/reports/introspection-audit-tasks.md +378 -0
- package/docs/reports/luca-mcp-improvements.md +128 -0
- package/docs/scaffolds/client.md +140 -0
- package/docs/scaffolds/command.md +106 -0
- package/docs/scaffolds/endpoint.md +176 -0
- package/docs/scaffolds/feature.md +148 -0
- package/docs/scaffolds/server.md +187 -0
- package/docs/tasks/web-container-helper-discovery.md +71 -0
- package/docs/todos.md +1 -0
- package/docs/tutorials/01-getting-started.md +106 -0
- package/docs/tutorials/02-container.md +210 -0
- package/docs/tutorials/03-scripts.md +194 -0
- package/docs/tutorials/04-features-overview.md +196 -0
- package/docs/tutorials/05-state-and-events.md +171 -0
- package/docs/tutorials/06-servers.md +157 -0
- package/docs/tutorials/07-endpoints.md +198 -0
- package/docs/tutorials/08-commands.md +171 -0
- package/docs/tutorials/09-clients.md +162 -0
- package/docs/tutorials/10-creating-features.md +198 -0
- package/docs/tutorials/11-contentbase.md +191 -0
- package/docs/tutorials/12-assistants.md +215 -0
- package/docs/tutorials/13-introspection.md +147 -0
- package/docs/tutorials/14-type-system.md +174 -0
- package/docs/tutorials/15-project-patterns.md +222 -0
- package/docs/tutorials/16-google-features.md +534 -0
- package/docs/tutorials/17-tui-blocks.md +530 -0
- package/docs/tutorials/18-semantic-search.md +334 -0
- package/index.ts +1 -0
- package/luca.console.ts +9 -0
- package/main.py +6 -0
- package/package.json +154 -0
- package/pyproject.toml +7 -0
- package/scripts/animations/chrome-glitch.ts +55 -0
- package/scripts/animations/index.ts +16 -0
- package/scripts/animations/neon-pulse.ts +64 -0
- package/scripts/animations/types.ts +6 -0
- package/scripts/build-web.ts +28 -0
- package/scripts/examples/ask-luca-expert.ts +42 -0
- package/scripts/examples/assistant-questions.ts +12 -0
- package/scripts/examples/excalidraw-expert.ts +75 -0
- package/scripts/examples/expert-chat.ts +0 -0
- package/scripts/examples/file-manager.ts +14 -0
- package/scripts/examples/ideas.ts +12 -0
- package/scripts/examples/interactive-chat.ts +20 -0
- package/scripts/examples/openai-tool-calls.ts +113 -0
- package/scripts/examples/opening-a-web-browser.ts +5 -0
- package/scripts/examples/telegram-bot.ts +79 -0
- package/scripts/examples/telegram-ink-ui.ts +302 -0
- package/scripts/examples/using-assistant-with-mcp.ts +560 -0
- package/scripts/examples/using-claude-code.ts +10 -0
- package/scripts/examples/using-contentdb.ts +35 -0
- package/scripts/examples/using-conversations.ts +35 -0
- package/scripts/examples/using-disk-cache.ts +10 -0
- package/scripts/examples/using-docker-shell.ts +75 -0
- package/scripts/examples/using-elevenlabs.ts +25 -0
- package/scripts/examples/using-google-calendar.ts +57 -0
- package/scripts/examples/using-google-docs.ts +74 -0
- package/scripts/examples/using-google-drive.ts +74 -0
- package/scripts/examples/using-google-sheets.ts +89 -0
- package/scripts/examples/using-nlp.ts +55 -0
- package/scripts/examples/using-ollama.ts +10 -0
- package/scripts/examples/using-openai-codex.ts +23 -0
- package/scripts/examples/using-postgres.ts +55 -0
- package/scripts/examples/using-runpod.ts +32 -0
- package/scripts/examples/using-tts.ts +40 -0
- package/scripts/examples/vm-loading-esm-modules.ts +16 -0
- package/scripts/scaffold.ts +391 -0
- package/scripts/scratch.ts +15 -0
- package/scripts/test-command-listener.ts +123 -0
- package/scripts/test-window-manager-lifecycle.ts +86 -0
- package/scripts/test-window-manager.ts +43 -0
- package/scripts/update-introspection-data.ts +58 -0
- package/src/agi/README.md +14 -0
- package/src/agi/container.server.ts +114 -0
- package/src/agi/endpoints/ask.ts +60 -0
- package/src/agi/endpoints/conversations/[id].ts +45 -0
- package/src/agi/endpoints/conversations.ts +31 -0
- package/src/agi/endpoints/experts.ts +37 -0
- package/src/agi/features/assistant.ts +767 -0
- package/src/agi/features/assistants-manager.ts +260 -0
- package/src/agi/features/claude-code.ts +1111 -0
- package/src/agi/features/conversation-history.ts +497 -0
- package/src/agi/features/conversation.ts +799 -0
- package/src/agi/features/openai-codex.ts +631 -0
- package/src/agi/features/openapi.ts +438 -0
- package/src/agi/features/skills-library.ts +425 -0
- package/src/agi/index.ts +6 -0
- package/src/agi/lib/token-counter.ts +122 -0
- package/src/browser.ts +25 -0
- package/src/bus.ts +100 -0
- package/src/cli/cli.ts +70 -0
- package/src/client.ts +461 -0
- package/src/clients/civitai/index.ts +541 -0
- package/src/clients/client-template.ts +41 -0
- package/src/clients/comfyui/index.ts +597 -0
- package/src/clients/elevenlabs/index.ts +291 -0
- package/src/clients/openai/index.ts +451 -0
- package/src/clients/supabase/index.ts +366 -0
- package/src/command.ts +164 -0
- package/src/commands/chat.ts +182 -0
- package/src/commands/console.ts +192 -0
- package/src/commands/describe.ts +433 -0
- package/src/commands/eval.ts +116 -0
- package/src/commands/help.ts +214 -0
- package/src/commands/index.ts +14 -0
- package/src/commands/mcp.ts +64 -0
- package/src/commands/prompt.ts +807 -0
- package/src/commands/run.ts +257 -0
- package/src/commands/sandbox-mcp.ts +439 -0
- package/src/commands/scaffold.ts +79 -0
- package/src/commands/serve.ts +172 -0
- package/src/container.ts +781 -0
- package/src/endpoint.ts +340 -0
- package/src/feature.ts +75 -0
- package/src/hash-object.ts +97 -0
- package/src/helper.ts +543 -0
- package/src/introspection/generated.agi.ts +23388 -0
- package/src/introspection/generated.node.ts +18899 -0
- package/src/introspection/generated.web.ts +2021 -0
- package/src/introspection/index.ts +256 -0
- package/src/introspection/scan.ts +912 -0
- package/src/node/container.ts +354 -0
- package/src/node/feature.ts +13 -0
- package/src/node/features/container-link.ts +558 -0
- package/src/node/features/content-db.ts +475 -0
- package/src/node/features/disk-cache.ts +382 -0
- package/src/node/features/dns.ts +655 -0
- package/src/node/features/docker.ts +912 -0
- package/src/node/features/downloader.ts +92 -0
- package/src/node/features/esbuild.ts +68 -0
- package/src/node/features/file-manager.ts +357 -0
- package/src/node/features/fs.ts +534 -0
- package/src/node/features/git.ts +492 -0
- package/src/node/features/google-auth.ts +502 -0
- package/src/node/features/google-calendar.ts +300 -0
- package/src/node/features/google-docs.ts +404 -0
- package/src/node/features/google-drive.ts +339 -0
- package/src/node/features/google-sheets.ts +279 -0
- package/src/node/features/grep.ts +406 -0
- package/src/node/features/helpers.ts +374 -0
- package/src/node/features/ink.ts +490 -0
- package/src/node/features/ipc-socket.ts +459 -0
- package/src/node/features/json-tree.ts +188 -0
- package/src/node/features/launcher-app-command-listener.ts +388 -0
- package/src/node/features/networking.ts +925 -0
- package/src/node/features/nlp.ts +211 -0
- package/src/node/features/opener.ts +166 -0
- package/src/node/features/os.ts +157 -0
- package/src/node/features/package-finder.ts +539 -0
- package/src/node/features/port-exposer.ts +342 -0
- package/src/node/features/postgres.ts +273 -0
- package/src/node/features/proc.ts +502 -0
- package/src/node/features/process-manager.ts +542 -0
- package/src/node/features/python.ts +444 -0
- package/src/node/features/repl.ts +194 -0
- package/src/node/features/runpod.ts +802 -0
- package/src/node/features/secure-shell.ts +248 -0
- package/src/node/features/semantic-search.ts +924 -0
- package/src/node/features/sqlite.ts +289 -0
- package/src/node/features/telegram.ts +342 -0
- package/src/node/features/tts.ts +184 -0
- package/src/node/features/ui.ts +857 -0
- package/src/node/features/vault.ts +164 -0
- package/src/node/features/vm.ts +312 -0
- package/src/node/features/window-manager.ts +804 -0
- package/src/node/features/yaml-tree.ts +149 -0
- package/src/node/features/yaml.ts +132 -0
- package/src/node.ts +70 -0
- package/src/react/index.ts +175 -0
- package/src/registry.ts +199 -0
- package/src/scaffolds/generated.ts +1613 -0
- package/src/scaffolds/template.ts +37 -0
- package/src/schemas/base.ts +255 -0
- package/src/server.ts +135 -0
- package/src/servers/express.ts +209 -0
- package/src/servers/mcp.ts +805 -0
- package/src/servers/socket.ts +120 -0
- package/src/state.ts +101 -0
- package/src/web/clients/socket.ts +82 -0
- package/src/web/container.ts +74 -0
- package/src/web/extension.ts +30 -0
- package/src/web/feature.ts +12 -0
- package/src/web/features/asset-loader.ts +64 -0
- package/src/web/features/container-link.ts +385 -0
- package/src/web/features/esbuild.ts +79 -0
- package/src/web/features/helpers.ts +267 -0
- package/src/web/features/network.ts +61 -0
- package/src/web/features/speech.ts +87 -0
- package/src/web/features/vault.ts +189 -0
- package/src/web/features/vm.ts +78 -0
- package/src/web/features/voice-recognition.ts +129 -0
- package/src/web/shims/isomorphic-vm.ts +149 -0
- package/test/bus.test.ts +134 -0
- package/test/clients-servers.test.ts +216 -0
- package/test/container-link.test.ts +274 -0
- package/test/features.test.ts +160 -0
- package/test/integration.test.ts +787 -0
- package/test/node-container.test.ts +121 -0
- package/test/rate-limit.test.ts +272 -0
- package/test/semantic-search.test.ts +550 -0
- package/test/state.test.ts +121 -0
- package/test-integration/assistant.test.ts +138 -0
- package/test-integration/assistants-manager.test.ts +123 -0
- package/test-integration/claude-code.test.ts +98 -0
- package/test-integration/conversation-history.test.ts +205 -0
- package/test-integration/conversation.test.ts +137 -0
- package/test-integration/elevenlabs.test.ts +55 -0
- package/test-integration/google-services.test.ts +80 -0
- package/test-integration/helpers.ts +89 -0
- package/test-integration/openai-codex.test.ts +93 -0
- package/test-integration/runpod.test.ts +58 -0
- package/test-integration/server-endpoints.test.ts +97 -0
- package/test-integration/skills-library.test.ts +157 -0
- package/test-integration/telegram.test.ts +46 -0
- package/tsconfig.json +58 -0
- package/uv.lock +8 -0
|
@@ -0,0 +1,475 @@
|
|
|
1
|
+
import { Feature, features } from '../feature.js'
|
|
2
|
+
import { parse, Collection, extractSections, type ModelDefinition } from 'contentbase'
|
|
3
|
+
import { z } from 'zod'
|
|
4
|
+
import { FeatureStateSchema, FeatureOptionsSchema } from '../../schemas/base.js'
|
|
5
|
+
import { join, dirname } from 'node:path'
|
|
6
|
+
import { existsSync, readdirSync } from 'node:fs'
|
|
7
|
+
|
|
8
|
+
export const ContentDbStateSchema = FeatureStateSchema.extend({
|
|
9
|
+
loaded: z.boolean().default(false).describe('Whether the content collection has been loaded and parsed'),
|
|
10
|
+
tableOfContents: z.string().default('').describe('Generated table of contents string for the collection'),
|
|
11
|
+
modelSummary: z.string().default('').describe('Summary of all discovered content models and their document counts'),
|
|
12
|
+
})
|
|
13
|
+
|
|
14
|
+
export const ContentDbOptionsSchema = FeatureOptionsSchema.extend({
|
|
15
|
+
rootPath: z.string().describe('Root directory path containing the structured markdown collection'),
|
|
16
|
+
})
|
|
17
|
+
|
|
18
|
+
export type ContentDbState = z.infer<typeof ContentDbStateSchema>
|
|
19
|
+
export type ContentDbOptions = z.infer<typeof ContentDbOptionsSchema>
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Provides access to a Contentbase Collection for a folder of structured markdown files.
|
|
23
|
+
*
|
|
24
|
+
* Models are defined in the collection's models.ts file and auto-discovered on load.
|
|
25
|
+
* This feature is a thin wrapper that manages the collection lifecycle and provides
|
|
26
|
+
* convenience accessors for models and documents.
|
|
27
|
+
*
|
|
28
|
+
* @extends Feature
|
|
29
|
+
* @example
|
|
30
|
+
* ```typescript
|
|
31
|
+
* const contentDb = container.feature('contentDb', { rootPath: './docs' })
|
|
32
|
+
* await contentDb.load()
|
|
33
|
+
* console.log(contentDb.modelNames) // ['Article', 'Page', ...]
|
|
34
|
+
* ```
|
|
35
|
+
*/
|
|
36
|
+
export class ContentDb extends Feature<ContentDbState, ContentDbOptions> {
|
|
37
|
+
static override shortcut = 'features.contentDb' as const
|
|
38
|
+
static override stateSchema = ContentDbStateSchema
|
|
39
|
+
static override optionsSchema = ContentDbOptionsSchema
|
|
40
|
+
|
|
41
|
+
override get initialState(): ContentDbState {
|
|
42
|
+
return {
|
|
43
|
+
...super.initialState,
|
|
44
|
+
loaded: false
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/** Whether the content database has been loaded. */
|
|
49
|
+
get isLoaded() {
|
|
50
|
+
return this.state.get('loaded')
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
_collection?: Collection
|
|
54
|
+
|
|
55
|
+
/** Returns the lazily-initialized Collection instance for the configured rootPath. */
|
|
56
|
+
get collection() {
|
|
57
|
+
if (this._collection) return this._collection
|
|
58
|
+
return this._collection = new Collection({ rootPath: this.options.rootPath })
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/** Returns the absolute resolved path to the collection root directory. */
|
|
62
|
+
get collectionPath() {
|
|
63
|
+
return this.container.paths.resolve(this.options.rootPath)
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/** Returns an object mapping model names to their model definitions, sourced from the collection. */
|
|
67
|
+
get models(): Record<string, ModelDefinition> {
|
|
68
|
+
const entries = this.collection.modelDefinitions.map((d) => [d.name, d] as const)
|
|
69
|
+
return Object.fromEntries(entries)
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/** Returns an array of all registered model names from the collection. */
|
|
73
|
+
get modelNames(): string[] {
|
|
74
|
+
return this.collection.modelDefinitions.map((d) => d.name)
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Query documents belonging to a specific model definition.
|
|
79
|
+
*
|
|
80
|
+
* @param model - The model definition to query against
|
|
81
|
+
* @returns A query builder scoped to the given model's documents
|
|
82
|
+
* @example
|
|
83
|
+
* ```typescript
|
|
84
|
+
* const contentDb = container.feature('contentDb', { rootPath: './docs' })
|
|
85
|
+
* await contentDb.load()
|
|
86
|
+
* const articles = await contentDb.query(contentDb.models.Article).fetchAll()
|
|
87
|
+
* ```
|
|
88
|
+
*/
|
|
89
|
+
query<T extends ModelDefinition>(model: T) {
|
|
90
|
+
return this.collection.query(model)
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* Parse a markdown file at the given path without loading the full collection.
|
|
95
|
+
*
|
|
96
|
+
* @param path - Absolute or relative path to the markdown file
|
|
97
|
+
* @returns The parsed markdown document with frontmatter and content
|
|
98
|
+
* @example
|
|
99
|
+
* ```typescript
|
|
100
|
+
* const doc = contentDb.parseMarkdownAtPath('./docs/getting-started.md')
|
|
101
|
+
* console.log(doc.frontmatter, doc.content)
|
|
102
|
+
* ```
|
|
103
|
+
*/
|
|
104
|
+
parseMarkdownAtPath(path: string) {
|
|
105
|
+
return parse(path)
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* Load the collection, discovering models from models.ts and parsing all documents.
|
|
110
|
+
*
|
|
111
|
+
* @returns This ContentDb instance for chaining
|
|
112
|
+
* @example
|
|
113
|
+
* ```typescript
|
|
114
|
+
* const contentDb = container.feature('contentDb', { rootPath: './docs' })
|
|
115
|
+
* await contentDb.load()
|
|
116
|
+
* console.log(contentDb.isLoaded) // true
|
|
117
|
+
* ```
|
|
118
|
+
*/
|
|
119
|
+
async load(): Promise<ContentDb> {
|
|
120
|
+
if (this.isLoaded) {
|
|
121
|
+
return this;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
await this.collection.load()
|
|
125
|
+
this.state.set('loaded', true)
|
|
126
|
+
|
|
127
|
+
return this
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Read a single document by its path ID, optionally filtering to specific sections.
|
|
132
|
+
*
|
|
133
|
+
* The document title (H1) is always included in the output. When using `include`,
|
|
134
|
+
* the leading content (paragraphs between the H1 and first H2) is also included
|
|
135
|
+
* by default, controlled by the `leadingContent` option.
|
|
136
|
+
*
|
|
137
|
+
* When `include` is provided, only those sections are returned (via extractSections in flat mode).
|
|
138
|
+
* When `exclude` is provided, those sections are removed from the full document.
|
|
139
|
+
* If both are set, `include` takes precedence.
|
|
140
|
+
*
|
|
141
|
+
* @param idStringOrObject - Document path ID string, or an object with an `id` property
|
|
142
|
+
* @param options - Optional filtering and formatting options
|
|
143
|
+
* @param options.include - Only return sections matching these heading names
|
|
144
|
+
* @param options.exclude - Remove sections matching these heading names
|
|
145
|
+
* @param options.meta - Whether to include YAML frontmatter in the output (default: false)
|
|
146
|
+
* @param options.leadingContent - Include content between the H1 and first H2 when using include filter (default: true)
|
|
147
|
+
* @returns The document content as a markdown string
|
|
148
|
+
* @example
|
|
149
|
+
* ```typescript
|
|
150
|
+
* await contentDb.read('guides/intro')
|
|
151
|
+
* await contentDb.read('guides/intro', { include: ['Installation', 'Usage'] })
|
|
152
|
+
* await contentDb.read('guides/intro', { exclude: ['Changelog'], meta: true })
|
|
153
|
+
* await contentDb.read('guides/intro', { include: ['API'], leadingContent: false })
|
|
154
|
+
* ```
|
|
155
|
+
*/
|
|
156
|
+
async read(idStringOrObject: string | { id: string }, options?: { exclude?: string[], include?: string[], meta?: boolean, leadingContent?: boolean }): Promise<string> {
|
|
157
|
+
const id = typeof idStringOrObject === 'string' ? idStringOrObject : idStringOrObject.id
|
|
158
|
+
|
|
159
|
+
if (!id) {
|
|
160
|
+
throw new Error('Must supply a document id to read')
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
if (!this.isLoaded) await this.load()
|
|
164
|
+
|
|
165
|
+
const doc = this.collection.document(id)
|
|
166
|
+
const { include, exclude, meta, leadingContent = true } = options ?? {}
|
|
167
|
+
const hasFilters = (include?.length ?? 0) > 0 || (exclude?.length ?? 0) > 0
|
|
168
|
+
|
|
169
|
+
if (!hasFilters) {
|
|
170
|
+
return meta ? doc.rawContent : doc.content
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
let content: string
|
|
174
|
+
|
|
175
|
+
if (include?.length) {
|
|
176
|
+
const extracted = extractSections([{ source: doc, sections: include }], { mode: 'flat' })
|
|
177
|
+
let prefix = `# ${doc.title}\n\n`
|
|
178
|
+
if (leadingContent) {
|
|
179
|
+
const leading = this._getLeadingContent(doc)
|
|
180
|
+
if (leading) prefix += leading + '\n\n'
|
|
181
|
+
}
|
|
182
|
+
content = prefix + extracted.content
|
|
183
|
+
} else {
|
|
184
|
+
let modified = doc
|
|
185
|
+
for (const heading of exclude!) {
|
|
186
|
+
modified = modified.removeSection(heading)
|
|
187
|
+
}
|
|
188
|
+
content = modified.content
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
if (meta) {
|
|
192
|
+
const raw = doc.rawContent
|
|
193
|
+
const secondDashIndex = raw.indexOf('---', 3)
|
|
194
|
+
if (secondDashIndex !== -1) {
|
|
195
|
+
return raw.slice(0, secondDashIndex + 3) + '\n\n' + content
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
return content
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* Read multiple documents by their path IDs, concatenated into a single string.
|
|
204
|
+
*
|
|
205
|
+
* By default each document is wrapped in `<!-- BEGIN: id -->` / `<!-- END: id -->`
|
|
206
|
+
* dividers for easy identification. Supports the same filtering options as {@link read}.
|
|
207
|
+
*
|
|
208
|
+
* @param ids - Array of document path ID strings or objects with `id` properties
|
|
209
|
+
* @param options - Optional filtering and formatting options (applied to each document)
|
|
210
|
+
* @param options.dividers - Wrap each document in BEGIN/END comment dividers showing the ID (default: true)
|
|
211
|
+
* @returns The concatenated document contents as a single markdown string
|
|
212
|
+
* @example
|
|
213
|
+
* ```typescript
|
|
214
|
+
* await contentDb.readMultiple(['guides/intro', 'guides/setup'])
|
|
215
|
+
* await contentDb.readMultiple([{ id: 'guides/intro' }], { include: ['Overview'], dividers: false })
|
|
216
|
+
* ```
|
|
217
|
+
*/
|
|
218
|
+
async readMultiple(ids: string[] | { id: string }[], options?: { exclude?: string[], include?: string[], meta?: boolean, leadingContent?: boolean, dividers?: boolean }): Promise<string> {
|
|
219
|
+
const { dividers = true, ...readOptions } = options ?? {}
|
|
220
|
+
const results = await Promise.all(
|
|
221
|
+
ids.map(async (idOrObj) => {
|
|
222
|
+
const docId = typeof idOrObj === 'string' ? idOrObj : idOrObj.id
|
|
223
|
+
const content = await this.read(idOrObj, readOptions)
|
|
224
|
+
if (dividers) {
|
|
225
|
+
return `<!-- BEGIN: ${docId} -->\n${content}\n<!-- END: ${docId} -->`
|
|
226
|
+
}
|
|
227
|
+
return content
|
|
228
|
+
})
|
|
229
|
+
)
|
|
230
|
+
return results.join('\n\n')
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
/**
|
|
234
|
+
* Extracts the content between the H1 heading and the first H2 heading.
|
|
235
|
+
* Returns an empty string if there's no leading content or no H2 sections.
|
|
236
|
+
*/
|
|
237
|
+
private _getLeadingContent(doc: ReturnType<Collection['document']>): string {
|
|
238
|
+
const h1 = doc.astQuery.headingsAtDepth(1)[0]
|
|
239
|
+
const firstH2 = doc.astQuery.headingsAtDepth(2)[0]
|
|
240
|
+
|
|
241
|
+
if (!h1 || !firstH2) return ''
|
|
242
|
+
|
|
243
|
+
const betweenNodes = doc.astQuery.findBetween(h1, firstH2)
|
|
244
|
+
if (!betweenNodes.length) return ''
|
|
245
|
+
|
|
246
|
+
return doc.stringify({ type: 'root', children: betweenNodes } as any).trim()
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
async generateTableOfContents() {
|
|
250
|
+
return this.collection.tableOfContents()
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
async generateModelSummary(options: any) {
|
|
254
|
+
return this.collection.generateModelSummary(options)
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
// ── Search Integration ─────────────────────────────────────────────
|
|
258
|
+
|
|
259
|
+
private _semanticSearch: any = null
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* Lazily initialize the semanticSearch feature, attaching it to the container if needed.
|
|
263
|
+
* The dbPath defaults to `.contentbase/search.sqlite` relative to the collection root.
|
|
264
|
+
*/
|
|
265
|
+
private async _getSemanticSearch(options?: { dbPath?: string; embeddingProvider?: string; embeddingModel?: string }) {
|
|
266
|
+
if (this._semanticSearch?.state?.get('dbReady')) return this._semanticSearch
|
|
267
|
+
|
|
268
|
+
// Dynamically import and attach SemanticSearch if not already registered
|
|
269
|
+
const { SemanticSearch } = await import('./semantic-search.js')
|
|
270
|
+
if (!this.container.features.available.includes('semanticSearch')) {
|
|
271
|
+
SemanticSearch.attach(this.container as any)
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
// Put .contentbase at project root (dirname of docs/), not inside the docs folder
|
|
275
|
+
const projectRoot = dirname(this.collectionPath)
|
|
276
|
+
const dbPath = options?.dbPath ?? join(projectRoot, '.contentbase/search.sqlite')
|
|
277
|
+
this._semanticSearch = (this.container as any).feature('semanticSearch', {
|
|
278
|
+
dbPath,
|
|
279
|
+
...(options?.embeddingProvider ? { embeddingProvider: options.embeddingProvider } : {}),
|
|
280
|
+
...(options?.embeddingModel ? { embeddingModel: options.embeddingModel } : {}),
|
|
281
|
+
})
|
|
282
|
+
|
|
283
|
+
await this._semanticSearch.initDb()
|
|
284
|
+
return this._semanticSearch
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* Check if a search index exists for this collection.
|
|
289
|
+
*/
|
|
290
|
+
private _hasSearchIndex(): boolean {
|
|
291
|
+
const dbDir = join(dirname(this.collectionPath), '.contentbase')
|
|
292
|
+
if (!existsSync(dbDir)) return false
|
|
293
|
+
try {
|
|
294
|
+
const files = readdirSync(dbDir) as string[]
|
|
295
|
+
return files.some((f: string) => f.startsWith('search.') && f.endsWith('.sqlite'))
|
|
296
|
+
} catch {
|
|
297
|
+
return false
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
/**
|
|
302
|
+
* BM25 keyword search across indexed documents.
|
|
303
|
+
* If no search index exists, throws with an actionable message.
|
|
304
|
+
*/
|
|
305
|
+
async search(query: string, options?: { limit?: number; model?: string; where?: Record<string, any> }) {
|
|
306
|
+
if (!this._hasSearchIndex() && !this._semanticSearch) {
|
|
307
|
+
throw new Error('No search index found. Run: cbase embed')
|
|
308
|
+
}
|
|
309
|
+
const ss = await this._getSemanticSearch()
|
|
310
|
+
return ss.search(query, options)
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
/**
|
|
314
|
+
* Vector similarity search using embeddings.
|
|
315
|
+
* Finds conceptually related documents even without keyword matches.
|
|
316
|
+
*/
|
|
317
|
+
async vectorSearch(query: string, options?: { limit?: number; model?: string; where?: Record<string, any> }) {
|
|
318
|
+
if (!this._hasSearchIndex() && !this._semanticSearch) {
|
|
319
|
+
throw new Error('No search index found. Run: cbase embed')
|
|
320
|
+
}
|
|
321
|
+
const ss = await this._getSemanticSearch()
|
|
322
|
+
return ss.vectorSearch(query, options)
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
/**
|
|
326
|
+
* Combined keyword + semantic search with Reciprocal Rank Fusion.
|
|
327
|
+
* Best for general questions about the collection.
|
|
328
|
+
*/
|
|
329
|
+
async hybridSearch(query: string, options?: { limit?: number; model?: string; where?: Record<string, any>; ftsWeight?: number; vecWeight?: number }) {
|
|
330
|
+
if (!this._hasSearchIndex() && !this._semanticSearch) {
|
|
331
|
+
throw new Error('No search index found. Run: cbase embed')
|
|
332
|
+
}
|
|
333
|
+
const ss = await this._getSemanticSearch()
|
|
334
|
+
return ss.hybridSearch(query, options)
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
/**
|
|
338
|
+
* Build the search index from all documents in the collection.
|
|
339
|
+
* Chunks documents and generates embeddings.
|
|
340
|
+
*/
|
|
341
|
+
async buildSearchIndex(options?: { force?: boolean; embeddingProvider?: string; embeddingModel?: string; onProgress?: (indexed: number, total: number) => void }) {
|
|
342
|
+
if (!this.isLoaded) await this.load()
|
|
343
|
+
|
|
344
|
+
const ss = await this._getSemanticSearch({
|
|
345
|
+
embeddingProvider: options?.embeddingProvider,
|
|
346
|
+
embeddingModel: options?.embeddingModel,
|
|
347
|
+
})
|
|
348
|
+
|
|
349
|
+
const docs = this._collectDocumentInputs()
|
|
350
|
+
const toIndex = options?.force ? docs : docs.filter((doc: any) => ss.needsReindex(doc))
|
|
351
|
+
|
|
352
|
+
if (toIndex.length === 0) return { indexed: 0, total: docs.length }
|
|
353
|
+
|
|
354
|
+
// Remove stale documents
|
|
355
|
+
ss.removeStale(docs.map((d: any) => d.pathId))
|
|
356
|
+
|
|
357
|
+
// Index in batches for progress reporting
|
|
358
|
+
const batchSize = 5
|
|
359
|
+
let indexed = 0
|
|
360
|
+
for (let i = 0; i < toIndex.length; i += batchSize) {
|
|
361
|
+
const batch = toIndex.slice(i, i + batchSize)
|
|
362
|
+
await ss.indexDocuments(batch)
|
|
363
|
+
indexed += batch.length
|
|
364
|
+
options?.onProgress?.(indexed, toIndex.length)
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
return { indexed, total: docs.length }
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
/**
|
|
371
|
+
* Rebuild the entire search index from scratch.
|
|
372
|
+
*/
|
|
373
|
+
async rebuildSearchIndex(options?: { embeddingProvider?: string; embeddingModel?: string; onProgress?: (indexed: number, total: number) => void }) {
|
|
374
|
+
const ss = await this._getSemanticSearch({
|
|
375
|
+
embeddingProvider: options?.embeddingProvider,
|
|
376
|
+
embeddingModel: options?.embeddingModel,
|
|
377
|
+
})
|
|
378
|
+
await ss.reindex()
|
|
379
|
+
return this.buildSearchIndex({ force: true, ...options })
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
/**
|
|
383
|
+
* Get the current search index status.
|
|
384
|
+
*/
|
|
385
|
+
get searchIndexStatus() {
|
|
386
|
+
if (!this._semanticSearch?.state?.get('dbReady')) {
|
|
387
|
+
if (!this._hasSearchIndex()) {
|
|
388
|
+
return { exists: false, documentCount: 0, chunkCount: 0, embeddingCount: 0, lastIndexedAt: null, provider: null, model: null, dimensions: 0, dbSizeBytes: 0 }
|
|
389
|
+
}
|
|
390
|
+
return { exists: true, documentCount: -1, chunkCount: -1, embeddingCount: -1, lastIndexedAt: null, provider: null, model: null, dimensions: 0, dbSizeBytes: 0 }
|
|
391
|
+
}
|
|
392
|
+
const stats = this._semanticSearch.getStats()
|
|
393
|
+
return { exists: true, ...stats }
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
/**
|
|
397
|
+
* Convert collection documents to DocumentInput format for the semantic search feature.
|
|
398
|
+
*/
|
|
399
|
+
private _collectDocumentInputs() {
|
|
400
|
+
const inputs: any[] = []
|
|
401
|
+
for (const pathId of this.collection.available) {
|
|
402
|
+
const doc = this.collection.document(pathId) as any
|
|
403
|
+
const modelDef = (this.collection as any).findModelDefinition?.(pathId)
|
|
404
|
+
|
|
405
|
+
// Extract sections from the document content using heading markers
|
|
406
|
+
const sections: any[] = []
|
|
407
|
+
const lines = doc.content.split('\n')
|
|
408
|
+
let currentHeading: string | null = null
|
|
409
|
+
let currentContent: string[] = []
|
|
410
|
+
|
|
411
|
+
for (const line of lines) {
|
|
412
|
+
const h2Match = line.match(/^## (.+)/)
|
|
413
|
+
if (h2Match) {
|
|
414
|
+
if (currentHeading) {
|
|
415
|
+
sections.push({
|
|
416
|
+
heading: currentHeading,
|
|
417
|
+
headingPath: currentHeading,
|
|
418
|
+
content: currentContent.join('\n').trim(),
|
|
419
|
+
level: 2,
|
|
420
|
+
})
|
|
421
|
+
}
|
|
422
|
+
currentHeading = h2Match[1].trim()
|
|
423
|
+
currentContent = []
|
|
424
|
+
} else if (currentHeading) {
|
|
425
|
+
currentContent.push(line)
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
if (currentHeading) {
|
|
429
|
+
sections.push({
|
|
430
|
+
heading: currentHeading,
|
|
431
|
+
headingPath: currentHeading,
|
|
432
|
+
content: currentContent.join('\n').trim(),
|
|
433
|
+
level: 2,
|
|
434
|
+
})
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
inputs.push({
|
|
438
|
+
pathId,
|
|
439
|
+
model: modelDef?.name ?? undefined,
|
|
440
|
+
title: doc.title,
|
|
441
|
+
slug: doc.slug,
|
|
442
|
+
meta: doc.meta,
|
|
443
|
+
content: doc.content,
|
|
444
|
+
sections: sections.length > 0 ? sections : undefined,
|
|
445
|
+
})
|
|
446
|
+
}
|
|
447
|
+
return inputs
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
/**
|
|
451
|
+
* Returns an object with query builders keyed by model name (singular and plural, lowercased).
|
|
452
|
+
*
|
|
453
|
+
* Provides a convenient shorthand for querying without looking up model definitions manually.
|
|
454
|
+
*
|
|
455
|
+
* @example
|
|
456
|
+
* ```typescript
|
|
457
|
+
* const contentDb = container.feature('contentDb', { rootPath: './docs' })
|
|
458
|
+
* await contentDb.load()
|
|
459
|
+
* const allArticles = await contentDb.queries.articles.fetchAll()
|
|
460
|
+
* const firstTask = await contentDb.queries.task.first()
|
|
461
|
+
* ```
|
|
462
|
+
*/
|
|
463
|
+
get queries(): Record<string, ReturnType<typeof this.query>> {
|
|
464
|
+
const queryChains: [string, ReturnType<typeof this.query>][] = []
|
|
465
|
+
for (const modelName of this.modelNames) {
|
|
466
|
+
const queryChain = this.query(this.models[modelName])
|
|
467
|
+
const pluralized = this.container.utils.stringUtils.pluralize(modelName).toLowerCase()
|
|
468
|
+
queryChains.push([modelName.toLowerCase(), queryChain])
|
|
469
|
+
queryChains.push([pluralized, queryChain])
|
|
470
|
+
}
|
|
471
|
+
return Object.fromEntries(queryChains)
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
export default features.register('contentDb', ContentDb)
|