hyacinth-ai 0.9.6
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 +205 -0
- package/commands.json +25 -0
- package/dist/agents/builtins.d.ts +8 -0
- package/dist/agents/builtins.js +50 -0
- package/dist/agents/config-loader.d.ts +15 -0
- package/dist/agents/config-loader.js +75 -0
- package/dist/agents/delegate-tool.d.ts +109 -0
- package/dist/agents/delegate-tool.js +407 -0
- package/dist/agents/index.d.ts +5 -0
- package/dist/agents/index.js +5 -0
- package/dist/agents/registry.d.ts +2 -0
- package/dist/agents/registry.js +2 -0
- package/dist/bypass/agents/companion/index.d.ts +57 -0
- package/dist/bypass/agents/companion/index.js +487 -0
- package/dist/bypass/agents/orchestrator/index.d.ts +17 -0
- package/dist/bypass/agents/orchestrator/index.js +414 -0
- package/dist/bypass/agents/orchestrator.d.ts +16 -0
- package/dist/bypass/agents/orchestrator.js +377 -0
- package/dist/bypass/agents/world-engine/agent.d.ts +41 -0
- package/dist/bypass/agents/world-engine/agent.js +385 -0
- package/dist/bypass/agents/world-engine/index.d.ts +52 -0
- package/dist/bypass/agents/world-engine/index.js +198 -0
- package/dist/bypass/agents/world-engine/sim.d.ts +14 -0
- package/dist/bypass/agents/world-engine/sim.js +120 -0
- package/dist/bypass/agents/world-engine/store.d.ts +110 -0
- package/dist/bypass/agents/world-engine/store.js +519 -0
- package/dist/bypass/agents/world-engine/ticker.d.ts +37 -0
- package/dist/bypass/agents/world-engine/ticker.js +214 -0
- package/dist/bypass/agents/world-engine/tools.d.ts +6 -0
- package/dist/bypass/agents/world-engine/tools.js +380 -0
- package/dist/bypass/agents/world-engine/types.d.ts +202 -0
- package/dist/bypass/agents/world-engine/types.js +56 -0
- package/dist/bypass/agents/world-engine.d.ts +20 -0
- package/dist/bypass/agents/world-engine.js +63 -0
- package/dist/bypass/base.d.ts +48 -0
- package/dist/bypass/base.js +126 -0
- package/dist/bypass/index.d.ts +5 -0
- package/dist/bypass/index.js +6 -0
- package/dist/bypass/manager.d.ts +41 -0
- package/dist/bypass/manager.js +179 -0
- package/dist/bypass/types.d.ts +63 -0
- package/dist/bypass/types.js +14 -0
- package/dist/channels/auto-detect.d.ts +25 -0
- package/dist/channels/auto-detect.js +77 -0
- package/dist/channels/builtin/http-webhook.d.ts +25 -0
- package/dist/channels/builtin/http-webhook.js +287 -0
- package/dist/channels/builtin/tui-channel.d.ts +33 -0
- package/dist/channels/builtin/tui-channel.js +61 -0
- package/dist/channels/builtin/tui-ws-session.d.ts +16 -0
- package/dist/channels/builtin/tui-ws-session.js +90 -0
- package/dist/channels/builtin/webui-output-handler.d.ts +30 -0
- package/dist/channels/builtin/webui-output-handler.js +93 -0
- package/dist/channels/index.d.ts +5 -0
- package/dist/channels/index.js +3 -0
- package/dist/channels/interface.d.ts +148 -0
- package/dist/channels/interface.js +15 -0
- package/dist/channels/manager.d.ts +43 -0
- package/dist/channels/manager.js +156 -0
- package/dist/channels/message-queue.d.ts +36 -0
- package/dist/channels/message-queue.js +91 -0
- package/dist/channels/plugins/clawbot/clawbot-auth.d.ts +50 -0
- package/dist/channels/plugins/clawbot/clawbot-auth.js +235 -0
- package/dist/channels/plugins/clawbot/clawbot-channel.d.ts +76 -0
- package/dist/channels/plugins/clawbot/clawbot-channel.js +566 -0
- package/dist/channels/plugins/clawbot/clawbot-client.d.ts +180 -0
- package/dist/channels/plugins/clawbot/clawbot-client.js +312 -0
- package/dist/channels/plugins/clawbot/clawbot-config.d.ts +30 -0
- package/dist/channels/plugins/clawbot/clawbot-config.js +28 -0
- package/dist/channels/plugins/clawbot/clawbot-message-queue.d.ts +27 -0
- package/dist/channels/plugins/clawbot/clawbot-message-queue.js +114 -0
- package/dist/channels/plugins/clawbot/clawbot-session.d.ts +10 -0
- package/dist/channels/plugins/clawbot/clawbot-session.js +26 -0
- package/dist/channels/plugins/clawbot/index.d.ts +17 -0
- package/dist/channels/plugins/clawbot/index.js +58 -0
- package/dist/channels/plugins/feishu/feishu-channel.d.ts +57 -0
- package/dist/channels/plugins/feishu/feishu-channel.js +602 -0
- package/dist/channels/plugins/feishu/feishu-client.d.ts +23 -0
- package/dist/channels/plugins/feishu/feishu-client.js +86 -0
- package/dist/channels/plugins/feishu/feishu-config.d.ts +53 -0
- package/dist/channels/plugins/feishu/feishu-config.js +35 -0
- package/dist/channels/plugins/feishu/feishu-event.d.ts +102 -0
- package/dist/channels/plugins/feishu/feishu-event.js +257 -0
- package/dist/channels/plugins/feishu/feishu-log-suppressor.d.ts +7 -0
- package/dist/channels/plugins/feishu/feishu-log-suppressor.js +34 -0
- package/dist/channels/plugins/feishu/feishu-message-queue.d.ts +27 -0
- package/dist/channels/plugins/feishu/feishu-message-queue.js +112 -0
- package/dist/channels/plugins/feishu/feishu-send.d.ts +44 -0
- package/dist/channels/plugins/feishu/feishu-send.js +232 -0
- package/dist/channels/plugins/feishu/feishu-session.d.ts +44 -0
- package/dist/channels/plugins/feishu/feishu-session.js +84 -0
- package/dist/channels/plugins/feishu/feishu-streaming.d.ts +49 -0
- package/dist/channels/plugins/feishu/feishu-streaming.js +185 -0
- package/dist/channels/plugins/feishu/feishu-transport.d.ts +29 -0
- package/dist/channels/plugins/feishu/feishu-transport.js +99 -0
- package/dist/channels/plugins/feishu/index.d.ts +22 -0
- package/dist/channels/plugins/feishu/index.js +68 -0
- package/dist/cli/doctor.d.ts +20 -0
- package/dist/cli/doctor.js +317 -0
- package/dist/context/cache-strategy.d.ts +76 -0
- package/dist/context/cache-strategy.js +123 -0
- package/dist/context/composer.d.ts +77 -0
- package/dist/context/composer.js +318 -0
- package/dist/context/compressor.d.ts +218 -0
- package/dist/context/compressor.js +909 -0
- package/dist/context/index.d.ts +14 -0
- package/dist/context/index.js +8 -0
- package/dist/context/interface.d.ts +33 -0
- package/dist/context/interface.js +2 -0
- package/dist/context/manifest-defaults.d.ts +51 -0
- package/dist/context/manifest-defaults.js +133 -0
- package/dist/context/manifest-loader.d.ts +16 -0
- package/dist/context/manifest-loader.js +103 -0
- package/dist/context/manifest-types.d.ts +26 -0
- package/dist/context/manifest-types.js +2 -0
- package/dist/context/precision/analyzer.d.ts +31 -0
- package/dist/context/precision/analyzer.js +131 -0
- package/dist/context/precision/companion.d.ts +27 -0
- package/dist/context/precision/companion.js +144 -0
- package/dist/context/precision/default.d.ts +14 -0
- package/dist/context/precision/default.js +17 -0
- package/dist/context/precision/index.d.ts +9 -0
- package/dist/context/precision/index.js +7 -0
- package/dist/context/precision/keyword-pool.d.ts +27 -0
- package/dist/context/precision/keyword-pool.js +66 -0
- package/dist/context/precision/strategy.d.ts +18 -0
- package/dist/context/precision/strategy.js +51 -0
- package/dist/context/precision/summary-store.d.ts +18 -0
- package/dist/context/precision/summary-store.js +67 -0
- package/dist/context/precision/types.d.ts +23 -0
- package/dist/context/precision/types.js +2 -0
- package/dist/context/profiles.d.ts +45 -0
- package/dist/context/profiles.js +92 -0
- package/dist/context/prompt-builder.d.ts +76 -0
- package/dist/context/prompt-builder.js +133 -0
- package/dist/context/retriever.d.ts +44 -0
- package/dist/context/retriever.js +203 -0
- package/dist/context/router.d.ts +122 -0
- package/dist/context/router.js +291 -0
- package/dist/context/section-resolver.d.ts +38 -0
- package/dist/context/section-resolver.js +398 -0
- package/dist/context/tokenizer.d.ts +23 -0
- package/dist/context/tokenizer.js +78 -0
- package/dist/dependency/analyzer.d.ts +33 -0
- package/dist/dependency/analyzer.js +242 -0
- package/dist/dependency/data-flow-tracker.d.ts +12 -0
- package/dist/dependency/data-flow-tracker.js +97 -0
- package/dist/dependency/function-parser.d.ts +34 -0
- package/dist/dependency/function-parser.js +295 -0
- package/dist/dependency/index.d.ts +14 -0
- package/dist/dependency/index.js +20 -0
- package/dist/dependency/parser.d.ts +10 -0
- package/dist/dependency/parser.js +93 -0
- package/dist/dependency/types.d.ts +57 -0
- package/dist/dependency/types.js +2 -0
- package/dist/env/env-collector.d.ts +45 -0
- package/dist/env/env-collector.js +221 -0
- package/dist/env/index.d.ts +3 -0
- package/dist/env/index.js +2 -0
- package/dist/event-store.d.ts +27 -0
- package/dist/event-store.js +71 -0
- package/dist/evolution/git-manager.d.ts +46 -0
- package/dist/evolution/git-manager.js +276 -0
- package/dist/evolution/index.d.ts +3 -0
- package/dist/evolution/index.js +2 -0
- package/dist/flow/bootstrap-flow.d.ts +19 -0
- package/dist/flow/bootstrap-flow.js +72 -0
- package/dist/flow/flow-registry.d.ts +12 -0
- package/dist/flow/flow-registry.js +74 -0
- package/dist/flow/flow-tools.d.ts +8 -0
- package/dist/flow/flow-tools.js +106 -0
- package/dist/flow/index.d.ts +6 -0
- package/dist/flow/index.js +8 -0
- package/dist/flow/todo-flow.d.ts +25 -0
- package/dist/flow/todo-flow.js +107 -0
- package/dist/flow/types.d.ts +78 -0
- package/dist/flow/types.js +12 -0
- package/dist/flows/bootstrap.d.ts +18 -0
- package/dist/flows/bootstrap.js +119 -0
- package/dist/flows/index.d.ts +6 -0
- package/dist/flows/index.js +11 -0
- package/dist/flows/todo.d.ts +26 -0
- package/dist/flows/todo.js +174 -0
- package/dist/flows/tools.d.ts +8 -0
- package/dist/flows/tools.js +119 -0
- package/dist/flows/types.d.ts +27 -0
- package/dist/flows/types.js +10 -0
- package/dist/gateway/cli.d.ts +5 -0
- package/dist/gateway/cli.js +1027 -0
- package/dist/gateway/factory.d.ts +80 -0
- package/dist/gateway/factory.js +832 -0
- package/dist/gateway/guardian.d.ts +8 -0
- package/dist/gateway/guardian.js +30 -0
- package/dist/gateway/index.d.ts +3 -0
- package/dist/gateway/index.js +3 -0
- package/dist/gateway/server.d.ts +17 -0
- package/dist/gateway/server.js +96 -0
- package/dist/gateway/tui.d.ts +16 -0
- package/dist/gateway/tui.js +3273 -0
- package/dist/hot-reload/agent-watcher.d.ts +24 -0
- package/dist/hot-reload/agent-watcher.js +175 -0
- package/dist/hot-reload/bundle-watcher.d.ts +12 -0
- package/dist/hot-reload/bundle-watcher.js +35 -0
- package/dist/hot-reload/channel-watcher.d.ts +19 -0
- package/dist/hot-reload/channel-watcher.js +54 -0
- package/dist/hot-reload/command-watcher.d.ts +14 -0
- package/dist/hot-reload/command-watcher.js +54 -0
- package/dist/hot-reload/config-watcher.d.ts +20 -0
- package/dist/hot-reload/config-watcher.js +58 -0
- package/dist/hot-reload/index.d.ts +12 -0
- package/dist/hot-reload/index.js +12 -0
- package/dist/hot-reload/manager.d.ts +58 -0
- package/dist/hot-reload/manager.js +243 -0
- package/dist/hot-reload/manifest-watcher.d.ts +9 -0
- package/dist/hot-reload/manifest-watcher.js +42 -0
- package/dist/hot-reload/mcp-watcher.d.ts +18 -0
- package/dist/hot-reload/mcp-watcher.js +64 -0
- package/dist/hot-reload/model-catalog-watcher.d.ts +18 -0
- package/dist/hot-reload/model-catalog-watcher.js +62 -0
- package/dist/hot-reload/plugin-watcher.d.ts +20 -0
- package/dist/hot-reload/plugin-watcher.js +56 -0
- package/dist/hot-reload/prompt-watcher.d.ts +6 -0
- package/dist/hot-reload/prompt-watcher.js +38 -0
- package/dist/hot-reload/provider-watcher.d.ts +16 -0
- package/dist/hot-reload/provider-watcher.js +45 -0
- package/dist/hot-reload/skill-watcher.d.ts +19 -0
- package/dist/hot-reload/skill-watcher.js +82 -0
- package/dist/hot-reload/tool-watcher.d.ts +16 -0
- package/dist/hot-reload/tool-watcher.js +168 -0
- package/dist/hot-reload/workflow-watcher.d.ts +19 -0
- package/dist/hot-reload/workflow-watcher.js +84 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +6 -0
- package/dist/knowledge/fts5-retriever.d.ts +30 -0
- package/dist/knowledge/fts5-retriever.js +223 -0
- package/dist/knowledge/index.d.ts +11 -0
- package/dist/knowledge/index.js +14 -0
- package/dist/knowledge/indexer.d.ts +41 -0
- package/dist/knowledge/indexer.js +186 -0
- package/dist/knowledge/query-preprocessor.d.ts +13 -0
- package/dist/knowledge/query-preprocessor.js +63 -0
- package/dist/knowledge/retriever.d.ts +45 -0
- package/dist/knowledge/retriever.js +9 -0
- package/dist/knowledge/store.d.ts +27 -0
- package/dist/knowledge/store.js +61 -0
- package/dist/knowledge/structured-store.d.ts +78 -0
- package/dist/knowledge/structured-store.js +280 -0
- package/dist/knowledge/structured-tools.d.ts +12 -0
- package/dist/knowledge/structured-tools.js +151 -0
- package/dist/knowledge/tools.d.ts +20 -0
- package/dist/knowledge/tools.js +238 -0
- package/dist/knowledge/watcher.d.ts +28 -0
- package/dist/knowledge/watcher.js +113 -0
- package/dist/lifecycle/index.d.ts +12 -0
- package/dist/lifecycle/index.js +14 -0
- package/dist/lifecycle/interface.d.ts +94 -0
- package/dist/lifecycle/interface.js +2 -0
- package/dist/lifecycle/local-model.d.ts +62 -0
- package/dist/lifecycle/local-model.js +331 -0
- package/dist/lifecycle/manager.d.ts +70 -0
- package/dist/lifecycle/manager.js +374 -0
- package/dist/lifecycle/supervisor.d.ts +89 -0
- package/dist/lifecycle/supervisor.js +277 -0
- package/dist/lifecycle-integration-test.d.ts +2 -0
- package/dist/lifecycle-integration-test.js +72 -0
- package/dist/local-model/download-manager.d.ts +59 -0
- package/dist/local-model/download-manager.js +517 -0
- package/dist/local-model/index.d.ts +109 -0
- package/dist/local-model/index.js +233 -0
- package/dist/local-model/llamacpp-provider.d.ts +95 -0
- package/dist/local-model/llamacpp-provider.js +379 -0
- package/dist/local-model/model-bridge.d.ts +48 -0
- package/dist/local-model/model-bridge.js +256 -0
- package/dist/local-model/model-registry.d.ts +47 -0
- package/dist/local-model/model-registry.js +188 -0
- package/dist/local-model/types.d.ts +49 -0
- package/dist/local-model/types.js +2 -0
- package/dist/logging/index.d.ts +3 -0
- package/dist/logging/index.js +3 -0
- package/dist/logging/logger.d.ts +56 -0
- package/dist/logging/logger.js +94 -0
- package/dist/machine/flows/bootstrap.d.ts +18 -0
- package/dist/machine/flows/bootstrap.js +119 -0
- package/dist/machine/flows/index.d.ts +6 -0
- package/dist/machine/flows/index.js +11 -0
- package/dist/machine/flows/spec.d.ts +17 -0
- package/dist/machine/flows/spec.js +176 -0
- package/dist/machine/flows/todo.d.ts +26 -0
- package/dist/machine/flows/todo.js +175 -0
- package/dist/machine/flows/tools.d.ts +8 -0
- package/dist/machine/flows/tools.js +119 -0
- package/dist/machine/flows/types.d.ts +33 -0
- package/dist/machine/flows/types.js +10 -0
- package/dist/machine/index.d.ts +8 -0
- package/dist/machine/index.js +9 -0
- package/dist/machine/registry.d.ts +34 -0
- package/dist/machine/registry.js +98 -0
- package/dist/machine/runner.d.ts +41 -0
- package/dist/machine/runner.js +177 -0
- package/dist/machine/types.d.ts +121 -0
- package/dist/machine/types.js +9 -0
- package/dist/mcp/bridge.d.ts +33 -0
- package/dist/mcp/bridge.js +99 -0
- package/dist/mcp/client.d.ts +37 -0
- package/dist/mcp/client.js +161 -0
- package/dist/mcp/config.d.ts +15 -0
- package/dist/mcp/config.js +85 -0
- package/dist/mcp/index.d.ts +7 -0
- package/dist/mcp/index.js +7 -0
- package/dist/mcp/install-manager.d.ts +31 -0
- package/dist/mcp/install-manager.js +158 -0
- package/dist/mcp/lifecycle.d.ts +41 -0
- package/dist/mcp/lifecycle.js +175 -0
- package/dist/mcp/process-transport.d.ts +21 -0
- package/dist/mcp/process-transport.js +59 -0
- package/dist/mcp/side-effect.d.ts +5 -0
- package/dist/mcp/side-effect.js +21 -0
- package/dist/mcp/system.d.ts +95 -0
- package/dist/mcp/system.js +279 -0
- package/dist/memory/companion-session.d.ts +22 -0
- package/dist/memory/companion-session.js +77 -0
- package/dist/memory/compression-boundary.d.ts +20 -0
- package/dist/memory/compression-boundary.js +40 -0
- package/dist/memory/conversation.d.ts +34 -0
- package/dist/memory/conversation.js +107 -0
- package/dist/memory/events.d.ts +42 -0
- package/dist/memory/events.js +56 -0
- package/dist/memory/index.d.ts +7 -0
- package/dist/memory/index.js +6 -0
- package/dist/memory/memory-store.d.ts +11 -0
- package/dist/memory/memory-store.js +51 -0
- package/dist/memory/session-allowlist.d.ts +11 -0
- package/dist/memory/session-allowlist.js +50 -0
- package/dist/memory/session.d.ts +48 -0
- package/dist/memory/session.js +275 -0
- package/dist/memory/stats.d.ts +23 -0
- package/dist/memory/stats.js +59 -0
- package/dist/memory/summary.d.ts +7 -0
- package/dist/memory/summary.js +23 -0
- package/dist/multimodal/index.d.ts +66 -0
- package/dist/multimodal/index.js +210 -0
- package/dist/orchestrator/index.d.ts +5 -0
- package/dist/orchestrator/index.js +4 -0
- package/dist/orchestrator/loop.d.ts +331 -0
- package/dist/orchestrator/loop.js +2443 -0
- package/dist/orchestrator/plan-store.d.ts +81 -0
- package/dist/orchestrator/plan-store.js +167 -0
- package/dist/orchestrator/planner.d.ts +20 -0
- package/dist/orchestrator/planner.js +34 -0
- package/dist/parser/index.d.ts +2 -0
- package/dist/parser/index.js +2 -0
- package/dist/parser/router.d.ts +30 -0
- package/dist/parser/router.js +61 -0
- package/dist/plugins/api.d.ts +39 -0
- package/dist/plugins/api.js +85 -0
- package/dist/plugins/define.d.ts +27 -0
- package/dist/plugins/define.js +32 -0
- package/dist/plugins/index.d.ts +9 -0
- package/dist/plugins/index.js +5 -0
- package/dist/plugins/loader.d.ts +39 -0
- package/dist/plugins/loader.js +128 -0
- package/dist/plugins/manager.d.ts +61 -0
- package/dist/plugins/manager.js +257 -0
- package/dist/plugins/types.d.ts +82 -0
- package/dist/plugins/types.js +2 -0
- package/dist/prompts/agents/code-reviewer.md +16 -0
- package/dist/prompts/agents/security-auditor.md +17 -0
- package/dist/prompts/agents/test-writer.md +15 -0
- package/dist/prompts/attention/attention.md +12 -0
- package/dist/prompts/environment/environment.md +18 -0
- package/dist/prompts/environment/feishu.md +107 -0
- package/dist/prompts/flows/bootstrap-confirm.md +14 -0
- package/dist/prompts/flows/bootstrap-identity.md +11 -0
- package/dist/prompts/flows/bootstrap-soul.md +19 -0
- package/dist/prompts/flows/bootstrap-user.md +11 -0
- package/dist/prompts/flows/spec-checklist.md +27 -0
- package/dist/prompts/flows/spec-define.md +64 -0
- package/dist/prompts/flows/spec-executing-checklist.md +15 -0
- package/dist/prompts/flows/spec-executing-tasks.md +15 -0
- package/dist/prompts/flows/spec-spec.md +51 -0
- package/dist/prompts/flows/spec-tasks.md +32 -0
- package/dist/prompts/flows/todo-execution.md +7 -0
- package/dist/prompts/flows/todo-planning.md +18 -0
- package/dist/prompts/framework/architecture.md +131 -0
- package/dist/prompts/identity/identity.md +2 -0
- package/dist/prompts/loader.d.ts +24 -0
- package/dist/prompts/loader.js +102 -0
- package/dist/prompts/loader.ts +119 -0
- package/dist/prompts/orchestration/summary.md +14 -0
- package/dist/prompts/persona/BOOTSTRAP.md +5 -0
- package/dist/prompts/persona/IDENTITY.md +16 -0
- package/dist/prompts/persona/PartnerMemory.md +5 -0
- package/dist/prompts/persona/PartnerSoul.md +7 -0
- package/dist/prompts/persona/SOUL.md +30 -0
- package/dist/prompts/persona/USER.md +16 -0
- package/dist/prompts/precise/analyze.md +23 -0
- package/dist/prompts/precise/persona.md +18 -0
- package/dist/prompts/safety/coding-standards.md +5 -0
- package/dist/prompts/safety/safety.md +4 -0
- package/dist/prompts/skills/code-review.md +4 -0
- package/dist/prompts/skills/debug.md +7 -0
- package/dist/prompts/skills/framework-reference.md +131 -0
- package/dist/prompts/skills/refactor.md +6 -0
- package/dist/prompts/summary.md +22 -0
- package/dist/prompts/tools/framework-capabilities.md +241 -0
- package/dist/prompts/tools/tool-rules.md +15 -0
- package/dist/provider/anthropic.d.ts +62 -0
- package/dist/provider/anthropic.js +361 -0
- package/dist/provider/catalog.d.ts +58 -0
- package/dist/provider/catalog.js +97 -0
- package/dist/provider/compatible.d.ts +89 -0
- package/dist/provider/compatible.js +328 -0
- package/dist/provider/config.d.ts +23 -0
- package/dist/provider/config.js +158 -0
- package/dist/provider/deepseek.d.ts +25 -0
- package/dist/provider/deepseek.js +37 -0
- package/dist/provider/fallback.d.ts +51 -0
- package/dist/provider/fallback.js +113 -0
- package/dist/provider/gemini.d.ts +27 -0
- package/dist/provider/gemini.js +170 -0
- package/dist/provider/index.d.ts +36 -0
- package/dist/provider/index.js +42 -0
- package/dist/provider/interface.d.ts +62 -0
- package/dist/provider/interface.js +2 -0
- package/dist/provider/local-config.d.ts +37 -0
- package/dist/provider/local-config.js +146 -0
- package/dist/provider/local.d.ts +45 -0
- package/dist/provider/local.js +248 -0
- package/dist/provider/manager.d.ts +67 -0
- package/dist/provider/manager.js +355 -0
- package/dist/provider/mimo.d.ts +19 -0
- package/dist/provider/mimo.js +30 -0
- package/dist/provider/minimax.d.ts +22 -0
- package/dist/provider/minimax.js +33 -0
- package/dist/provider/model-catalog-loader.d.ts +42 -0
- package/dist/provider/model-catalog-loader.js +89 -0
- package/dist/provider/model-channel-registry.d.ts +130 -0
- package/dist/provider/model-channel-registry.js +488 -0
- package/dist/provider/model-router.d.ts +60 -0
- package/dist/provider/model-router.js +87 -0
- package/dist/provider/openai.d.ts +54 -0
- package/dist/provider/openai.js +274 -0
- package/dist/provider/qwen.d.ts +19 -0
- package/dist/provider/qwen.js +30 -0
- package/dist/provider/resilient.d.ts +46 -0
- package/dist/provider/resilient.js +181 -0
- package/dist/provider/retry.d.ts +16 -0
- package/dist/provider/retry.js +78 -0
- package/dist/provider/router.d.ts +68 -0
- package/dist/provider/router.js +145 -0
- package/dist/provider/tool-args-recovery.d.ts +36 -0
- package/dist/provider/tool-args-recovery.js +91 -0
- package/dist/provider/user-id.d.ts +13 -0
- package/dist/provider/user-id.js +53 -0
- package/dist/provider/zhipu.d.ts +19 -0
- package/dist/provider/zhipu.js +32 -0
- package/dist/registry/agent.registry.d.ts +57 -0
- package/dist/registry/agent.registry.js +224 -0
- package/dist/registry/base.d.ts +54 -0
- package/dist/registry/base.js +99 -0
- package/dist/registry/channel.registry.d.ts +53 -0
- package/dist/registry/channel.registry.js +87 -0
- package/dist/registry/index.d.ts +9 -0
- package/dist/registry/index.js +10 -0
- package/dist/registry/mcp.registry.d.ts +2 -0
- package/dist/registry/mcp.registry.js +2 -0
- package/dist/registry/plugin.registry.d.ts +33 -0
- package/dist/registry/plugin.registry.js +66 -0
- package/dist/registry/provider.registry.d.ts +51 -0
- package/dist/registry/provider.registry.js +104 -0
- package/dist/registry/skill.registry.d.ts +33 -0
- package/dist/registry/skill.registry.js +95 -0
- package/dist/registry/tool.registry.d.ts +68 -0
- package/dist/registry/tool.registry.js +185 -0
- package/dist/repair/loop-guard.d.ts +98 -0
- package/dist/repair/loop-guard.js +217 -0
- package/dist/repair/scavenge.d.ts +19 -0
- package/dist/repair/scavenge.js +81 -0
- package/dist/repair/storm.d.ts +7 -0
- package/dist/repair/storm.js +7 -0
- package/dist/rollback/index.d.ts +5 -0
- package/dist/rollback/index.js +4 -0
- package/dist/rollback/rollback-tool.d.ts +13 -0
- package/dist/rollback/rollback-tool.js +167 -0
- package/dist/rollback/turn-recorder.d.ts +37 -0
- package/dist/rollback/turn-recorder.js +183 -0
- package/dist/rollback/turn-store.d.ts +29 -0
- package/dist/rollback/turn-store.js +114 -0
- package/dist/rollback/types.d.ts +51 -0
- package/dist/rollback/types.js +9 -0
- package/dist/runtime/config-center.d.ts +92 -0
- package/dist/runtime/config-center.js +467 -0
- package/dist/runtime/config-schema.d.ts +201 -0
- package/dist/runtime/config-schema.js +2 -0
- package/dist/runtime/defaults.d.ts +3 -0
- package/dist/runtime/defaults.js +146 -0
- package/dist/schedule/cron.d.ts +24 -0
- package/dist/schedule/cron.js +145 -0
- package/dist/schedule/index.d.ts +6 -0
- package/dist/schedule/index.js +4 -0
- package/dist/schedule/persistence.d.ts +33 -0
- package/dist/schedule/persistence.js +106 -0
- package/dist/schedule/scheduler.d.ts +85 -0
- package/dist/schedule/scheduler.js +630 -0
- package/dist/schedule/types.d.ts +185 -0
- package/dist/schedule/types.js +2 -0
- package/dist/setup/config.d.ts +189 -0
- package/dist/setup/config.js +253 -0
- package/dist/setup/index.d.ts +3 -0
- package/dist/setup/index.js +3 -0
- package/dist/setup/model-defaults.d.ts +13 -0
- package/dist/setup/model-defaults.js +87 -0
- package/dist/setup/persona-bootstrap.d.ts +42 -0
- package/dist/setup/persona-bootstrap.js +379 -0
- package/dist/setup/wizard.d.ts +32 -0
- package/dist/setup/wizard.js +384 -0
- package/dist/skills/index.d.ts +4 -0
- package/dist/skills/index.js +4 -0
- package/dist/skills/loader.d.ts +12 -0
- package/dist/skills/loader.js +83 -0
- package/dist/skills/registry.d.ts +2 -0
- package/dist/skills/registry.js +2 -0
- package/dist/skills/skill-tool.d.ts +20 -0
- package/dist/skills/skill-tool.js +49 -0
- package/dist/tools/archive.d.ts +17 -0
- package/dist/tools/archive.js +131 -0
- package/dist/tools/ask-user.d.ts +9 -0
- package/dist/tools/ask-user.js +62 -0
- package/dist/tools/background-registry.d.ts +45 -0
- package/dist/tools/background-registry.js +164 -0
- package/dist/tools/bash.d.ts +56 -0
- package/dist/tools/bash.js +391 -0
- package/dist/tools/bundle-registry.d.ts +42 -0
- package/dist/tools/bundle-registry.js +239 -0
- package/dist/tools/bundle-tools.d.ts +11 -0
- package/dist/tools/bundle-tools.js +168 -0
- package/dist/tools/channel-info.d.ts +5 -0
- package/dist/tools/channel-info.js +38 -0
- package/dist/tools/compression.d.ts +7 -0
- package/dist/tools/compression.js +21 -0
- package/dist/tools/config.d.ts +23 -0
- package/dist/tools/config.js +255 -0
- package/dist/tools/db-query.d.ts +12 -0
- package/dist/tools/db-query.js +107 -0
- package/dist/tools/diagnostics.d.ts +30 -0
- package/dist/tools/diagnostics.js +111 -0
- package/dist/tools/diff-channel.d.ts +9 -0
- package/dist/tools/diff-channel.js +17 -0
- package/dist/tools/diff-files.d.ts +17 -0
- package/dist/tools/diff-files.js +88 -0
- package/dist/tools/disk-usage.d.ts +34 -0
- package/dist/tools/disk-usage.js +258 -0
- package/dist/tools/edit.d.ts +30 -0
- package/dist/tools/edit.js +235 -0
- package/dist/tools/executor.d.ts +32 -0
- package/dist/tools/executor.js +66 -0
- package/dist/tools/file-tracker.d.ts +20 -0
- package/dist/tools/file-tracker.js +44 -0
- package/dist/tools/filtered-registry.d.ts +29 -0
- package/dist/tools/filtered-registry.js +50 -0
- package/dist/tools/flow.d.ts +10 -0
- package/dist/tools/flow.js +180 -0
- package/dist/tools/git-tool.d.ts +24 -0
- package/dist/tools/git-tool.js +113 -0
- package/dist/tools/glob.d.ts +29 -0
- package/dist/tools/glob.js +152 -0
- package/dist/tools/grep.d.ts +14 -0
- package/dist/tools/grep.js +325 -0
- package/dist/tools/http-request.d.ts +14 -0
- package/dist/tools/http-request.js +126 -0
- package/dist/tools/index.d.ts +43 -0
- package/dist/tools/index.js +76 -0
- package/dist/tools/injection-filter.d.ts +6 -0
- package/dist/tools/injection-filter.js +71 -0
- package/dist/tools/insert.d.ts +13 -0
- package/dist/tools/insert.js +61 -0
- package/dist/tools/interface.d.ts +30 -0
- package/dist/tools/interface.js +2 -0
- package/dist/tools/json-edit.d.ts +15 -0
- package/dist/tools/json-edit.js +122 -0
- package/dist/tools/multi-edit.d.ts +9 -0
- package/dist/tools/multi-edit.js +146 -0
- package/dist/tools/path-sandbox.d.ts +14 -0
- package/dist/tools/path-sandbox.js +60 -0
- package/dist/tools/process-tools.d.ts +15 -0
- package/dist/tools/process-tools.js +95 -0
- package/dist/tools/python-bridge/bridge.d.ts +24 -0
- package/dist/tools/python-bridge/bridge.js +39 -0
- package/dist/tools/python-bridge/executor.d.ts +6 -0
- package/dist/tools/python-bridge/executor.js +69 -0
- package/dist/tools/python-bridge/index.d.ts +5 -0
- package/dist/tools/python-bridge/index.js +4 -0
- package/dist/tools/python-bridge/parser.d.ts +21 -0
- package/dist/tools/python-bridge/parser.js +258 -0
- package/dist/tools/read.d.ts +16 -0
- package/dist/tools/read.js +276 -0
- package/dist/tools/registry.d.ts +2 -0
- package/dist/tools/registry.js +2 -0
- package/dist/tools/restart.d.ts +10 -0
- package/dist/tools/restart.js +46 -0
- package/dist/tools/result-buffer.d.ts +66 -0
- package/dist/tools/result-buffer.js +146 -0
- package/dist/tools/runtime-control.d.ts +163 -0
- package/dist/tools/runtime-control.js +1780 -0
- package/dist/tools/symbol-references.d.ts +5 -0
- package/dist/tools/symbol-references.js +331 -0
- package/dist/tools/system-info.d.ts +3 -0
- package/dist/tools/system-info.js +55 -0
- package/dist/tools/write.d.ts +18 -0
- package/dist/tools/write.js +118 -0
- package/dist/tools/xref/index.d.ts +25 -0
- package/dist/tools/xref/index.js +25 -0
- package/dist/tools/xref/manager.d.ts +85 -0
- package/dist/tools/xref/manager.js +948 -0
- package/dist/tools/xref/parser.d.ts +34 -0
- package/dist/tools/xref/parser.js +64 -0
- package/dist/tools/xref/regex-parser.d.ts +26 -0
- package/dist/tools/xref/regex-parser.js +446 -0
- package/dist/tools/xref/schema.d.ts +104 -0
- package/dist/tools/xref/schema.js +68 -0
- package/dist/tools/xref/ts-parser.d.ts +20 -0
- package/dist/tools/xref/ts-parser.js +403 -0
- package/dist/tools/xref/xref-build.d.ts +20 -0
- package/dist/tools/xref/xref-build.js +128 -0
- package/dist/tools/xref/xref-graph.d.ts +24 -0
- package/dist/tools/xref/xref-graph.js +88 -0
- package/dist/tools/xref/xref-query.d.ts +30 -0
- package/dist/tools/xref/xref-query.js +123 -0
- package/dist/types.d.ts +217 -0
- package/dist/types.js +2 -0
- package/dist/ui/assistant-message.d.ts +7 -0
- package/dist/ui/assistant-message.js +18 -0
- package/dist/ui/chat-log.d.ts +52 -0
- package/dist/ui/chat-log.js +246 -0
- package/dist/ui/command-registry.d.ts +73 -0
- package/dist/ui/command-registry.js +838 -0
- package/dist/ui/diff-component.d.ts +14 -0
- package/dist/ui/diff-component.js +42 -0
- package/dist/ui/hyperlink-markdown.d.ts +10 -0
- package/dist/ui/hyperlink-markdown.js +21 -0
- package/dist/ui/markdown-message.d.ts +10 -0
- package/dist/ui/markdown-message.js +16 -0
- package/dist/ui/osc8-hyperlinks.d.ts +4 -0
- package/dist/ui/osc8-hyperlinks.js +142 -0
- package/dist/ui/pi-tui-editor.d.ts +35 -0
- package/dist/ui/pi-tui-editor.js +79 -0
- package/dist/ui/slash-commands.d.ts +16 -0
- package/dist/ui/slash-commands.js +29 -0
- package/dist/ui/slash-panel.d.ts +54 -0
- package/dist/ui/slash-panel.js +199 -0
- package/dist/ui/theme.d.ts +120 -0
- package/dist/ui/theme.js +154 -0
- package/dist/ui/tool-display.d.ts +13 -0
- package/dist/ui/tool-display.js +85 -0
- package/dist/ui/tool-execution.d.ts +22 -0
- package/dist/ui/tool-execution.js +87 -0
- package/dist/ui/tui-formatters.d.ts +2 -0
- package/dist/ui/tui-formatters.js +145 -0
- package/dist/ui/user-message.d.ts +5 -0
- package/dist/ui/user-message.js +11 -0
- package/dist/update/check.d.ts +8 -0
- package/dist/update/check.js +28 -0
- package/dist/update/config.d.ts +6 -0
- package/dist/update/config.js +18 -0
- package/dist/update/download.d.ts +3 -0
- package/dist/update/download.js +27 -0
- package/dist/update/index.d.ts +6 -0
- package/dist/update/index.js +5 -0
- package/dist/update/install.d.ts +3 -0
- package/dist/update/install.js +33 -0
- package/dist/update/types.d.ts +16 -0
- package/dist/update/types.js +2 -0
- package/dist/utils/diff.d.ts +9 -0
- package/dist/utils/diff.js +45 -0
- package/dist/utils/misc.d.ts +12 -0
- package/dist/utils/misc.js +34 -0
- package/dist/world-engine/agent.d.ts +41 -0
- package/dist/world-engine/agent.js +385 -0
- package/dist/world-engine/index.d.ts +45 -0
- package/dist/world-engine/index.js +160 -0
- package/dist/world-engine/sim.d.ts +14 -0
- package/dist/world-engine/sim.js +120 -0
- package/dist/world-engine/store.d.ts +110 -0
- package/dist/world-engine/store.js +519 -0
- package/dist/world-engine/ticker.d.ts +37 -0
- package/dist/world-engine/ticker.js +214 -0
- package/dist/world-engine/tools.d.ts +6 -0
- package/dist/world-engine/tools.js +380 -0
- package/dist/world-engine/types.d.ts +202 -0
- package/dist/world-engine/types.js +56 -0
- package/docs/api.md +180 -0
- package/docs/architecture.md +206 -0
- package/docs/diagnostics/2026-06-08-config-prompt-guidance.md +67 -0
- package/docs/superpowers/plans/2026-06-08-global-bootstrap-mode.md +89 -0
- package/docs/superpowers/specs/2026-06-08-global-bootstrap-mode-design.md +174 -0
- package/docs/user-guide.md +226 -0
- package/package.json +63 -0
- package/plugins/example-greeter/index.js +55 -0
- package/plugins/example-greeter/plugin.json +8 -0
- package/pnpm-workspace.yaml +5 -0
- package/provider_arch.md +179 -0
- package/start-webui.sh +27 -0
- package/tsconfig.tsbuildinfo +1 -0
- package/webui-channel-design.md +789 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 文件解析器接口与注册中心。
|
|
3
|
+
*
|
|
4
|
+
* 每种语言可以有多个解析器(按优先级排序):
|
|
5
|
+
* - TsParser: TypeScript/JavaScript AST 解析(调用 ts.createSourceFile)
|
|
6
|
+
* - TsRegexParser: 当 TS compiler 不可用时的正则回退
|
|
7
|
+
* - PyParser: Python 正则解析
|
|
8
|
+
* - GenericParser: 通用括号匹配回退
|
|
9
|
+
*/
|
|
10
|
+
import type { ParsedFile } from './schema.js';
|
|
11
|
+
export interface FileParser {
|
|
12
|
+
/** 解析器名称(用于日志) */
|
|
13
|
+
readonly name: string;
|
|
14
|
+
/** 支持的文件扩展名 */
|
|
15
|
+
readonly extensions: string[];
|
|
16
|
+
/** 解析单个文件 */
|
|
17
|
+
parseFile(filePath: string): Promise<ParsedFile>;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* ParserRegistry — 按文件扩展名选择最佳解析器。
|
|
21
|
+
*/
|
|
22
|
+
export declare class ParserRegistry {
|
|
23
|
+
private parsers;
|
|
24
|
+
register(parser: FileParser): void;
|
|
25
|
+
/** 获取适合该文件的解析器(按注册顺序,优先返回第一个匹配) */
|
|
26
|
+
getParser(filePath: string): FileParser | null;
|
|
27
|
+
/** 获取所有已注册的扩展名 */
|
|
28
|
+
getAllExtensions(): string[];
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* 创建默认的解析器注册中心(尝试加载 TS parser,失败则使用正则回退)。
|
|
32
|
+
*/
|
|
33
|
+
export declare function createParserRegistry(): Promise<ParserRegistry>;
|
|
34
|
+
//# sourceMappingURL=parser.d.ts.map
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 文件解析器接口与注册中心。
|
|
3
|
+
*
|
|
4
|
+
* 每种语言可以有多个解析器(按优先级排序):
|
|
5
|
+
* - TsParser: TypeScript/JavaScript AST 解析(调用 ts.createSourceFile)
|
|
6
|
+
* - TsRegexParser: 当 TS compiler 不可用时的正则回退
|
|
7
|
+
* - PyParser: Python 正则解析
|
|
8
|
+
* - GenericParser: 通用括号匹配回退
|
|
9
|
+
*/
|
|
10
|
+
import path from 'node:path';
|
|
11
|
+
/**
|
|
12
|
+
* ParserRegistry — 按文件扩展名选择最佳解析器。
|
|
13
|
+
*/
|
|
14
|
+
export class ParserRegistry {
|
|
15
|
+
parsers = [];
|
|
16
|
+
register(parser) {
|
|
17
|
+
this.parsers.push(parser);
|
|
18
|
+
}
|
|
19
|
+
/** 获取适合该文件的解析器(按注册顺序,优先返回第一个匹配) */
|
|
20
|
+
getParser(filePath) {
|
|
21
|
+
const ext = path.extname(filePath).toLowerCase();
|
|
22
|
+
for (const parser of this.parsers) {
|
|
23
|
+
if (parser.extensions.includes(ext))
|
|
24
|
+
return parser;
|
|
25
|
+
}
|
|
26
|
+
return null;
|
|
27
|
+
}
|
|
28
|
+
/** 获取所有已注册的扩展名 */
|
|
29
|
+
getAllExtensions() {
|
|
30
|
+
return [...new Set(this.parsers.flatMap(p => p.extensions))];
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* 创建默认的解析器注册中心(尝试加载 TS parser,失败则使用正则回退)。
|
|
35
|
+
*/
|
|
36
|
+
export async function createParserRegistry() {
|
|
37
|
+
const registry = new ParserRegistry();
|
|
38
|
+
// 尝试加载 TypeScript AST 解析器
|
|
39
|
+
try {
|
|
40
|
+
const { TsParser } = await import('./ts-parser.js');
|
|
41
|
+
registry.register(new TsParser());
|
|
42
|
+
}
|
|
43
|
+
catch {
|
|
44
|
+
// TypeScript 不可用,使用正则回退
|
|
45
|
+
try {
|
|
46
|
+
const { TsRegexParser } = await import('./regex-parser.js');
|
|
47
|
+
registry.register(new TsRegexParser());
|
|
48
|
+
}
|
|
49
|
+
catch {
|
|
50
|
+
// 忽略
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
// 正则回退解析器(总是可用)
|
|
54
|
+
try {
|
|
55
|
+
const { PyParser, GenericParser } = await import('./regex-parser.js');
|
|
56
|
+
registry.register(new PyParser());
|
|
57
|
+
registry.register(new GenericParser());
|
|
58
|
+
}
|
|
59
|
+
catch {
|
|
60
|
+
// 忽略
|
|
61
|
+
}
|
|
62
|
+
return registry;
|
|
63
|
+
}
|
|
64
|
+
//# sourceMappingURL=parser.js.map
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 正则回退解析器 — 当 TypeScript 编译器 API 不可用时使用。
|
|
3
|
+
*
|
|
4
|
+
* 覆盖:
|
|
5
|
+
* - TsRegexParser: TypeScript/JavaScript (正则版)
|
|
6
|
+
* - PyParser: Python
|
|
7
|
+
* - GenericParser: 通用括号匹配(C/Go/Rust/Java 等)
|
|
8
|
+
*/
|
|
9
|
+
import type { FileParser } from './parser.js';
|
|
10
|
+
import type { ParsedFile } from './schema.js';
|
|
11
|
+
export declare class TsRegexParser implements FileParser {
|
|
12
|
+
readonly name = "ts-regex";
|
|
13
|
+
readonly extensions: string[];
|
|
14
|
+
parseFile(filePath: string): Promise<ParsedFile>;
|
|
15
|
+
}
|
|
16
|
+
export declare class PyParser implements FileParser {
|
|
17
|
+
readonly name = "py-regex";
|
|
18
|
+
readonly extensions: string[];
|
|
19
|
+
parseFile(filePath: string): Promise<ParsedFile>;
|
|
20
|
+
}
|
|
21
|
+
export declare class GenericParser implements FileParser {
|
|
22
|
+
readonly name = "generic-regex";
|
|
23
|
+
readonly extensions: string[];
|
|
24
|
+
parseFile(filePath: string): Promise<ParsedFile>;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=regex-parser.d.ts.map
|
|
@@ -0,0 +1,446 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 正则回退解析器 — 当 TypeScript 编译器 API 不可用时使用。
|
|
3
|
+
*
|
|
4
|
+
* 覆盖:
|
|
5
|
+
* - TsRegexParser: TypeScript/JavaScript (正则版)
|
|
6
|
+
* - PyParser: Python
|
|
7
|
+
* - GenericParser: 通用括号匹配(C/Go/Rust/Java 等)
|
|
8
|
+
*/
|
|
9
|
+
import fs from 'node:fs/promises';
|
|
10
|
+
import path from 'node:path';
|
|
11
|
+
import crypto from 'node:crypto';
|
|
12
|
+
// ── 通用工具 ──────────────────────────────────────────────────────────
|
|
13
|
+
const JS_KEYWORDS = new Set([
|
|
14
|
+
'if', 'else', 'for', 'while', 'do', 'switch', 'case', 'break', 'continue',
|
|
15
|
+
'return', 'throw', 'try', 'catch', 'finally', 'new', 'typeof', 'instanceof',
|
|
16
|
+
'void', 'delete', 'in', 'of', 'async', 'await', 'yield', 'static', 'get', 'set',
|
|
17
|
+
'import', 'export', 'from', 'as', 'class', 'function', 'const', 'let', 'var',
|
|
18
|
+
'interface', 'type', 'extends', 'implements', 'abstract', 'override',
|
|
19
|
+
'public', 'private', 'protected', 'readonly', 'declare',
|
|
20
|
+
'true', 'false', 'null', 'undefined', 'this', 'super',
|
|
21
|
+
'console', 'require', 'process', 'global',
|
|
22
|
+
'parseInt', 'parseFloat', 'isNaN', 'JSON', 'Math',
|
|
23
|
+
'Object', 'Array', 'String', 'Number', 'Boolean', 'Promise', 'Map', 'Set',
|
|
24
|
+
'Error', 'Date', 'RegExp', 'Symbol', 'parseInt', 'setTimeout', 'setInterval',
|
|
25
|
+
]);
|
|
26
|
+
function isKeyword(name) {
|
|
27
|
+
return JS_KEYWORDS.has(name) || name.length <= 1;
|
|
28
|
+
}
|
|
29
|
+
// ── TsRegexParser: TS/JS 正则回退 ─────────────────────────────────────
|
|
30
|
+
export class TsRegexParser {
|
|
31
|
+
name = 'ts-regex';
|
|
32
|
+
extensions = ['.ts', '.tsx', '.js', '.jsx', '.mjs', '.cjs', '.mts', '.cts'];
|
|
33
|
+
async parseFile(filePath) {
|
|
34
|
+
const content = await fs.readFile(filePath, 'utf-8');
|
|
35
|
+
const hash = crypto.createHash('md5').update(content).digest('hex').slice(0, 12);
|
|
36
|
+
const lines = content.split('\n');
|
|
37
|
+
const ext = path.extname(filePath).toLowerCase();
|
|
38
|
+
const symbols = [];
|
|
39
|
+
const refs = [];
|
|
40
|
+
const imports = [];
|
|
41
|
+
// ── 解析 import 语句 ──
|
|
42
|
+
const importRegex = /import\s+(?:type\s+)?(?:\{([^}]*)\}|\*\s+as\s+(\w+)|(\w+))\s+from\s+['"]([^'"]+)['"]/g;
|
|
43
|
+
for (const m of content.matchAll(importRegex)) {
|
|
44
|
+
const modulePath = m[4];
|
|
45
|
+
const syms = [];
|
|
46
|
+
if (m[1])
|
|
47
|
+
syms.push(...m[1].split(',').map(s => s.trim().split(/\s+as\s+/)[0].trim()).filter(Boolean));
|
|
48
|
+
if (m[2])
|
|
49
|
+
syms.push(m[2]);
|
|
50
|
+
if (m[3])
|
|
51
|
+
syms.push(m[3]);
|
|
52
|
+
if (modulePath.startsWith('.')) {
|
|
53
|
+
imports.push({ to_path: modulePath, symbols: syms, import_type: 'static' });
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
// require
|
|
57
|
+
const requireRegex = /(?:const|let|var)\s+(?:\{([^}]*)\}|(\w+))\s*=\s*require\s*\(\s*['"]([^'"]+)['"]\s*\)/g;
|
|
58
|
+
for (const m of content.matchAll(requireRegex)) {
|
|
59
|
+
const modulePath = m[3];
|
|
60
|
+
const syms = [];
|
|
61
|
+
if (m[1])
|
|
62
|
+
syms.push(...m[1].split(',').map(s => s.trim()).filter(Boolean));
|
|
63
|
+
if (m[2])
|
|
64
|
+
syms.push(m[2]);
|
|
65
|
+
if (modulePath.startsWith('.')) {
|
|
66
|
+
imports.push({ to_path: modulePath, symbols: syms, import_type: 'require' });
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
// ── 解析函数/类/变量定义 ──
|
|
70
|
+
for (let i = 0; i < lines.length; i++) {
|
|
71
|
+
const line = lines[i];
|
|
72
|
+
const lineNum = i + 1;
|
|
73
|
+
const trimmed = line.trim();
|
|
74
|
+
// export function / async function / function
|
|
75
|
+
let m = trimmed.match(/^(?:export\s+)?(?:async\s+)?function\s+(\w+)/);
|
|
76
|
+
if (m) {
|
|
77
|
+
symbols.push({
|
|
78
|
+
name: m[1], kind: 'function', line: lineNum, col: line.indexOf(m[1]),
|
|
79
|
+
signature: trimmed, is_exported: trimmed.startsWith('export'),
|
|
80
|
+
});
|
|
81
|
+
continue;
|
|
82
|
+
}
|
|
83
|
+
// export class / class
|
|
84
|
+
m = trimmed.match(/^(?:export\s+)?(?:abstract\s+)?class\s+(\w+)/);
|
|
85
|
+
if (m) {
|
|
86
|
+
const extendsMatch = trimmed.match(/extends\s+([\w.,\s]+?)(?:\s*\{|\s*$)/);
|
|
87
|
+
symbols.push({
|
|
88
|
+
name: m[1], kind: 'class', line: lineNum, col: line.indexOf(m[1]),
|
|
89
|
+
signature: trimmed, is_exported: trimmed.startsWith('export'),
|
|
90
|
+
});
|
|
91
|
+
if (extendsMatch) {
|
|
92
|
+
for (const parent of extendsMatch[1].split(',')) {
|
|
93
|
+
const pName = parent.trim();
|
|
94
|
+
if (pName)
|
|
95
|
+
refs.push({ symbol_name: pName, line: lineNum, col: line.indexOf(pName), kind: 'inherit', context: trimmed });
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
continue;
|
|
99
|
+
}
|
|
100
|
+
// export interface
|
|
101
|
+
m = trimmed.match(/^(?:export\s+)?interface\s+(\w+)/);
|
|
102
|
+
if (m) {
|
|
103
|
+
symbols.push({
|
|
104
|
+
name: m[1], kind: 'interface', line: lineNum, col: line.indexOf(m[1]),
|
|
105
|
+
signature: trimmed, is_exported: trimmed.startsWith('export'),
|
|
106
|
+
});
|
|
107
|
+
continue;
|
|
108
|
+
}
|
|
109
|
+
// export type
|
|
110
|
+
m = trimmed.match(/^(?:export\s+)?type\s+(\w+)/);
|
|
111
|
+
if (m) {
|
|
112
|
+
symbols.push({
|
|
113
|
+
name: m[1], kind: 'type', line: lineNum, col: line.indexOf(m[1]),
|
|
114
|
+
signature: trimmed, is_exported: trimmed.startsWith('export'),
|
|
115
|
+
});
|
|
116
|
+
continue;
|
|
117
|
+
}
|
|
118
|
+
// export enum
|
|
119
|
+
m = trimmed.match(/^(?:export\s+)?enum\s+(\w+)/);
|
|
120
|
+
if (m) {
|
|
121
|
+
symbols.push({
|
|
122
|
+
name: m[1], kind: 'enum', line: lineNum, col: line.indexOf(m[1]),
|
|
123
|
+
signature: trimmed, is_exported: trimmed.startsWith('export'),
|
|
124
|
+
});
|
|
125
|
+
continue;
|
|
126
|
+
}
|
|
127
|
+
// const/let/var with arrow function or function expression
|
|
128
|
+
m = trimmed.match(/^(?:export\s+)?(?:const|let|var)\s+(\w+)\s*[:=]/);
|
|
129
|
+
if (m) {
|
|
130
|
+
const isArrow = /(?:=\s*(?:async\s*)?\([^)]*\)\s*=>|=\s*(?:async\s+)?function\b)/.test(trimmed);
|
|
131
|
+
const isExported = trimmed.startsWith('export');
|
|
132
|
+
symbols.push({
|
|
133
|
+
name: m[1],
|
|
134
|
+
kind: isArrow ? 'arrow' : 'variable',
|
|
135
|
+
line: lineNum,
|
|
136
|
+
col: line.indexOf(m[1]),
|
|
137
|
+
signature: trimmed,
|
|
138
|
+
is_exported: isExported,
|
|
139
|
+
});
|
|
140
|
+
continue;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
// ── 解析调用引用 ──
|
|
144
|
+
const callRegex = /(?:(\w+)\.)?(\w+)\s*\(/g;
|
|
145
|
+
for (let i = 0; i < lines.length; i++) {
|
|
146
|
+
const line = lines[i];
|
|
147
|
+
if (/^\s*(?:\/\/|\*|\/\*|import|export)/.test(line.trim()))
|
|
148
|
+
continue;
|
|
149
|
+
for (const cm of line.matchAll(callRegex)) {
|
|
150
|
+
const name = cm[2];
|
|
151
|
+
if (isKeyword(name))
|
|
152
|
+
continue;
|
|
153
|
+
refs.push({
|
|
154
|
+
symbol_name: name,
|
|
155
|
+
line: i + 1,
|
|
156
|
+
col: cm.index ?? 0,
|
|
157
|
+
kind: 'call',
|
|
158
|
+
context: line.trim().slice(0, 120),
|
|
159
|
+
});
|
|
160
|
+
}
|
|
161
|
+
// new expressions
|
|
162
|
+
for (const nm of line.matchAll(/new\s+(\w+)/g)) {
|
|
163
|
+
if (!isKeyword(nm[1])) {
|
|
164
|
+
refs.push({
|
|
165
|
+
symbol_name: nm[1],
|
|
166
|
+
line: i + 1,
|
|
167
|
+
col: nm.index ?? 0,
|
|
168
|
+
kind: 'new',
|
|
169
|
+
context: line.trim().slice(0, 120),
|
|
170
|
+
});
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
return {
|
|
175
|
+
path: filePath,
|
|
176
|
+
language: ext === '.ts' || ext === '.tsx' ? 'typescript' : 'javascript',
|
|
177
|
+
symbols, refs, imports, hash,
|
|
178
|
+
};
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
// ── PyParser: Python 正则解析 ─────────────────────────────────────────
|
|
182
|
+
export class PyParser {
|
|
183
|
+
name = 'py-regex';
|
|
184
|
+
extensions = ['.py', '.pyi', '.pyx'];
|
|
185
|
+
async parseFile(filePath) {
|
|
186
|
+
const content = await fs.readFile(filePath, 'utf-8');
|
|
187
|
+
const hash = crypto.createHash('md5').update(content).digest('hex').slice(0, 12);
|
|
188
|
+
const lines = content.split('\n');
|
|
189
|
+
const symbols = [];
|
|
190
|
+
const refs = [];
|
|
191
|
+
const imports = [];
|
|
192
|
+
// ── import 语句 ──
|
|
193
|
+
for (let i = 0; i < lines.length; i++) {
|
|
194
|
+
const trimmed = lines[i].trim();
|
|
195
|
+
// from .xxx import yyy
|
|
196
|
+
let m = trimmed.match(/^from\s+(\.\S+)\s+import\s+(.+)/);
|
|
197
|
+
if (m) {
|
|
198
|
+
const toPath = m[1];
|
|
199
|
+
const syms = m[2].split(',').map(s => s.trim().split(/\s+as\s+/)[0].trim()).filter(Boolean);
|
|
200
|
+
imports.push({ to_path: toPath, symbols: syms, import_type: 'static' });
|
|
201
|
+
continue;
|
|
202
|
+
}
|
|
203
|
+
// import xxx (non-relative, record for symbol search)
|
|
204
|
+
m = trimmed.match(/^import\s+(\S+)/);
|
|
205
|
+
if (m && !m[1].startsWith('.')) {
|
|
206
|
+
// 标准库或第三方,只记录符号
|
|
207
|
+
const imported = m[1].split(',')[0].trim();
|
|
208
|
+
symbols.push({
|
|
209
|
+
name: imported, kind: 'variable', line: i + 1, col: 7,
|
|
210
|
+
signature: trimmed, is_exported: false,
|
|
211
|
+
});
|
|
212
|
+
continue;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
// ── 函数/类定义 ──
|
|
216
|
+
for (let i = 0; i < lines.length; i++) {
|
|
217
|
+
const trimmed = lines[i].trim();
|
|
218
|
+
const lineNum = i + 1;
|
|
219
|
+
// async def / def
|
|
220
|
+
let m = trimmed.match(/^(?:async\s+)?def\s+(\w+)/);
|
|
221
|
+
if (m) {
|
|
222
|
+
symbols.push({
|
|
223
|
+
name: m[1], kind: 'function', line: lineNum, col: trimmed.indexOf(m[1]),
|
|
224
|
+
signature: trimmed.split(':')[0].trim(), is_exported: !trimmed.startsWith('_'),
|
|
225
|
+
});
|
|
226
|
+
continue;
|
|
227
|
+
}
|
|
228
|
+
// class
|
|
229
|
+
m = trimmed.match(/^class\s+(\w+)/);
|
|
230
|
+
if (m) {
|
|
231
|
+
const extendsMatch = trimmed.match(/\(([^)]+)\)/);
|
|
232
|
+
symbols.push({
|
|
233
|
+
name: m[1], kind: 'class', line: lineNum, col: trimmed.indexOf(m[1]),
|
|
234
|
+
signature: trimmed.split(':')[0].trim(), is_exported: !trimmed.startsWith('_'),
|
|
235
|
+
});
|
|
236
|
+
if (extendsMatch) {
|
|
237
|
+
for (const parent of extendsMatch[1].split(',')) {
|
|
238
|
+
const pName = parent.trim();
|
|
239
|
+
if (pName && pName !== 'object') {
|
|
240
|
+
refs.push({ symbol_name: pName, line: lineNum, col: trimmed.indexOf(pName), kind: 'inherit', context: trimmed });
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
continue;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
// ── 调用引用 ──
|
|
248
|
+
const callRegex = /(?:(\w+)\.)?(\w+)\s*\(/g;
|
|
249
|
+
const pyBuiltins = new Set([
|
|
250
|
+
'print', 'len', 'range', 'type', 'int', 'str', 'float', 'bool', 'list', 'dict',
|
|
251
|
+
'set', 'tuple', 'open', 'isinstance', 'hasattr', 'getattr', 'setattr', 'super',
|
|
252
|
+
'enumerate', 'zip', 'map', 'filter', 'sorted', 'reversed', 'any', 'all', 'sum',
|
|
253
|
+
'min', 'max', 'abs', 'round', 'input', 'next', 'iter', 'id', 'dir', 'vars',
|
|
254
|
+
'staticmethod', 'classmethod', 'property', 'Exception', 'ValueError', 'TypeError',
|
|
255
|
+
'self', 'cls', 'True', 'False', 'None',
|
|
256
|
+
]);
|
|
257
|
+
for (let i = 0; i < lines.length; i++) {
|
|
258
|
+
const line = lines[i];
|
|
259
|
+
if (/^\s*(?:#|from\s|import\s)/.test(line.trim()))
|
|
260
|
+
continue;
|
|
261
|
+
for (const cm of line.matchAll(callRegex)) {
|
|
262
|
+
const name = cm[2];
|
|
263
|
+
if (pyBuiltins.has(name) || name.length <= 1 || name[0] === '_')
|
|
264
|
+
continue;
|
|
265
|
+
refs.push({
|
|
266
|
+
symbol_name: name,
|
|
267
|
+
line: i + 1,
|
|
268
|
+
col: cm.index ?? 0,
|
|
269
|
+
kind: 'call',
|
|
270
|
+
context: line.trim().slice(0, 120),
|
|
271
|
+
});
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
return {
|
|
275
|
+
path: filePath,
|
|
276
|
+
language: 'python',
|
|
277
|
+
symbols, refs, imports, hash,
|
|
278
|
+
};
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
// ── GenericParser: C/Go/Rust/Java 等 ──────────────────────────────────
|
|
282
|
+
export class GenericParser {
|
|
283
|
+
name = 'generic-regex';
|
|
284
|
+
extensions = ['.go', '.rs', '.c', '.h', '.cpp', '.hpp', '.java', '.kt', '.swift'];
|
|
285
|
+
async parseFile(filePath) {
|
|
286
|
+
const content = await fs.readFile(filePath, 'utf-8');
|
|
287
|
+
const hash = crypto.createHash('md5').update(content).digest('hex').slice(0, 12);
|
|
288
|
+
const lines = content.split('\n');
|
|
289
|
+
const ext = path.extname(filePath).toLowerCase();
|
|
290
|
+
const langMap = {
|
|
291
|
+
'.go': 'go', '.rs': 'rust', '.c': 'c', '.h': 'c',
|
|
292
|
+
'.cpp': 'cpp', '.hpp': 'cpp', '.java': 'java', '.kt': 'kotlin', '.swift': 'swift',
|
|
293
|
+
};
|
|
294
|
+
const language = langMap[ext] ?? 'unknown';
|
|
295
|
+
const symbols = [];
|
|
296
|
+
const refs = [];
|
|
297
|
+
const imports = [];
|
|
298
|
+
// ── Go ──
|
|
299
|
+
if (ext === '.go') {
|
|
300
|
+
for (let i = 0; i < lines.length; i++) {
|
|
301
|
+
const t = lines[i].trim();
|
|
302
|
+
const lineNum = i + 1;
|
|
303
|
+
// import
|
|
304
|
+
let m = t.match(/^"(\.\S+)"/);
|
|
305
|
+
if (m) {
|
|
306
|
+
imports.push({ to_path: m[1].slice(1, -1), symbols: [], import_type: 'static' });
|
|
307
|
+
continue;
|
|
308
|
+
}
|
|
309
|
+
// func
|
|
310
|
+
m = t.match(/^func\s+(?:\(\s*\w+\s+\*?\w+\s*\)\s*)?(\w+)/);
|
|
311
|
+
if (m) {
|
|
312
|
+
symbols.push({ name: m[1], kind: 'function', line: lineNum, col: t.indexOf(m[1]), signature: t, is_exported: /^[A-Z]/.test(m[1]) });
|
|
313
|
+
continue;
|
|
314
|
+
}
|
|
315
|
+
// type struct / interface
|
|
316
|
+
m = t.match(/^type\s+(\w+)\s+(struct|interface)/);
|
|
317
|
+
if (m) {
|
|
318
|
+
symbols.push({ name: m[1], kind: 'class', line: lineNum, col: t.indexOf(m[1]), signature: t, is_exported: /^[A-Z]/.test(m[1]) });
|
|
319
|
+
continue;
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
// calls
|
|
323
|
+
for (let i = 0; i < lines.length; i++) {
|
|
324
|
+
if (/^\s*(?:\/\/|import)/.test(lines[i].trim()))
|
|
325
|
+
continue;
|
|
326
|
+
for (const cm of lines[i].matchAll(/(?:(\w+)\.)?(\w+)\s*\(/g)) {
|
|
327
|
+
if (!isKeyword(cm[2])) {
|
|
328
|
+
refs.push({ symbol_name: cm[2], line: i + 1, col: cm.index ?? 0, kind: 'call', context: lines[i].trim().slice(0, 120) });
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
// ── Rust ──
|
|
334
|
+
if (ext === '.rs') {
|
|
335
|
+
for (let i = 0; i < lines.length; i++) {
|
|
336
|
+
const t = lines[i].trim();
|
|
337
|
+
const lineNum = i + 1;
|
|
338
|
+
let m = t.match(/^(?:pub\s+)?(?:async\s+)?fn\s+(\w+)/);
|
|
339
|
+
if (m) {
|
|
340
|
+
symbols.push({ name: m[1], kind: 'function', line: lineNum, col: t.indexOf(m[1]), signature: t, is_exported: t.startsWith('pub') });
|
|
341
|
+
continue;
|
|
342
|
+
}
|
|
343
|
+
m = t.match(/^(?:pub\s+)?(?:async\s+)?unsafe\s+fn\s+(\w+)/);
|
|
344
|
+
if (m) {
|
|
345
|
+
symbols.push({ name: m[1], kind: 'function', line: lineNum, col: t.indexOf(m[1]), signature: t, is_exported: t.startsWith('pub') });
|
|
346
|
+
continue;
|
|
347
|
+
}
|
|
348
|
+
m = t.match(/^(?:pub\s+)?struct\s+(\w+)/);
|
|
349
|
+
if (m) {
|
|
350
|
+
symbols.push({ name: m[1], kind: 'class', line: lineNum, col: t.indexOf(m[1]), signature: t, is_exported: t.startsWith('pub') });
|
|
351
|
+
continue;
|
|
352
|
+
}
|
|
353
|
+
m = t.match(/^(?:pub\s+)?trait\s+(\w+)/);
|
|
354
|
+
if (m) {
|
|
355
|
+
symbols.push({ name: m[1], kind: 'interface', line: lineNum, col: t.indexOf(m[1]), signature: t, is_exported: t.startsWith('pub') });
|
|
356
|
+
continue;
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
for (let i = 0; i < lines.length; i++) {
|
|
360
|
+
if (/^\s*(?:\/\/|\/\/!)/.test(lines[i].trim()))
|
|
361
|
+
continue;
|
|
362
|
+
for (const cm of lines[i].matchAll(/(?:(\w+)::)?(\w+)\s*[(!<]/g)) {
|
|
363
|
+
if (!isKeyword(cm[2])) {
|
|
364
|
+
refs.push({ symbol_name: cm[2], line: i + 1, col: cm.index ?? 0, kind: 'call', context: lines[i].trim().slice(0, 120) });
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
// ── C/C++ ──
|
|
370
|
+
if (ext === '.c' || ext === '.h' || ext === '.cpp' || ext === '.hpp') {
|
|
371
|
+
for (let i = 0; i < lines.length; i++) {
|
|
372
|
+
const t = lines[i].trim();
|
|
373
|
+
const lineNum = i + 1;
|
|
374
|
+
// #include (记录为 import)
|
|
375
|
+
let m = t.match(/^#include\s+"([^"]+)"/);
|
|
376
|
+
if (m) {
|
|
377
|
+
imports.push({ to_path: m[1], symbols: [], import_type: 'static' });
|
|
378
|
+
continue;
|
|
379
|
+
}
|
|
380
|
+
// function definition (return_type name(...))
|
|
381
|
+
m = t.match(/^(?:static\s+|inline\s+|virtual\s+|extern\s+)*(?:\w+(?:\s*\*)*\s+)+(\w+)\s*\([^)]*\)\s*(?:const\s*)?\{?/);
|
|
382
|
+
if (m && !['if', 'while', 'for', 'switch', 'return'].includes(m[1])) {
|
|
383
|
+
symbols.push({ name: m[1], kind: 'function', line: lineNum, col: t.indexOf(m[1]), signature: t.split('{')[0]?.trim() ?? t, is_exported: false });
|
|
384
|
+
continue;
|
|
385
|
+
}
|
|
386
|
+
// class/struct
|
|
387
|
+
m = t.match(/^(?:class|struct)\s+(\w+)/);
|
|
388
|
+
if (m) {
|
|
389
|
+
symbols.push({ name: m[1], kind: 'class', line: lineNum, col: t.indexOf(m[1]), signature: t, is_exported: false });
|
|
390
|
+
continue;
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
for (let i = 0; i < lines.length; i++) {
|
|
394
|
+
if (/^\s*(?:\/\/|\/\*|\*|#)/.test(lines[i].trim()))
|
|
395
|
+
continue;
|
|
396
|
+
for (const cm of lines[i].matchAll(/(?:(\w+)(?:->|\.))?(\w+)\s*\(/g)) {
|
|
397
|
+
if (!isKeyword(cm[2])) {
|
|
398
|
+
refs.push({ symbol_name: cm[2], line: i + 1, col: cm.index ?? 0, kind: 'call', context: lines[i].trim().slice(0, 120) });
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
// ── Java ──
|
|
404
|
+
if (ext === '.java') {
|
|
405
|
+
for (let i = 0; i < lines.length; i++) {
|
|
406
|
+
const t = lines[i].trim();
|
|
407
|
+
const lineNum = i + 1;
|
|
408
|
+
// class/interface
|
|
409
|
+
let m = t.match(/^(?:public\s+|private\s+|protected\s+)?(?:static\s+|abstract\s+|final\s+)*(?:class|interface)\s+(\w+)/);
|
|
410
|
+
if (m) {
|
|
411
|
+
symbols.push({ name: m[1], kind: 'class', line: lineNum, col: t.indexOf(m[1]), signature: t, is_exported: t.startsWith('public') });
|
|
412
|
+
continue;
|
|
413
|
+
}
|
|
414
|
+
// method
|
|
415
|
+
m = t.match(/^(?:public\s+|private\s+|protected\s+)?(?:static\s+|abstract\s+|final\s+|synchronized\s+)*(?:\w+(?:<[^>]*>)?\s+)+(\w+)\s*\(/);
|
|
416
|
+
if (m && !['if', 'while', 'for', 'switch', 'return', 'throw', 'try', 'catch'].includes(m[1])) {
|
|
417
|
+
symbols.push({
|
|
418
|
+
name: m[1], kind: 'method', line: lineNum, col: t.indexOf(m[1]),
|
|
419
|
+
signature: t.split('{')[0]?.trim() ?? t, is_exported: t.startsWith('public'),
|
|
420
|
+
});
|
|
421
|
+
continue;
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
for (let i = 0; i < lines.length; i++) {
|
|
425
|
+
if (/^\s*(?:\/\/|\/\*|\*)/.test(lines[i].trim()))
|
|
426
|
+
continue;
|
|
427
|
+
for (const cm of lines[i].matchAll(/(?:(\w+)\.)?(\w+)\s*\(/g)) {
|
|
428
|
+
if (!isKeyword(cm[2])) {
|
|
429
|
+
refs.push({ symbol_name: cm[2], line: i + 1, col: cm.index ?? 0, kind: 'call', context: lines[i].trim().slice(0, 120) });
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
for (const nm of lines[i].matchAll(/new\s+(\w+)/g)) {
|
|
433
|
+
if (!isKeyword(nm[1])) {
|
|
434
|
+
refs.push({ symbol_name: nm[1], line: i + 1, col: nm.index ?? 0, kind: 'new', context: lines[i].trim().slice(0, 120) });
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
return {
|
|
440
|
+
path: filePath,
|
|
441
|
+
language,
|
|
442
|
+
symbols, refs, imports, hash,
|
|
443
|
+
};
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
//# sourceMappingURL=regex-parser.js.map
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 交叉引用索引 — 类型定义与 SQLite Schema。
|
|
3
|
+
*
|
|
4
|
+
* 数据模型:
|
|
5
|
+
* files → 已索引的源文件
|
|
6
|
+
* symbols → 符号定义(函数/类/接口/变量等)
|
|
7
|
+
* refs → 符号引用(调用/实例化/读取/继承/导入)
|
|
8
|
+
* imports → 文件间导入依赖
|
|
9
|
+
* meta → 元数据(构建时间、项目根目录等)
|
|
10
|
+
*/
|
|
11
|
+
export interface XrefSymbol {
|
|
12
|
+
id: number;
|
|
13
|
+
name: string;
|
|
14
|
+
kind: SymbolKind;
|
|
15
|
+
file_id: number;
|
|
16
|
+
line: number;
|
|
17
|
+
col: number;
|
|
18
|
+
signature: string | null;
|
|
19
|
+
is_exported: boolean;
|
|
20
|
+
parent_name: string | null;
|
|
21
|
+
}
|
|
22
|
+
export interface XrefRef {
|
|
23
|
+
id: number;
|
|
24
|
+
symbol_name: string;
|
|
25
|
+
file_id: number;
|
|
26
|
+
line: number;
|
|
27
|
+
col: number;
|
|
28
|
+
kind: RefKind;
|
|
29
|
+
context: string | null;
|
|
30
|
+
caller_name: string | null;
|
|
31
|
+
}
|
|
32
|
+
export interface XrefImport {
|
|
33
|
+
id: number;
|
|
34
|
+
from_file_id: number;
|
|
35
|
+
to_file_id: number;
|
|
36
|
+
symbols: string[];
|
|
37
|
+
import_type: 'static' | 'dynamic' | 'require';
|
|
38
|
+
}
|
|
39
|
+
export interface XrefFile {
|
|
40
|
+
id: number;
|
|
41
|
+
path: string;
|
|
42
|
+
language: string;
|
|
43
|
+
hash: string | null;
|
|
44
|
+
last_parsed_at: string | null;
|
|
45
|
+
}
|
|
46
|
+
export type SymbolKind = 'function' | 'method' | 'arrow' | 'class' | 'interface' | 'type' | 'enum' | 'variable' | 'parameter' | 'property';
|
|
47
|
+
export type RefKind = 'call' | 'new' | 'read' | 'write' | 'import' | 'inherit' | 'export';
|
|
48
|
+
export type QueryAction = 'refs' | 'defs' | 'callers' | 'callees' | 'deps' | 'dependents' | 'hierarchy' | 'impact' | 'trace' | 'symbol_search';
|
|
49
|
+
export interface QueryParams {
|
|
50
|
+
action: QueryAction;
|
|
51
|
+
symbol?: string;
|
|
52
|
+
file?: string;
|
|
53
|
+
depth?: number;
|
|
54
|
+
format?: 'text' | 'json';
|
|
55
|
+
kind?: SymbolKind;
|
|
56
|
+
}
|
|
57
|
+
export interface BuildStats {
|
|
58
|
+
files: number;
|
|
59
|
+
symbols: number;
|
|
60
|
+
refs: number;
|
|
61
|
+
imports: number;
|
|
62
|
+
duration_ms: number;
|
|
63
|
+
language_breakdown: Record<string, number>;
|
|
64
|
+
}
|
|
65
|
+
export interface ParsedSymbol {
|
|
66
|
+
name: string;
|
|
67
|
+
kind: SymbolKind;
|
|
68
|
+
line: number;
|
|
69
|
+
col: number;
|
|
70
|
+
signature?: string;
|
|
71
|
+
is_exported: boolean;
|
|
72
|
+
parent_name?: string;
|
|
73
|
+
}
|
|
74
|
+
export interface ParsedRef {
|
|
75
|
+
symbol_name: string;
|
|
76
|
+
line: number;
|
|
77
|
+
col: number;
|
|
78
|
+
kind: RefKind;
|
|
79
|
+
context?: string;
|
|
80
|
+
caller_name?: string;
|
|
81
|
+
}
|
|
82
|
+
export interface ParsedImport {
|
|
83
|
+
to_path: string;
|
|
84
|
+
symbols: string[];
|
|
85
|
+
import_type: 'static' | 'dynamic' | 'require';
|
|
86
|
+
}
|
|
87
|
+
export interface ParsedFile {
|
|
88
|
+
path: string;
|
|
89
|
+
language: string;
|
|
90
|
+
symbols: ParsedSymbol[];
|
|
91
|
+
refs: ParsedRef[];
|
|
92
|
+
imports: ParsedImport[];
|
|
93
|
+
hash: string;
|
|
94
|
+
}
|
|
95
|
+
export type GraphFormat = 'text' | 'mermaid' | 'graphviz';
|
|
96
|
+
export interface GraphOptions {
|
|
97
|
+
format: GraphFormat;
|
|
98
|
+
symbol?: string;
|
|
99
|
+
file?: string;
|
|
100
|
+
max_depth?: number;
|
|
101
|
+
direction?: 'callers' | 'callees' | 'both';
|
|
102
|
+
}
|
|
103
|
+
export declare const SCHEMA_DDL = "\nCREATE TABLE IF NOT EXISTS files (\n id INTEGER PRIMARY KEY AUTOINCREMENT,\n path TEXT UNIQUE NOT NULL,\n language TEXT NOT NULL,\n hash TEXT,\n last_parsed_at TEXT\n);\n\nCREATE TABLE IF NOT EXISTS symbols (\n id INTEGER PRIMARY KEY AUTOINCREMENT,\n name TEXT NOT NULL,\n kind TEXT NOT NULL,\n file_id INTEGER NOT NULL REFERENCES files(id) ON DELETE CASCADE,\n line INTEGER NOT NULL,\n col INTEGER NOT NULL DEFAULT 0,\n signature TEXT,\n is_exported INTEGER NOT NULL DEFAULT 0,\n parent_name TEXT\n);\n\nCREATE TABLE IF NOT EXISTS refs (\n id INTEGER PRIMARY KEY AUTOINCREMENT,\n symbol_name TEXT NOT NULL,\n file_id INTEGER NOT NULL REFERENCES files(id) ON DELETE CASCADE,\n line INTEGER NOT NULL,\n col INTEGER NOT NULL DEFAULT 0,\n kind TEXT NOT NULL,\n context TEXT,\n caller_name TEXT\n);\n\nCREATE TABLE IF NOT EXISTS imports (\n id INTEGER PRIMARY KEY AUTOINCREMENT,\n from_file_id INTEGER NOT NULL REFERENCES files(id) ON DELETE CASCADE,\n to_file_id INTEGER NOT NULL REFERENCES files(id) ON DELETE CASCADE,\n symbols TEXT DEFAULT '[]',\n import_type TEXT DEFAULT 'static'\n);\n\nCREATE TABLE IF NOT EXISTS meta (\n key TEXT PRIMARY KEY,\n value TEXT\n);\n\n-- \u67E5\u8BE2\u52A0\u901F\nCREATE INDEX IF NOT EXISTS idx_symbols_name ON symbols(name);\nCREATE INDEX IF NOT EXISTS idx_symbols_file ON symbols(file_id);\nCREATE INDEX IF NOT EXISTS idx_symbols_kind ON symbols(kind);\nCREATE INDEX IF NOT EXISTS idx_refs_symbol ON refs(symbol_name);\nCREATE INDEX IF NOT EXISTS idx_refs_file ON refs(file_id);\nCREATE INDEX IF NOT EXISTS idx_refs_kind ON refs(kind);\nCREATE INDEX IF NOT EXISTS idx_refs_caller ON refs(caller_name);\nCREATE INDEX IF NOT EXISTS idx_imports_from ON imports(from_file_id);\nCREATE INDEX IF NOT EXISTS idx_imports_to ON imports(to_file_id);\n";
|
|
104
|
+
//# sourceMappingURL=schema.d.ts.map
|