bluera-knowledge 0.9.21
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/commands/commit.md +37 -0
- package/.claude/hooks/post-edit-check.sh +41 -0
- package/.claude/settings.local.json.example +40 -0
- package/.claude/skills/atomic-commits/SKILL.md +53 -0
- package/.claude-plugin/plugin.json +13 -0
- package/.editorconfig +15 -0
- package/.github/workflows/auto-release.yml +59 -0
- package/.github/workflows/ci.yml +142 -0
- package/.github/workflows/release.yml +66 -0
- package/.github/workflows/update-marketplace.yml +96 -0
- package/.husky/pre-commit +47 -0
- package/.husky/pre-push +29 -0
- package/.versionrc.json +28 -0
- package/CHANGELOG.md +410 -0
- package/CLAUDE.md +109 -0
- package/LICENSE +21 -0
- package/NOTICE +47 -0
- package/README.md +1546 -0
- package/SECURITY.md +65 -0
- package/bun.lock +1758 -0
- package/commands/add-folder.md +48 -0
- package/commands/add-repo.md +50 -0
- package/commands/cancel.md +63 -0
- package/commands/check-status.md +78 -0
- package/commands/crawl.md +51 -0
- package/commands/index.md +48 -0
- package/commands/remove-store.md +52 -0
- package/commands/search.md +79 -0
- package/commands/search.sh +63 -0
- package/commands/stores.md +54 -0
- package/commands/suggest.md +82 -0
- package/dist/chunk-5QMHZUC4.js +3617 -0
- package/dist/chunk-5QMHZUC4.js.map +1 -0
- package/dist/chunk-BICFAWMN.js +656 -0
- package/dist/chunk-BICFAWMN.js.map +1 -0
- package/dist/chunk-J7J6LXOJ.js +958 -0
- package/dist/chunk-J7J6LXOJ.js.map +1 -0
- package/dist/chunk-L2YVNC63.js +59 -0
- package/dist/chunk-L2YVNC63.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1429 -0
- package/dist/index.js.map +1 -0
- package/dist/mcp/server.d.ts +15 -0
- package/dist/mcp/server.js +11 -0
- package/dist/mcp/server.js.map +1 -0
- package/dist/watch.service-YAIKKDCF.js +7 -0
- package/dist/watch.service-YAIKKDCF.js.map +1 -0
- package/dist/workers/background-worker-cli.d.ts +1 -0
- package/dist/workers/background-worker-cli.js +310 -0
- package/dist/workers/background-worker-cli.js.map +1 -0
- package/docs/plans/2024-12-17-ai-search-quality-implementation.md +752 -0
- package/docs/plans/2024-12-17-ai-search-quality-testing-design.md +201 -0
- package/docs/plans/2025-12-16-bluera-knowledge-cli.md +2951 -0
- package/docs/plans/2025-12-16-phase2-features.md +1518 -0
- package/docs/plans/2025-12-17-hil-implementation.md +926 -0
- package/docs/plans/2025-12-17-hil-quality-testing.md +224 -0
- package/docs/plans/2025-12-17-search-quality-phase1-implementation.md +1416 -0
- package/docs/plans/2025-12-17-search-quality-testing-v2-design.md +212 -0
- package/docs/plans/2025-12-28-ai-agent-optimization.md +1630 -0
- package/eslint-rules/require-skip-comment.js +81 -0
- package/eslint.config.js +61 -0
- package/hooks/check-dependencies.sh +110 -0
- package/hooks/format-search-results.py +132 -0
- package/hooks/hooks.json +27 -0
- package/hooks/job-status-hook.sh +51 -0
- package/knip.json +43 -0
- package/mcp.plugin.json +12 -0
- package/package.json +103 -0
- package/python/crawl_worker.py +275 -0
- package/python/requirements.txt +2 -0
- package/scripts/readme-version-updater.cjs +18 -0
- package/skills/advanced-workflows/SKILL.md +273 -0
- package/skills/atomic-commits/SKILL.md +77 -0
- package/skills/knowledge-search/SKILL.md +54 -0
- package/skills/search-optimization/SKILL.md +396 -0
- package/skills/store-lifecycle/SKILL.md +470 -0
- package/skills/when-to-query/SKILL.md +66 -0
- package/src/analysis/ast-parser.test.ts +423 -0
- package/src/analysis/ast-parser.ts +192 -0
- package/src/analysis/code-graph.test.ts +698 -0
- package/src/analysis/code-graph.ts +245 -0
- package/src/analysis/dependency-usage-analyzer.test.ts +799 -0
- package/src/analysis/dependency-usage-analyzer.ts +405 -0
- package/src/analysis/go-ast-parser.test.ts +531 -0
- package/src/analysis/go-ast-parser.ts +478 -0
- package/src/analysis/parser-factory.test.ts +132 -0
- package/src/analysis/parser-factory.ts +44 -0
- package/src/analysis/python-ast-parser.test.ts +210 -0
- package/src/analysis/python-ast-parser.ts +34 -0
- package/src/analysis/repo-url-resolver.test.ts +533 -0
- package/src/analysis/repo-url-resolver.ts +233 -0
- package/src/analysis/rust-ast-parser.test.ts +568 -0
- package/src/analysis/rust-ast-parser.ts +477 -0
- package/src/analysis/tree-sitter-parser.test.ts +297 -0
- package/src/analysis/tree-sitter-parser.ts +223 -0
- package/src/cli/commands/crawl.test.ts +942 -0
- package/src/cli/commands/crawl.ts +141 -0
- package/src/cli/commands/index-cmd.test.ts +722 -0
- package/src/cli/commands/index-cmd.ts +105 -0
- package/src/cli/commands/mcp.test.ts +218 -0
- package/src/cli/commands/mcp.ts +18 -0
- package/src/cli/commands/plugin-api.test.ts +313 -0
- package/src/cli/commands/plugin-api.ts +45 -0
- package/src/cli/commands/search.test.ts +911 -0
- package/src/cli/commands/search.ts +113 -0
- package/src/cli/commands/serve.test.ts +329 -0
- package/src/cli/commands/serve.ts +28 -0
- package/src/cli/commands/setup.test.ts +820 -0
- package/src/cli/commands/setup.ts +153 -0
- package/src/cli/commands/store.test.ts +1003 -0
- package/src/cli/commands/store.ts +167 -0
- package/src/cli/index.ts +7 -0
- package/src/cli/program.ts +59 -0
- package/src/crawl/article-converter.test.ts +604 -0
- package/src/crawl/article-converter.ts +98 -0
- package/src/crawl/bridge.test.ts +674 -0
- package/src/crawl/bridge.ts +236 -0
- package/src/crawl/claude-client.test.ts +663 -0
- package/src/crawl/claude-client.ts +234 -0
- package/src/crawl/intelligent-crawler.test.ts +931 -0
- package/src/crawl/intelligent-crawler.ts +428 -0
- package/src/crawl/markdown-utils.test.ts +703 -0
- package/src/crawl/markdown-utils.ts +228 -0
- package/src/crawl/schemas.ts +114 -0
- package/src/db/embeddings.test.ts +63 -0
- package/src/db/embeddings.ts +69 -0
- package/src/db/index.ts +2 -0
- package/src/db/lance.test.ts +390 -0
- package/src/db/lance.ts +164 -0
- package/src/defaults/repos.ts +67 -0
- package/src/index.ts +107 -0
- package/src/mcp/cache.test.ts +202 -0
- package/src/mcp/cache.ts +103 -0
- package/src/mcp/commands/index.ts +20 -0
- package/src/mcp/commands/job.commands.ts +54 -0
- package/src/mcp/commands/meta.commands.ts +54 -0
- package/src/mcp/commands/registry.ts +183 -0
- package/src/mcp/commands/store.commands.ts +75 -0
- package/src/mcp/handlers/execute.handler.test.ts +179 -0
- package/src/mcp/handlers/execute.handler.ts +24 -0
- package/src/mcp/handlers/index.ts +43 -0
- package/src/mcp/handlers/job.handler.test.ts +189 -0
- package/src/mcp/handlers/job.handler.ts +116 -0
- package/src/mcp/handlers/search.handler.test.ts +334 -0
- package/src/mcp/handlers/search.handler.ts +209 -0
- package/src/mcp/handlers/store.handler.test.ts +415 -0
- package/src/mcp/handlers/store.handler.ts +295 -0
- package/src/mcp/schemas/index.test.ts +315 -0
- package/src/mcp/schemas/index.ts +138 -0
- package/src/mcp/server.test.ts +36 -0
- package/src/mcp/server.ts +162 -0
- package/src/mcp/types.ts +41 -0
- package/src/plugin/commands.test.ts +789 -0
- package/src/plugin/commands.ts +257 -0
- package/src/plugin/dependency-analyzer.test.ts +380 -0
- package/src/plugin/dependency-analyzer.ts +147 -0
- package/src/plugin/git-clone.test.ts +332 -0
- package/src/plugin/git-clone.ts +57 -0
- package/src/server/app.test.ts +752 -0
- package/src/server/app.ts +119 -0
- package/src/server/index.test.ts +477 -0
- package/src/server/index.ts +1 -0
- package/src/services/chunking.service.test.ts +363 -0
- package/src/services/chunking.service.ts +350 -0
- package/src/services/code-graph.service.test.ts +304 -0
- package/src/services/code-graph.service.ts +302 -0
- package/src/services/code-unit.service.test.ts +596 -0
- package/src/services/code-unit.service.ts +115 -0
- package/src/services/config.service.test.ts +127 -0
- package/src/services/config.service.ts +69 -0
- package/src/services/index.service.test.ts +1002 -0
- package/src/services/index.service.ts +266 -0
- package/src/services/index.ts +75 -0
- package/src/services/job.service.test.ts +418 -0
- package/src/services/job.service.ts +246 -0
- package/src/services/project-root.service.test.ts +506 -0
- package/src/services/project-root.service.ts +112 -0
- package/src/services/search.service.test.ts +1105 -0
- package/src/services/search.service.ts +892 -0
- package/src/services/services.test.ts +38 -0
- package/src/services/snippet.service.test.ts +205 -0
- package/src/services/snippet.service.ts +166 -0
- package/src/services/store.service.test.ts +474 -0
- package/src/services/store.service.ts +225 -0
- package/src/services/watch.service.test.ts +553 -0
- package/src/services/watch.service.ts +71 -0
- package/src/types/brands.test.ts +45 -0
- package/src/types/brands.ts +32 -0
- package/src/types/config.ts +79 -0
- package/src/types/document.ts +30 -0
- package/src/types/index.ts +66 -0
- package/src/types/job.ts +46 -0
- package/src/types/progress.ts +9 -0
- package/src/types/result.test.ts +44 -0
- package/src/types/result.ts +41 -0
- package/src/types/search.ts +95 -0
- package/src/types/store.test.ts +69 -0
- package/src/types/store.ts +47 -0
- package/src/utils/type-guards.test.ts +346 -0
- package/src/utils/type-guards.ts +61 -0
- package/src/workers/background-worker-cli.ts +105 -0
- package/src/workers/background-worker.test.ts +178 -0
- package/src/workers/background-worker.ts +294 -0
- package/src/workers/spawn-worker.test.ts +128 -0
- package/src/workers/spawn-worker.ts +49 -0
- package/tests/analysis/ast-parser.test.ts +98 -0
- package/tests/analysis/code-graph.test.ts +60 -0
- package/tests/fixtures/README.md +114 -0
- package/tests/fixtures/code-snippets/api/error-handling.ts +267 -0
- package/tests/fixtures/code-snippets/api/rest-controller.ts +303 -0
- package/tests/fixtures/code-snippets/auth/jwt-auth.ts +213 -0
- package/tests/fixtures/code-snippets/auth/oauth-flow.ts +245 -0
- package/tests/fixtures/code-snippets/database/repository-pattern.ts +272 -0
- package/tests/fixtures/corpus/VERSION.md +25 -0
- package/tests/fixtures/corpus/articles/jwt-authentication.md +97 -0
- package/tests/fixtures/corpus/articles/react-hooks-patterns.md +127 -0
- package/tests/fixtures/corpus/articles/typescript-generics.md +111 -0
- package/tests/fixtures/corpus/documentation/express-middleware.md +71 -0
- package/tests/fixtures/corpus/documentation/express-routing.md +83 -0
- package/tests/fixtures/corpus/documentation/node-streams.md +78 -0
- package/tests/fixtures/corpus/oss-repos/express/History.md +3871 -0
- package/tests/fixtures/corpus/oss-repos/express/LICENSE +24 -0
- package/tests/fixtures/corpus/oss-repos/express/Readme.md +276 -0
- package/tests/fixtures/corpus/oss-repos/express/SECURITY.md +56 -0
- package/tests/fixtures/corpus/oss-repos/express/benchmarks/Makefile +17 -0
- package/tests/fixtures/corpus/oss-repos/express/benchmarks/README.md +34 -0
- package/tests/fixtures/corpus/oss-repos/express/benchmarks/middleware.js +20 -0
- package/tests/fixtures/corpus/oss-repos/express/benchmarks/run +18 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/README.md +29 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/auth/index.js +134 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/auth/views/foot.ejs +2 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/auth/views/head.ejs +20 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/auth/views/login.ejs +21 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/content-negotiation/db.js +9 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/content-negotiation/index.js +46 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/content-negotiation/users.js +19 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/cookie-sessions/index.js +25 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/cookies/index.js +53 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/downloads/files/CCTV/345/244/247/350/265/233/344/270/212/346/265/267/345/210/206/350/265/233/345/214/272.txt +2 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/downloads/files/amazing.txt +1 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/downloads/files/notes/groceries.txt +3 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/downloads/index.js +40 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/ejs/index.js +57 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/ejs/public/stylesheets/style.css +4 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/ejs/views/footer.html +2 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/ejs/views/header.html +9 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/ejs/views/users.html +10 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/error/index.js +53 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/error-pages/index.js +103 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/error-pages/views/404.ejs +3 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/error-pages/views/500.ejs +8 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/error-pages/views/error_header.ejs +10 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/error-pages/views/footer.ejs +2 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/error-pages/views/index.ejs +20 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/hello-world/index.js +15 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/markdown/index.js +44 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/markdown/views/index.md +4 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/multi-router/controllers/api_v1.js +15 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/multi-router/controllers/api_v2.js +15 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/multi-router/index.js +18 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/mvc/controllers/main/index.js +5 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/mvc/controllers/pet/index.js +31 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/mvc/controllers/pet/views/edit.ejs +17 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/mvc/controllers/pet/views/show.ejs +15 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/mvc/controllers/user/index.js +41 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/mvc/controllers/user/views/edit.hbs +27 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/mvc/controllers/user/views/list.hbs +18 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/mvc/controllers/user/views/show.hbs +31 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/mvc/controllers/user-pet/index.js +22 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/mvc/db.js +16 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/mvc/index.js +95 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/mvc/lib/boot.js +83 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/mvc/public/style.css +14 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/mvc/views/404.ejs +13 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/mvc/views/5xx.ejs +13 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/online/index.js +61 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/params/index.js +74 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/resource/index.js +95 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/route-map/index.js +75 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/route-middleware/index.js +90 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/route-separation/index.js +55 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/route-separation/post.js +13 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/route-separation/public/style.css +24 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/route-separation/site.js +5 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/route-separation/user.js +47 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/route-separation/views/footer.ejs +2 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/route-separation/views/header.ejs +9 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/route-separation/views/index.ejs +10 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/route-separation/views/posts/index.ejs +12 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/route-separation/views/users/edit.ejs +23 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/route-separation/views/users/index.ejs +14 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/route-separation/views/users/view.ejs +9 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/search/index.js +61 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/search/public/client.js +15 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/search/public/index.html +21 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/session/index.js +37 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/session/redis.js +39 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/static-files/index.js +43 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/static-files/public/css/style.css +3 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/static-files/public/hello.txt +1 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/static-files/public/js/app.js +1 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/vhost/index.js +53 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/view-constructor/github-view.js +53 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/view-constructor/index.js +48 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/view-locals/index.js +155 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/view-locals/user.js +36 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/view-locals/views/index.ejs +20 -0
- package/tests/fixtures/corpus/oss-repos/express/examples/web-service/index.js +117 -0
- package/tests/fixtures/corpus/oss-repos/express/index.js +11 -0
- package/tests/fixtures/corpus/oss-repos/express/lib/application.js +631 -0
- package/tests/fixtures/corpus/oss-repos/express/lib/express.js +81 -0
- package/tests/fixtures/corpus/oss-repos/express/lib/request.js +514 -0
- package/tests/fixtures/corpus/oss-repos/express/lib/response.js +1053 -0
- package/tests/fixtures/corpus/oss-repos/express/lib/utils.js +271 -0
- package/tests/fixtures/corpus/oss-repos/express/lib/view.js +205 -0
- package/tests/fixtures/corpus/oss-repos/express/package.json +99 -0
- package/tests/fixtures/corpus/oss-repos/express/test/Route.js +274 -0
- package/tests/fixtures/corpus/oss-repos/express/test/Router.js +636 -0
- package/tests/fixtures/corpus/oss-repos/express/test/acceptance/auth.js +117 -0
- package/tests/fixtures/corpus/oss-repos/express/test/acceptance/content-negotiation.js +49 -0
- package/tests/fixtures/corpus/oss-repos/express/test/acceptance/cookie-sessions.js +38 -0
- package/tests/fixtures/corpus/oss-repos/express/test/acceptance/cookies.js +71 -0
- package/tests/fixtures/corpus/oss-repos/express/test/acceptance/downloads.js +47 -0
- package/tests/fixtures/corpus/oss-repos/express/test/acceptance/ejs.js +17 -0
- package/tests/fixtures/corpus/oss-repos/express/test/acceptance/error-pages.js +99 -0
- package/tests/fixtures/corpus/oss-repos/express/test/acceptance/error.js +29 -0
- package/tests/fixtures/corpus/oss-repos/express/test/acceptance/hello-world.js +21 -0
- package/tests/fixtures/corpus/oss-repos/express/test/acceptance/markdown.js +21 -0
- package/tests/fixtures/corpus/oss-repos/express/test/acceptance/multi-router.js +44 -0
- package/tests/fixtures/corpus/oss-repos/express/test/acceptance/mvc.js +132 -0
- package/tests/fixtures/corpus/oss-repos/express/test/acceptance/params.js +44 -0
- package/tests/fixtures/corpus/oss-repos/express/test/acceptance/resource.js +68 -0
- package/tests/fixtures/corpus/oss-repos/express/test/acceptance/route-map.js +45 -0
- package/tests/fixtures/corpus/oss-repos/express/test/acceptance/route-separation.js +97 -0
- package/tests/fixtures/corpus/oss-repos/express/test/acceptance/vhost.js +46 -0
- package/tests/fixtures/corpus/oss-repos/express/test/acceptance/web-service.js +105 -0
- package/tests/fixtures/corpus/oss-repos/express/test/app.all.js +38 -0
- package/tests/fixtures/corpus/oss-repos/express/test/app.engine.js +83 -0
- package/tests/fixtures/corpus/oss-repos/express/test/app.head.js +66 -0
- package/tests/fixtures/corpus/oss-repos/express/test/app.js +120 -0
- package/tests/fixtures/corpus/oss-repos/express/test/app.listen.js +55 -0
- package/tests/fixtures/corpus/oss-repos/express/test/app.locals.js +26 -0
- package/tests/fixtures/corpus/oss-repos/express/test/app.options.js +116 -0
- package/tests/fixtures/corpus/oss-repos/express/test/app.param.js +323 -0
- package/tests/fixtures/corpus/oss-repos/express/test/app.render.js +374 -0
- package/tests/fixtures/corpus/oss-repos/express/test/app.request.js +143 -0
- package/tests/fixtures/corpus/oss-repos/express/test/app.response.js +143 -0
- package/tests/fixtures/corpus/oss-repos/express/test/app.route.js +197 -0
- package/tests/fixtures/corpus/oss-repos/express/test/app.router.js +1217 -0
- package/tests/fixtures/corpus/oss-repos/express/test/app.routes.error.js +62 -0
- package/tests/fixtures/corpus/oss-repos/express/test/app.use.js +542 -0
- package/tests/fixtures/corpus/oss-repos/express/test/config.js +207 -0
- package/tests/fixtures/corpus/oss-repos/express/test/exports.js +82 -0
- package/tests/fixtures/corpus/oss-repos/express/test/express.json.js +755 -0
- package/tests/fixtures/corpus/oss-repos/express/test/express.raw.js +513 -0
- package/tests/fixtures/corpus/oss-repos/express/test/express.static.js +815 -0
- package/tests/fixtures/corpus/oss-repos/express/test/express.text.js +566 -0
- package/tests/fixtures/corpus/oss-repos/express/test/express.urlencoded.js +828 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/% of dogs.txt +1 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/.name +1 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/blog/index.html +1 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/blog/post/index.tmpl +1 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/broken.send +0 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/default_layout/name.tmpl +1 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/default_layout/user.tmpl +1 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/email.tmpl +1 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/empty.txt +0 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/local_layout/user.tmpl +1 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/name.tmpl +1 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/name.txt +1 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/nums.txt +1 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/pets/names.txt +1 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/snow /342/230/203/.gitkeep +0 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/todo.html +1 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/todo.txt +1 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/user.html +1 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/user.tmpl +1 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/users/index.html +1 -0
- package/tests/fixtures/corpus/oss-repos/express/test/fixtures/users/tobi.txt +1 -0
- package/tests/fixtures/corpus/oss-repos/express/test/middleware.basic.js +42 -0
- package/tests/fixtures/corpus/oss-repos/express/test/regression.js +20 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.accepts.js +125 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.acceptsCharsets.js +50 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.acceptsEncodings.js +39 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.acceptsLanguages.js +57 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.baseUrl.js +88 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.fresh.js +70 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.get.js +60 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.host.js +156 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.hostname.js +188 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.ip.js +113 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.ips.js +71 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.is.js +169 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.path.js +20 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.protocol.js +113 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.query.js +106 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.range.js +104 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.route.js +28 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.secure.js +101 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.signedCookies.js +37 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.stale.js +50 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.subdomains.js +173 -0
- package/tests/fixtures/corpus/oss-repos/express/test/req.xhr.js +42 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.append.js +116 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.attachment.js +79 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.clearCookie.js +62 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.cookie.js +295 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.download.js +487 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.format.js +248 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.get.js +21 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.json.js +186 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.jsonp.js +344 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.links.js +65 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.locals.js +40 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.location.js +316 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.redirect.js +214 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.render.js +367 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.send.js +569 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.sendFile.js +913 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.sendStatus.js +44 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.set.js +124 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.status.js +206 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.type.js +46 -0
- package/tests/fixtures/corpus/oss-repos/express/test/res.vary.js +90 -0
- package/tests/fixtures/corpus/oss-repos/express/test/support/env.js +3 -0
- package/tests/fixtures/corpus/oss-repos/express/test/support/tmpl.js +36 -0
- package/tests/fixtures/corpus/oss-repos/express/test/support/utils.js +86 -0
- package/tests/fixtures/corpus/oss-repos/express/test/utils.js +83 -0
- package/tests/fixtures/corpus/oss-repos/hono/.devcontainer/Dockerfile +11 -0
- package/tests/fixtures/corpus/oss-repos/hono/.devcontainer/devcontainer.json +21 -0
- package/tests/fixtures/corpus/oss-repos/hono/.devcontainer/docker-compose.yml +18 -0
- package/tests/fixtures/corpus/oss-repos/hono/.eslintignore +1 -0
- package/tests/fixtures/corpus/oss-repos/hono/.eslintrc.cjs +9 -0
- package/tests/fixtures/corpus/oss-repos/hono/.gitpod.yml +9 -0
- package/tests/fixtures/corpus/oss-repos/hono/.prettierrc +9 -0
- package/tests/fixtures/corpus/oss-repos/hono/.vitest.config/jsx-runtime-default.ts +15 -0
- package/tests/fixtures/corpus/oss-repos/hono/.vitest.config/jsx-runtime-dom.ts +15 -0
- package/tests/fixtures/corpus/oss-repos/hono/.vitest.config/setup-vitest.ts +47 -0
- package/tests/fixtures/corpus/oss-repos/hono/LICENSE +21 -0
- package/tests/fixtures/corpus/oss-repos/hono/README.md +91 -0
- package/tests/fixtures/corpus/oss-repos/hono/build.ts +80 -0
- package/tests/fixtures/corpus/oss-repos/hono/bun.lockb +0 -0
- package/tests/fixtures/corpus/oss-repos/hono/bunfig.toml +7 -0
- package/tests/fixtures/corpus/oss-repos/hono/codecov.yml +13 -0
- package/tests/fixtures/corpus/oss-repos/hono/docs/CODE_OF_CONDUCT.md +128 -0
- package/tests/fixtures/corpus/oss-repos/hono/docs/CONTRIBUTING.md +62 -0
- package/tests/fixtures/corpus/oss-repos/hono/docs/MIGRATION.md +295 -0
- package/tests/fixtures/corpus/oss-repos/hono/docs/images/hono-logo.png +0 -0
- package/tests/fixtures/corpus/oss-repos/hono/docs/images/hono-logo.pxm +0 -0
- package/tests/fixtures/corpus/oss-repos/hono/docs/images/hono-logo.svg +6 -0
- package/tests/fixtures/corpus/oss-repos/hono/docs/images/hono-title.png +0 -0
- package/tests/fixtures/corpus/oss-repos/hono/docs/images/hono-title.pxm +0 -0
- package/tests/fixtures/corpus/oss-repos/hono/jsr.json +119 -0
- package/tests/fixtures/corpus/oss-repos/hono/package.cjs.json +3 -0
- package/tests/fixtures/corpus/oss-repos/hono/package.json +650 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/aws-lambda/handler.ts +492 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/aws-lambda/index.ts +13 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/aws-lambda/types.ts +144 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/bun/conninfo.ts +28 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/bun/index.ts +9 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/bun/serve-static.ts +35 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/bun/server.ts +30 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/bun/ssg.ts +27 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/bun/websocket.ts +110 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/cloudflare-pages/handler.ts +120 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/cloudflare-pages/index.ts +7 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/cloudflare-workers/conninfo.ts +7 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/cloudflare-workers/index.ts +8 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/cloudflare-workers/serve-static-module.ts +12 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/cloudflare-workers/serve-static.ts +39 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/cloudflare-workers/utils.ts +50 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/cloudflare-workers/websocket.ts +50 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/deno/conninfo.ts +17 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/deno/deno.d.ts +28 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/deno/index.ts +9 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/deno/serve-static.ts +40 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/deno/ssg.ts +27 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/deno/websocket.ts +51 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/lambda-edge/conninfo.ts +15 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/lambda-edge/handler.ts +189 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/lambda-edge/index.ts +14 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/netlify/handler.ts +10 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/netlify/index.ts +6 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/netlify/mod.ts +1 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/service-worker/handler.ts +34 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/service-worker/index.ts +5 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/service-worker/types.ts +14 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/vercel/conninfo.ts +8 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/vercel/handler.ts +9 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/adapter/vercel/index.ts +7 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/client/client.ts +214 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/client/index.ts +14 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/client/types.ts +180 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/client/utils.ts +54 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/compose.ts +94 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/context.ts +914 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/accepts/accepts.ts +81 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/accepts/index.ts +6 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/adapter/index.ts +85 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/conninfo/index.ts +6 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/conninfo/types.ts +45 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/cookie/index.ts +130 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/css/common.ts +243 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/css/index.ts +220 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/dev/index.ts +79 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/factory/index.ts +246 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/html/index.ts +56 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/ssg/index.ts +13 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/ssg/middleware.ts +79 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/ssg/ssg.ts +388 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/ssg/utils.ts +71 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/streaming/index.ts +9 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/streaming/sse.ts +89 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/streaming/stream.ts +36 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/streaming/text.ts +15 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/testing/index.ts +26 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/helper/websocket/index.ts +57 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/hono-base.ts +523 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/hono.ts +34 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/http-exception.ts +78 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/index.ts +51 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/base.ts +419 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/children.ts +20 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/components.ts +195 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/constants.ts +5 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/context.ts +50 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/dom/client.ts +89 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/dom/components.ts +39 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/dom/context.ts +52 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/dom/css.ts +246 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/dom/hooks/index.ts +91 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/dom/index.ts +159 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/dom/intrinsic-element/components.ts +398 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/dom/jsx-dev-runtime.ts +22 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/dom/jsx-runtime.ts +7 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/dom/render.ts +772 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/dom/server.ts +70 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/dom/utils.ts +7 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/hooks/index.ts +426 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/index.ts +114 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/intrinsic-element/common.ts +11 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/intrinsic-element/components.ts +196 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/intrinsic-elements.ts +924 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/jsx-dev-runtime.ts +26 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/jsx-runtime.ts +18 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/streaming.ts +184 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/types.ts +41 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/jsx/utils.ts +36 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/basic-auth/index.ts +128 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/bearer-auth/index.ts +159 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/body-limit/index.ts +115 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/cache/index.ts +127 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/combine/index.ts +153 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/compress/index.ts +79 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/context-storage/index.ts +55 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/cors/index.ts +141 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/csrf/index.ts +90 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/etag/index.ts +88 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/ip-restriction/index.ts +178 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/jsx-renderer/index.ts +158 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/jwt/index.ts +8 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/jwt/jwt.ts +159 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/logger/index.ts +93 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/method-override/index.ts +146 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/powered-by/index.ts +13 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/pretty-json/index.ts +50 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/request-id/index.ts +8 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/request-id/request-id.ts +59 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/secure-headers/index.ts +8 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/secure-headers/permissions-policy.ts +86 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/secure-headers/secure-headers.ts +319 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/serve-static/index.ts +140 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/timeout/index.ts +58 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/timing/index.ts +7 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/timing/timing.ts +225 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/middleware/trailing-slash/index.ts +71 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/preset/quick.ts +24 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/preset/tiny.ts +20 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/request.ts +403 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/router/linear-router/index.ts +6 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/router/linear-router/router.ts +132 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/router/pattern-router/index.ts +6 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/router/pattern-router/router.ts +54 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/router/reg-exp-router/index.ts +6 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/router/reg-exp-router/node.ts +159 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/router/reg-exp-router/router.ts +274 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/router/reg-exp-router/trie.ts +74 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/router/smart-router/index.ts +6 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/router/smart-router/router.ts +69 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/router/trie-router/index.ts +6 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/router/trie-router/node.ts +205 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/router/trie-router/router.ts +28 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/router.ts +103 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/types.ts +2009 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/basic-auth.ts +26 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/body.ts +225 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/buffer.ts +65 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/color.ts +26 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/concurrent.ts +55 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/cookie.ts +230 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/crypto.ts +65 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/encode.ts +34 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/filepath.ts +56 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/handler.ts +15 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/html.ts +182 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/http-status.ts +69 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/ipaddr.ts +113 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/jwt/index.ts +7 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/jwt/jwa.ts +23 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/jwt/jws.ts +226 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/jwt/jwt.ts +114 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/jwt/types.ts +83 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/jwt/utf8.ts +7 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/mime.ts +142 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/stream.ts +96 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/types.ts +105 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/utils/url.ts +310 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/validator/index.ts +7 -0
- package/tests/fixtures/corpus/oss-repos/hono/src/validator/validator.ts +151 -0
- package/tests/fixtures/corpus/oss-repos/hono/tsconfig.build.json +23 -0
- package/tests/fixtures/corpus/oss-repos/hono/tsconfig.json +28 -0
- package/tests/fixtures/corpus/oss-repos/hono/vitest.config.ts +34 -0
- package/tests/fixtures/corpus/oss-repos/hono/yarn.lock +6232 -0
- package/tests/fixtures/documentation/api-reference.md +412 -0
- package/tests/fixtures/documentation/architecture.md +214 -0
- package/tests/fixtures/documentation/deployment-guide.md +420 -0
- package/tests/fixtures/github-readmes/express.md +133 -0
- package/tests/fixtures/github-readmes/nextjs.md +106 -0
- package/tests/fixtures/github-readmes/react.md +74 -0
- package/tests/fixtures/github-readmes/typescript.md +93 -0
- package/tests/fixtures/github-readmes/vite.md +79 -0
- package/tests/fixtures/queries/core.json +125 -0
- package/tests/fixtures/queries/extended.json +427 -0
- package/tests/fixtures/queries/generated/.gitkeep +0 -0
- package/tests/fixtures/test-server.ts +267 -0
- package/tests/helpers/performance-metrics.ts +387 -0
- package/tests/helpers/search-relevance.ts +381 -0
- package/tests/integration/cli-consistency.test.ts +299 -0
- package/tests/integration/cli.test.ts +69 -0
- package/tests/integration/e2e-workflow.test.ts +612 -0
- package/tests/integration/python-bridge.test.ts +183 -0
- package/tests/integration/search-quality.test.ts +718 -0
- package/tests/integration/stress.test.ts +326 -0
- package/tests/mcp/server.test.ts +15 -0
- package/tests/scripts/schemas/evaluation.json +44 -0
- package/tests/scripts/schemas/query-generation.json +21 -0
- package/tests/services/code-unit.service.test.ts +47 -0
- package/tests/services/search.progressive-context.test.ts +35 -0
- package/tsconfig.json +34 -0
- package/tsup.config.ts +15 -0
- package/turndown-plugin-gfm.d.ts +29 -0
- package/vitest.config.ts +79 -0
|
@@ -0,0 +1,958 @@
|
|
|
1
|
+
import {
|
|
2
|
+
JobService,
|
|
3
|
+
createServices,
|
|
4
|
+
createStoreId
|
|
5
|
+
} from "./chunk-5QMHZUC4.js";
|
|
6
|
+
|
|
7
|
+
// src/mcp/server.ts
|
|
8
|
+
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
|
|
9
|
+
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
10
|
+
import {
|
|
11
|
+
CallToolRequestSchema,
|
|
12
|
+
ListToolsRequestSchema
|
|
13
|
+
} from "@modelcontextprotocol/sdk/types.js";
|
|
14
|
+
|
|
15
|
+
// src/mcp/schemas/index.ts
|
|
16
|
+
import { z } from "zod";
|
|
17
|
+
var SearchArgsSchema = z.object({
|
|
18
|
+
query: z.string().min(1, "Query must be a non-empty string"),
|
|
19
|
+
intent: z.enum(["find-pattern", "find-implementation", "find-usage", "find-definition", "find-documentation"]).optional(),
|
|
20
|
+
detail: z.enum(["minimal", "contextual", "full"]).default("minimal"),
|
|
21
|
+
limit: z.number().int().positive().default(10),
|
|
22
|
+
stores: z.array(z.string()).optional()
|
|
23
|
+
});
|
|
24
|
+
var GetFullContextArgsSchema = z.object({
|
|
25
|
+
resultId: z.string().min(1, "Result ID must be a non-empty string")
|
|
26
|
+
});
|
|
27
|
+
var ListStoresArgsSchema = z.object({
|
|
28
|
+
type: z.enum(["file", "repo", "web"]).optional()
|
|
29
|
+
});
|
|
30
|
+
var GetStoreInfoArgsSchema = z.object({
|
|
31
|
+
store: z.string().min(1, "Store name or ID must be a non-empty string")
|
|
32
|
+
});
|
|
33
|
+
var CreateStoreArgsSchema = z.object({
|
|
34
|
+
name: z.string().min(1, "Store name must be a non-empty string"),
|
|
35
|
+
type: z.enum(["file", "repo"]),
|
|
36
|
+
source: z.string().min(1, "Source path or URL must be a non-empty string"),
|
|
37
|
+
branch: z.string().optional(),
|
|
38
|
+
description: z.string().optional()
|
|
39
|
+
});
|
|
40
|
+
var IndexStoreArgsSchema = z.object({
|
|
41
|
+
store: z.string().min(1, "Store name or ID must be a non-empty string")
|
|
42
|
+
});
|
|
43
|
+
var DeleteStoreArgsSchema = z.object({
|
|
44
|
+
store: z.string().min(1, "Store name or ID must be a non-empty string")
|
|
45
|
+
});
|
|
46
|
+
var CheckJobStatusArgsSchema = z.object({
|
|
47
|
+
jobId: z.string().min(1, "Job ID must be a non-empty string")
|
|
48
|
+
});
|
|
49
|
+
var ListJobsArgsSchema = z.object({
|
|
50
|
+
activeOnly: z.boolean().optional(),
|
|
51
|
+
status: z.enum(["pending", "running", "completed", "failed", "cancelled"]).optional()
|
|
52
|
+
});
|
|
53
|
+
var CancelJobArgsSchema = z.object({
|
|
54
|
+
jobId: z.string().min(1, "Job ID must be a non-empty string")
|
|
55
|
+
});
|
|
56
|
+
var ExecuteArgsSchema = z.object({
|
|
57
|
+
command: z.string().min(1, "Command name is required"),
|
|
58
|
+
args: z.record(z.string(), z.unknown()).optional()
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
// src/mcp/cache.ts
|
|
62
|
+
var LRUCache = class {
|
|
63
|
+
cache = /* @__PURE__ */ new Map();
|
|
64
|
+
maxSize;
|
|
65
|
+
/**
|
|
66
|
+
* Create a new LRU cache
|
|
67
|
+
*
|
|
68
|
+
* @param maxSize - Maximum number of items to store (default: 1000)
|
|
69
|
+
*/
|
|
70
|
+
constructor(maxSize = 1e3) {
|
|
71
|
+
this.maxSize = maxSize;
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* Store a value in the cache
|
|
75
|
+
*
|
|
76
|
+
* If the key already exists, it will be moved to the end (most recent).
|
|
77
|
+
* If the cache is at capacity, the oldest item will be evicted.
|
|
78
|
+
*
|
|
79
|
+
* @param key - The cache key
|
|
80
|
+
* @param value - The value to store
|
|
81
|
+
*/
|
|
82
|
+
set(key, value) {
|
|
83
|
+
if (this.cache.has(key)) {
|
|
84
|
+
this.cache.delete(key);
|
|
85
|
+
}
|
|
86
|
+
this.cache.set(key, value);
|
|
87
|
+
if (this.cache.size > this.maxSize) {
|
|
88
|
+
const firstKey = this.cache.keys().next().value;
|
|
89
|
+
if (firstKey !== void 0) {
|
|
90
|
+
this.cache.delete(firstKey);
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* Retrieve a value from the cache
|
|
96
|
+
*
|
|
97
|
+
* If the key exists, it will be moved to the end (most recent).
|
|
98
|
+
*
|
|
99
|
+
* @param key - The cache key
|
|
100
|
+
* @returns The cached value, or undefined if not found
|
|
101
|
+
*/
|
|
102
|
+
get(key) {
|
|
103
|
+
const value = this.cache.get(key);
|
|
104
|
+
if (value !== void 0) {
|
|
105
|
+
this.cache.delete(key);
|
|
106
|
+
this.cache.set(key, value);
|
|
107
|
+
}
|
|
108
|
+
return value;
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* Check if a key exists in the cache
|
|
112
|
+
*
|
|
113
|
+
* @param key - The cache key
|
|
114
|
+
* @returns True if the key exists
|
|
115
|
+
*/
|
|
116
|
+
has(key) {
|
|
117
|
+
return this.cache.has(key);
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* Remove a specific key from the cache
|
|
121
|
+
*
|
|
122
|
+
* @param key - The cache key
|
|
123
|
+
* @returns True if the key was removed, false if it didn't exist
|
|
124
|
+
*/
|
|
125
|
+
delete(key) {
|
|
126
|
+
return this.cache.delete(key);
|
|
127
|
+
}
|
|
128
|
+
/**
|
|
129
|
+
* Clear all entries from the cache
|
|
130
|
+
*/
|
|
131
|
+
clear() {
|
|
132
|
+
this.cache.clear();
|
|
133
|
+
}
|
|
134
|
+
/**
|
|
135
|
+
* Get the current number of items in the cache
|
|
136
|
+
*/
|
|
137
|
+
get size() {
|
|
138
|
+
return this.cache.size;
|
|
139
|
+
}
|
|
140
|
+
};
|
|
141
|
+
|
|
142
|
+
// src/mcp/handlers/search.handler.ts
|
|
143
|
+
var resultCache = new LRUCache(1e3);
|
|
144
|
+
var handleSearch = async (args, context) => {
|
|
145
|
+
const validated = SearchArgsSchema.parse(args);
|
|
146
|
+
const { services } = context;
|
|
147
|
+
const storeIds = validated.stores !== void 0 ? await Promise.all(validated.stores.map(async (s) => {
|
|
148
|
+
const store = await services.store.getByIdOrName(s);
|
|
149
|
+
if (!store) {
|
|
150
|
+
throw new Error(`Store not found: ${s}`);
|
|
151
|
+
}
|
|
152
|
+
return store.id;
|
|
153
|
+
})) : (await services.store.list()).map((s) => s.id);
|
|
154
|
+
try {
|
|
155
|
+
for (const storeId of storeIds) {
|
|
156
|
+
await services.lance.initialize(storeId);
|
|
157
|
+
}
|
|
158
|
+
} catch (error) {
|
|
159
|
+
throw new Error(
|
|
160
|
+
`Failed to initialize vector stores: ${error instanceof Error ? error.message : String(error)}`
|
|
161
|
+
);
|
|
162
|
+
}
|
|
163
|
+
const searchQuery = {
|
|
164
|
+
query: validated.query,
|
|
165
|
+
stores: storeIds,
|
|
166
|
+
mode: "hybrid",
|
|
167
|
+
limit: validated.limit,
|
|
168
|
+
detail: validated.detail
|
|
169
|
+
};
|
|
170
|
+
const results = await services.search.search(searchQuery);
|
|
171
|
+
for (const result of results.results) {
|
|
172
|
+
resultCache.set(result.id, result);
|
|
173
|
+
}
|
|
174
|
+
const estimatedTokens = results.results.reduce((sum, r) => {
|
|
175
|
+
let tokens = 100;
|
|
176
|
+
if (r.context) tokens += 200;
|
|
177
|
+
if (r.full) tokens += 800;
|
|
178
|
+
return sum + tokens;
|
|
179
|
+
}, 0);
|
|
180
|
+
const enhancedResults = await Promise.all(results.results.map(async (r) => {
|
|
181
|
+
const storeId = r.metadata.storeId;
|
|
182
|
+
const store = await services.store.getByIdOrName(storeId);
|
|
183
|
+
return {
|
|
184
|
+
id: r.id,
|
|
185
|
+
score: r.score,
|
|
186
|
+
summary: {
|
|
187
|
+
...r.summary,
|
|
188
|
+
storeName: store?.name,
|
|
189
|
+
repoRoot: store !== void 0 && store.type === "repo" ? store.path : void 0
|
|
190
|
+
},
|
|
191
|
+
context: r.context,
|
|
192
|
+
full: r.full
|
|
193
|
+
};
|
|
194
|
+
}));
|
|
195
|
+
return {
|
|
196
|
+
content: [
|
|
197
|
+
{
|
|
198
|
+
type: "text",
|
|
199
|
+
text: JSON.stringify({
|
|
200
|
+
results: enhancedResults,
|
|
201
|
+
totalResults: results.totalResults,
|
|
202
|
+
estimatedTokens,
|
|
203
|
+
mode: results.mode,
|
|
204
|
+
timeMs: results.timeMs
|
|
205
|
+
}, null, 2)
|
|
206
|
+
}
|
|
207
|
+
]
|
|
208
|
+
};
|
|
209
|
+
};
|
|
210
|
+
var handleGetFullContext = async (args, context) => {
|
|
211
|
+
const validated = GetFullContextArgsSchema.parse(args);
|
|
212
|
+
const resultId = validated.resultId;
|
|
213
|
+
const cachedResult = resultCache.get(resultId);
|
|
214
|
+
if (!cachedResult) {
|
|
215
|
+
throw new Error(
|
|
216
|
+
`Result not found in cache: ${resultId}. Run a search first to cache results.`
|
|
217
|
+
);
|
|
218
|
+
}
|
|
219
|
+
if (cachedResult.full) {
|
|
220
|
+
return {
|
|
221
|
+
content: [
|
|
222
|
+
{
|
|
223
|
+
type: "text",
|
|
224
|
+
text: JSON.stringify({
|
|
225
|
+
id: cachedResult.id,
|
|
226
|
+
score: cachedResult.score,
|
|
227
|
+
summary: cachedResult.summary,
|
|
228
|
+
context: cachedResult.context,
|
|
229
|
+
full: cachedResult.full
|
|
230
|
+
}, null, 2)
|
|
231
|
+
}
|
|
232
|
+
]
|
|
233
|
+
};
|
|
234
|
+
}
|
|
235
|
+
const { services } = context;
|
|
236
|
+
const store = await services.store.getByIdOrName(cachedResult.metadata.storeId);
|
|
237
|
+
if (!store) {
|
|
238
|
+
throw new Error(`Store not found: ${cachedResult.metadata.storeId}`);
|
|
239
|
+
}
|
|
240
|
+
await services.lance.initialize(store.id);
|
|
241
|
+
const searchQuery = {
|
|
242
|
+
query: cachedResult.content.substring(0, 100),
|
|
243
|
+
// Use snippet of content as query
|
|
244
|
+
stores: [store.id],
|
|
245
|
+
mode: "hybrid",
|
|
246
|
+
limit: 1,
|
|
247
|
+
detail: "full"
|
|
248
|
+
};
|
|
249
|
+
const results = await services.search.search(searchQuery);
|
|
250
|
+
const fullResult = results.results.find((r) => r.id === resultId);
|
|
251
|
+
if (!fullResult) {
|
|
252
|
+
return {
|
|
253
|
+
content: [
|
|
254
|
+
{
|
|
255
|
+
type: "text",
|
|
256
|
+
text: JSON.stringify({
|
|
257
|
+
id: cachedResult.id,
|
|
258
|
+
score: cachedResult.score,
|
|
259
|
+
summary: cachedResult.summary,
|
|
260
|
+
context: cachedResult.context,
|
|
261
|
+
warning: "Could not retrieve full context, returning cached minimal result"
|
|
262
|
+
}, null, 2)
|
|
263
|
+
}
|
|
264
|
+
]
|
|
265
|
+
};
|
|
266
|
+
}
|
|
267
|
+
resultCache.set(resultId, fullResult);
|
|
268
|
+
return {
|
|
269
|
+
content: [
|
|
270
|
+
{
|
|
271
|
+
type: "text",
|
|
272
|
+
text: JSON.stringify({
|
|
273
|
+
id: fullResult.id,
|
|
274
|
+
score: fullResult.score,
|
|
275
|
+
summary: fullResult.summary,
|
|
276
|
+
context: fullResult.context,
|
|
277
|
+
full: fullResult.full
|
|
278
|
+
}, null, 2)
|
|
279
|
+
}
|
|
280
|
+
]
|
|
281
|
+
};
|
|
282
|
+
};
|
|
283
|
+
|
|
284
|
+
// src/mcp/handlers/index.ts
|
|
285
|
+
var tools = [
|
|
286
|
+
{
|
|
287
|
+
name: "search",
|
|
288
|
+
description: "Search all indexed knowledge stores with pattern detection and AI-optimized results. Returns structured code units with progressive context layers.",
|
|
289
|
+
schema: SearchArgsSchema,
|
|
290
|
+
handler: handleSearch
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
name: "get_full_context",
|
|
294
|
+
description: "Get complete code and context for a specific search result by ID. Use this after search to get full implementation details.",
|
|
295
|
+
schema: GetFullContextArgsSchema,
|
|
296
|
+
handler: handleGetFullContext
|
|
297
|
+
}
|
|
298
|
+
];
|
|
299
|
+
|
|
300
|
+
// src/mcp/commands/registry.ts
|
|
301
|
+
import { z as z2 } from "zod";
|
|
302
|
+
var CommandRegistry = class {
|
|
303
|
+
commands = /* @__PURE__ */ new Map();
|
|
304
|
+
/**
|
|
305
|
+
* Register a command
|
|
306
|
+
*/
|
|
307
|
+
register(command) {
|
|
308
|
+
if (this.commands.has(command.name)) {
|
|
309
|
+
throw new Error(`Command already registered: ${command.name}`);
|
|
310
|
+
}
|
|
311
|
+
this.commands.set(command.name, command);
|
|
312
|
+
}
|
|
313
|
+
/**
|
|
314
|
+
* Register multiple commands at once
|
|
315
|
+
*/
|
|
316
|
+
registerAll(commands) {
|
|
317
|
+
for (const command of commands) {
|
|
318
|
+
this.register(command);
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
/**
|
|
322
|
+
* Get a command by name
|
|
323
|
+
*/
|
|
324
|
+
get(name) {
|
|
325
|
+
return this.commands.get(name);
|
|
326
|
+
}
|
|
327
|
+
/**
|
|
328
|
+
* Check if a command exists
|
|
329
|
+
*/
|
|
330
|
+
has(name) {
|
|
331
|
+
return this.commands.has(name);
|
|
332
|
+
}
|
|
333
|
+
/**
|
|
334
|
+
* Get all registered commands
|
|
335
|
+
*/
|
|
336
|
+
all() {
|
|
337
|
+
return Array.from(this.commands.values());
|
|
338
|
+
}
|
|
339
|
+
/**
|
|
340
|
+
* Get commands grouped by category (prefix before colon)
|
|
341
|
+
*/
|
|
342
|
+
grouped() {
|
|
343
|
+
const groups = /* @__PURE__ */ new Map();
|
|
344
|
+
for (const cmd of this.commands.values()) {
|
|
345
|
+
const colonIndex = cmd.name.indexOf(":");
|
|
346
|
+
const category = colonIndex === -1 ? "general" : cmd.name.slice(0, colonIndex);
|
|
347
|
+
const existing = groups.get(category) ?? [];
|
|
348
|
+
existing.push(cmd);
|
|
349
|
+
groups.set(category, existing);
|
|
350
|
+
}
|
|
351
|
+
return groups;
|
|
352
|
+
}
|
|
353
|
+
};
|
|
354
|
+
var commandRegistry = new CommandRegistry();
|
|
355
|
+
async function executeCommand(commandName, args, context) {
|
|
356
|
+
const command = commandRegistry.get(commandName);
|
|
357
|
+
if (command === void 0) {
|
|
358
|
+
throw new Error(
|
|
359
|
+
`Unknown command: ${commandName}. Use execute("commands") to list available commands.`
|
|
360
|
+
);
|
|
361
|
+
}
|
|
362
|
+
const validatedArgs = command.argsSchema !== void 0 ? command.argsSchema.parse(args) : args;
|
|
363
|
+
return command.handler(validatedArgs, context);
|
|
364
|
+
}
|
|
365
|
+
function generateHelp(commandName) {
|
|
366
|
+
if (commandName !== void 0) {
|
|
367
|
+
const command = commandRegistry.get(commandName);
|
|
368
|
+
if (command === void 0) {
|
|
369
|
+
throw new Error(`Unknown command: ${commandName}`);
|
|
370
|
+
}
|
|
371
|
+
const lines2 = [
|
|
372
|
+
`Command: ${command.name}`,
|
|
373
|
+
`Description: ${command.description}`,
|
|
374
|
+
""
|
|
375
|
+
];
|
|
376
|
+
if (command.argsSchema !== void 0) {
|
|
377
|
+
lines2.push("Arguments:");
|
|
378
|
+
const schema = command.argsSchema;
|
|
379
|
+
if (schema instanceof z2.ZodObject) {
|
|
380
|
+
const shape = schema.shape;
|
|
381
|
+
for (const [key, fieldSchema] of Object.entries(shape)) {
|
|
382
|
+
const isOptional = fieldSchema.safeParse(void 0).success;
|
|
383
|
+
const desc = fieldSchema.description ?? "";
|
|
384
|
+
lines2.push(` ${key}${isOptional ? " (optional)" : ""}: ${desc}`);
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
} else {
|
|
388
|
+
lines2.push("Arguments: none");
|
|
389
|
+
}
|
|
390
|
+
return lines2.join("\n");
|
|
391
|
+
}
|
|
392
|
+
const groups = commandRegistry.grouped();
|
|
393
|
+
const lines = ["Available commands:", ""];
|
|
394
|
+
for (const [category, commands] of groups) {
|
|
395
|
+
lines.push(`${category}:`);
|
|
396
|
+
for (const cmd of commands) {
|
|
397
|
+
lines.push(` ${cmd.name} - ${cmd.description}`);
|
|
398
|
+
}
|
|
399
|
+
lines.push("");
|
|
400
|
+
}
|
|
401
|
+
lines.push('Use execute("help", {command: "name"}) for detailed command help.');
|
|
402
|
+
return lines.join("\n");
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
// src/mcp/commands/store.commands.ts
|
|
406
|
+
import { z as z3 } from "zod";
|
|
407
|
+
|
|
408
|
+
// src/mcp/handlers/store.handler.ts
|
|
409
|
+
import { rm } from "fs/promises";
|
|
410
|
+
import { join } from "path";
|
|
411
|
+
|
|
412
|
+
// src/workers/spawn-worker.ts
|
|
413
|
+
import { spawn } from "child_process";
|
|
414
|
+
import { fileURLToPath } from "url";
|
|
415
|
+
import path from "path";
|
|
416
|
+
function spawnBackgroundWorker(jobId, dataDir) {
|
|
417
|
+
const __dirname2 = path.dirname(fileURLToPath(import.meta.url));
|
|
418
|
+
const isProduction = __dirname2.includes("/dist/");
|
|
419
|
+
let command;
|
|
420
|
+
let args;
|
|
421
|
+
if (isProduction) {
|
|
422
|
+
const workerScript = path.join(__dirname2, "background-worker-cli.js");
|
|
423
|
+
command = process.execPath;
|
|
424
|
+
args = [workerScript, jobId];
|
|
425
|
+
} else {
|
|
426
|
+
const workerScript = path.join(__dirname2, "background-worker-cli.ts");
|
|
427
|
+
command = "npx";
|
|
428
|
+
args = ["tsx", workerScript, jobId];
|
|
429
|
+
}
|
|
430
|
+
const worker = spawn(command, args, {
|
|
431
|
+
detached: true,
|
|
432
|
+
// Detach from parent process
|
|
433
|
+
stdio: "ignore",
|
|
434
|
+
// Don't pipe stdio (fully independent)
|
|
435
|
+
env: {
|
|
436
|
+
...process.env,
|
|
437
|
+
// Inherit environment variables
|
|
438
|
+
BLUERA_DATA_DIR: dataDir
|
|
439
|
+
// Pass dataDir to worker
|
|
440
|
+
}
|
|
441
|
+
});
|
|
442
|
+
worker.unref();
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
// src/mcp/handlers/store.handler.ts
|
|
446
|
+
var handleListStores = async (args, context) => {
|
|
447
|
+
const validated = ListStoresArgsSchema.parse(args);
|
|
448
|
+
const { services } = context;
|
|
449
|
+
const stores = await services.store.list();
|
|
450
|
+
const filtered = validated.type !== void 0 ? stores.filter((s) => s.type === validated.type) : stores;
|
|
451
|
+
return {
|
|
452
|
+
content: [
|
|
453
|
+
{
|
|
454
|
+
type: "text",
|
|
455
|
+
text: JSON.stringify({
|
|
456
|
+
stores: filtered.map((s) => ({
|
|
457
|
+
id: s.id,
|
|
458
|
+
name: s.name,
|
|
459
|
+
type: s.type,
|
|
460
|
+
path: "path" in s ? s.path : void 0,
|
|
461
|
+
url: "url" in s && s.url !== void 0 ? s.url : void 0,
|
|
462
|
+
description: s.description,
|
|
463
|
+
createdAt: s.createdAt.toISOString()
|
|
464
|
+
}))
|
|
465
|
+
}, null, 2)
|
|
466
|
+
}
|
|
467
|
+
]
|
|
468
|
+
};
|
|
469
|
+
};
|
|
470
|
+
var handleGetStoreInfo = async (args, context) => {
|
|
471
|
+
const validated = GetStoreInfoArgsSchema.parse(args);
|
|
472
|
+
const { services } = context;
|
|
473
|
+
const store = await services.store.getByIdOrName(createStoreId(validated.store));
|
|
474
|
+
if (store === void 0) {
|
|
475
|
+
throw new Error(`Store not found: ${validated.store}`);
|
|
476
|
+
}
|
|
477
|
+
return {
|
|
478
|
+
content: [
|
|
479
|
+
{
|
|
480
|
+
type: "text",
|
|
481
|
+
text: JSON.stringify({
|
|
482
|
+
id: store.id,
|
|
483
|
+
name: store.name,
|
|
484
|
+
type: store.type,
|
|
485
|
+
path: "path" in store ? store.path : void 0,
|
|
486
|
+
url: "url" in store && store.url !== void 0 ? store.url : void 0,
|
|
487
|
+
branch: "branch" in store ? store.branch : void 0,
|
|
488
|
+
description: store.description,
|
|
489
|
+
status: store.status,
|
|
490
|
+
createdAt: store.createdAt.toISOString(),
|
|
491
|
+
updatedAt: store.updatedAt.toISOString()
|
|
492
|
+
}, null, 2)
|
|
493
|
+
}
|
|
494
|
+
]
|
|
495
|
+
};
|
|
496
|
+
};
|
|
497
|
+
var handleCreateStore = async (args, context) => {
|
|
498
|
+
const validated = CreateStoreArgsSchema.parse(args);
|
|
499
|
+
const { services, options } = context;
|
|
500
|
+
const isUrl = validated.source.startsWith("http://") || validated.source.startsWith("https://") || validated.source.startsWith("git@");
|
|
501
|
+
const result = await services.store.create({
|
|
502
|
+
name: validated.name,
|
|
503
|
+
type: validated.type,
|
|
504
|
+
...isUrl ? { url: validated.source } : { path: validated.source },
|
|
505
|
+
...validated.branch !== void 0 ? { branch: validated.branch } : {},
|
|
506
|
+
...validated.description !== void 0 ? { description: validated.description } : {}
|
|
507
|
+
});
|
|
508
|
+
if (!result.success) {
|
|
509
|
+
throw new Error(result.error.message);
|
|
510
|
+
}
|
|
511
|
+
const jobService = new JobService(options.dataDir);
|
|
512
|
+
const jobDetails = {
|
|
513
|
+
storeName: result.data.name,
|
|
514
|
+
storeId: result.data.id
|
|
515
|
+
};
|
|
516
|
+
if (isUrl) {
|
|
517
|
+
jobDetails["url"] = validated.source;
|
|
518
|
+
}
|
|
519
|
+
if ("path" in result.data && result.data.path) {
|
|
520
|
+
jobDetails["path"] = result.data.path;
|
|
521
|
+
}
|
|
522
|
+
const job = jobService.createJob({
|
|
523
|
+
type: validated.type === "repo" && isUrl ? "clone" : "index",
|
|
524
|
+
details: jobDetails,
|
|
525
|
+
message: `Indexing ${result.data.name}...`
|
|
526
|
+
});
|
|
527
|
+
spawnBackgroundWorker(job.id, options.dataDir ?? "");
|
|
528
|
+
return {
|
|
529
|
+
content: [
|
|
530
|
+
{
|
|
531
|
+
type: "text",
|
|
532
|
+
text: JSON.stringify({
|
|
533
|
+
store: {
|
|
534
|
+
id: result.data.id,
|
|
535
|
+
name: result.data.name,
|
|
536
|
+
type: result.data.type,
|
|
537
|
+
path: "path" in result.data ? result.data.path : void 0
|
|
538
|
+
},
|
|
539
|
+
job: {
|
|
540
|
+
id: job.id,
|
|
541
|
+
status: job.status,
|
|
542
|
+
message: job.message
|
|
543
|
+
},
|
|
544
|
+
message: `Store created. Indexing started in background (Job ID: ${job.id})`
|
|
545
|
+
}, null, 2)
|
|
546
|
+
}
|
|
547
|
+
]
|
|
548
|
+
};
|
|
549
|
+
};
|
|
550
|
+
var handleIndexStore = async (args, context) => {
|
|
551
|
+
const validated = IndexStoreArgsSchema.parse(args);
|
|
552
|
+
const { services, options } = context;
|
|
553
|
+
const store = await services.store.getByIdOrName(createStoreId(validated.store));
|
|
554
|
+
if (store === void 0) {
|
|
555
|
+
throw new Error(`Store not found: ${validated.store}`);
|
|
556
|
+
}
|
|
557
|
+
const jobService = new JobService(options.dataDir);
|
|
558
|
+
const jobDetails = {
|
|
559
|
+
storeName: store.name,
|
|
560
|
+
storeId: store.id
|
|
561
|
+
};
|
|
562
|
+
if ("path" in store && store.path) {
|
|
563
|
+
jobDetails["path"] = store.path;
|
|
564
|
+
}
|
|
565
|
+
const job = jobService.createJob({
|
|
566
|
+
type: "index",
|
|
567
|
+
details: jobDetails,
|
|
568
|
+
message: `Re-indexing ${store.name}...`
|
|
569
|
+
});
|
|
570
|
+
spawnBackgroundWorker(job.id, options.dataDir ?? "");
|
|
571
|
+
return {
|
|
572
|
+
content: [
|
|
573
|
+
{
|
|
574
|
+
type: "text",
|
|
575
|
+
text: JSON.stringify({
|
|
576
|
+
store: {
|
|
577
|
+
id: store.id,
|
|
578
|
+
name: store.name
|
|
579
|
+
},
|
|
580
|
+
job: {
|
|
581
|
+
id: job.id,
|
|
582
|
+
status: job.status,
|
|
583
|
+
message: job.message
|
|
584
|
+
},
|
|
585
|
+
message: `Indexing started in background (Job ID: ${job.id})`
|
|
586
|
+
}, null, 2)
|
|
587
|
+
}
|
|
588
|
+
]
|
|
589
|
+
};
|
|
590
|
+
};
|
|
591
|
+
var handleDeleteStore = async (args, context) => {
|
|
592
|
+
const validated = DeleteStoreArgsSchema.parse(args);
|
|
593
|
+
const { services, options } = context;
|
|
594
|
+
const store = await services.store.getByIdOrName(createStoreId(validated.store));
|
|
595
|
+
if (store === void 0) {
|
|
596
|
+
throw new Error(`Store not found: ${validated.store}`);
|
|
597
|
+
}
|
|
598
|
+
await services.lance.deleteStore(store.id);
|
|
599
|
+
if (store.type === "repo" && "url" in store && store.url !== void 0) {
|
|
600
|
+
if (options.dataDir === void 0) {
|
|
601
|
+
throw new Error("dataDir is required to delete cloned repository files");
|
|
602
|
+
}
|
|
603
|
+
const repoPath = join(options.dataDir, "repos", store.id);
|
|
604
|
+
await rm(repoPath, { recursive: true, force: true });
|
|
605
|
+
}
|
|
606
|
+
const result = await services.store.delete(store.id);
|
|
607
|
+
if (!result.success) {
|
|
608
|
+
throw new Error(result.error.message);
|
|
609
|
+
}
|
|
610
|
+
return {
|
|
611
|
+
content: [
|
|
612
|
+
{
|
|
613
|
+
type: "text",
|
|
614
|
+
text: JSON.stringify({
|
|
615
|
+
deleted: true,
|
|
616
|
+
store: {
|
|
617
|
+
id: store.id,
|
|
618
|
+
name: store.name,
|
|
619
|
+
type: store.type
|
|
620
|
+
},
|
|
621
|
+
message: `Successfully deleted store: ${store.name}`
|
|
622
|
+
}, null, 2)
|
|
623
|
+
}
|
|
624
|
+
]
|
|
625
|
+
};
|
|
626
|
+
};
|
|
627
|
+
|
|
628
|
+
// src/mcp/commands/store.commands.ts
|
|
629
|
+
var storeCommands = [
|
|
630
|
+
{
|
|
631
|
+
name: "stores",
|
|
632
|
+
description: "List all indexed knowledge stores",
|
|
633
|
+
argsSchema: z3.object({
|
|
634
|
+
type: z3.enum(["file", "repo", "web"]).optional().describe("Filter by store type")
|
|
635
|
+
}),
|
|
636
|
+
handler: (args, context) => handleListStores(args, context)
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
name: "store:info",
|
|
640
|
+
description: "Get detailed information about a specific store",
|
|
641
|
+
argsSchema: z3.object({
|
|
642
|
+
store: z3.string().min(1).describe("Store name or ID")
|
|
643
|
+
}),
|
|
644
|
+
handler: (args, context) => handleGetStoreInfo(args, context)
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
name: "store:create",
|
|
648
|
+
description: "Create a new knowledge store from git URL or local path",
|
|
649
|
+
argsSchema: z3.object({
|
|
650
|
+
name: z3.string().min(1).describe("Store name"),
|
|
651
|
+
type: z3.enum(["file", "repo"]).describe("Store type"),
|
|
652
|
+
source: z3.string().min(1).describe("Git URL or local path"),
|
|
653
|
+
branch: z3.string().optional().describe("Git branch (for repo type)"),
|
|
654
|
+
description: z3.string().optional().describe("Store description")
|
|
655
|
+
}),
|
|
656
|
+
handler: (args, context) => handleCreateStore(args, context)
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
name: "store:index",
|
|
660
|
+
description: "Re-index a knowledge store to update search data",
|
|
661
|
+
argsSchema: z3.object({
|
|
662
|
+
store: z3.string().min(1).describe("Store name or ID")
|
|
663
|
+
}),
|
|
664
|
+
handler: (args, context) => handleIndexStore(args, context)
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
name: "store:delete",
|
|
668
|
+
description: "Delete a knowledge store and all associated data",
|
|
669
|
+
argsSchema: z3.object({
|
|
670
|
+
store: z3.string().min(1).describe("Store name or ID")
|
|
671
|
+
}),
|
|
672
|
+
handler: (args, context) => handleDeleteStore(args, context)
|
|
673
|
+
}
|
|
674
|
+
];
|
|
675
|
+
|
|
676
|
+
// src/mcp/commands/job.commands.ts
|
|
677
|
+
import { z as z4 } from "zod";
|
|
678
|
+
|
|
679
|
+
// src/mcp/handlers/job.handler.ts
|
|
680
|
+
var handleCheckJobStatus = (args, context) => {
|
|
681
|
+
const validated = CheckJobStatusArgsSchema.parse(args);
|
|
682
|
+
const { options } = context;
|
|
683
|
+
const jobService = new JobService(options.dataDir);
|
|
684
|
+
const job = jobService.getJob(validated.jobId);
|
|
685
|
+
if (!job) {
|
|
686
|
+
throw new Error(`Job not found: ${validated.jobId}`);
|
|
687
|
+
}
|
|
688
|
+
return Promise.resolve({
|
|
689
|
+
content: [
|
|
690
|
+
{
|
|
691
|
+
type: "text",
|
|
692
|
+
text: JSON.stringify(job, null, 2)
|
|
693
|
+
}
|
|
694
|
+
]
|
|
695
|
+
});
|
|
696
|
+
};
|
|
697
|
+
var handleListJobs = (args, context) => {
|
|
698
|
+
const validated = ListJobsArgsSchema.parse(args);
|
|
699
|
+
const { options } = context;
|
|
700
|
+
const jobService = new JobService(options.dataDir);
|
|
701
|
+
let jobs;
|
|
702
|
+
if (validated.activeOnly === true) {
|
|
703
|
+
jobs = jobService.listActiveJobs();
|
|
704
|
+
} else if (validated.status !== void 0) {
|
|
705
|
+
jobs = jobService.listJobs(validated.status);
|
|
706
|
+
} else {
|
|
707
|
+
jobs = jobService.listJobs();
|
|
708
|
+
}
|
|
709
|
+
return Promise.resolve({
|
|
710
|
+
content: [
|
|
711
|
+
{
|
|
712
|
+
type: "text",
|
|
713
|
+
text: JSON.stringify({ jobs }, null, 2)
|
|
714
|
+
}
|
|
715
|
+
]
|
|
716
|
+
});
|
|
717
|
+
};
|
|
718
|
+
var handleCancelJob = (args, context) => {
|
|
719
|
+
const validated = CancelJobArgsSchema.parse(args);
|
|
720
|
+
const { options } = context;
|
|
721
|
+
const jobService = new JobService(options.dataDir);
|
|
722
|
+
const result = jobService.cancelJob(validated.jobId);
|
|
723
|
+
if (!result.success) {
|
|
724
|
+
throw new Error(result.error.message);
|
|
725
|
+
}
|
|
726
|
+
const job = jobService.getJob(validated.jobId);
|
|
727
|
+
return Promise.resolve({
|
|
728
|
+
content: [
|
|
729
|
+
{
|
|
730
|
+
type: "text",
|
|
731
|
+
text: JSON.stringify({
|
|
732
|
+
success: true,
|
|
733
|
+
job,
|
|
734
|
+
message: "Job cancelled successfully"
|
|
735
|
+
}, null, 2)
|
|
736
|
+
}
|
|
737
|
+
]
|
|
738
|
+
});
|
|
739
|
+
};
|
|
740
|
+
|
|
741
|
+
// src/mcp/commands/job.commands.ts
|
|
742
|
+
var jobCommands = [
|
|
743
|
+
{
|
|
744
|
+
name: "jobs",
|
|
745
|
+
description: "List all background jobs",
|
|
746
|
+
argsSchema: z4.object({
|
|
747
|
+
activeOnly: z4.boolean().optional().describe("Only show active jobs"),
|
|
748
|
+
status: z4.enum(["pending", "running", "completed", "failed", "cancelled"]).optional().describe("Filter by job status")
|
|
749
|
+
}),
|
|
750
|
+
handler: (args, context) => handleListJobs(args, context)
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
name: "job:status",
|
|
754
|
+
description: "Check the status of a specific background job",
|
|
755
|
+
argsSchema: z4.object({
|
|
756
|
+
jobId: z4.string().min(1).describe("Job ID to check")
|
|
757
|
+
}),
|
|
758
|
+
handler: (args, context) => handleCheckJobStatus(args, context)
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
name: "job:cancel",
|
|
762
|
+
description: "Cancel a running or pending background job",
|
|
763
|
+
argsSchema: z4.object({
|
|
764
|
+
jobId: z4.string().min(1).describe("Job ID to cancel")
|
|
765
|
+
}),
|
|
766
|
+
handler: (args, context) => handleCancelJob(args, context)
|
|
767
|
+
}
|
|
768
|
+
];
|
|
769
|
+
|
|
770
|
+
// src/mcp/commands/meta.commands.ts
|
|
771
|
+
import { z as z5 } from "zod";
|
|
772
|
+
var metaCommands = [
|
|
773
|
+
{
|
|
774
|
+
name: "commands",
|
|
775
|
+
description: "List all available commands",
|
|
776
|
+
handler: () => {
|
|
777
|
+
const commands = commandRegistry.all();
|
|
778
|
+
const commandList = commands.map((cmd) => ({
|
|
779
|
+
name: cmd.name,
|
|
780
|
+
description: cmd.description
|
|
781
|
+
}));
|
|
782
|
+
return Promise.resolve({
|
|
783
|
+
content: [
|
|
784
|
+
{
|
|
785
|
+
type: "text",
|
|
786
|
+
text: JSON.stringify({ commands: commandList }, null, 2)
|
|
787
|
+
}
|
|
788
|
+
]
|
|
789
|
+
});
|
|
790
|
+
}
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
name: "help",
|
|
794
|
+
description: "Show help for a specific command or list all commands",
|
|
795
|
+
argsSchema: z5.object({
|
|
796
|
+
command: z5.string().optional().describe("Command name to get help for")
|
|
797
|
+
}),
|
|
798
|
+
handler: (args) => {
|
|
799
|
+
const commandName = args["command"];
|
|
800
|
+
const helpText = generateHelp(commandName);
|
|
801
|
+
return Promise.resolve({
|
|
802
|
+
content: [
|
|
803
|
+
{
|
|
804
|
+
type: "text",
|
|
805
|
+
text: helpText
|
|
806
|
+
}
|
|
807
|
+
]
|
|
808
|
+
});
|
|
809
|
+
}
|
|
810
|
+
}
|
|
811
|
+
];
|
|
812
|
+
|
|
813
|
+
// src/mcp/commands/index.ts
|
|
814
|
+
commandRegistry.registerAll(storeCommands);
|
|
815
|
+
commandRegistry.registerAll(jobCommands);
|
|
816
|
+
commandRegistry.registerAll(metaCommands);
|
|
817
|
+
|
|
818
|
+
// src/mcp/handlers/execute.handler.ts
|
|
819
|
+
var handleExecute = async (args, context) => {
|
|
820
|
+
const validated = ExecuteArgsSchema.parse(args);
|
|
821
|
+
const commandArgs = validated.args ?? {};
|
|
822
|
+
return executeCommand(validated.command, commandArgs, context);
|
|
823
|
+
};
|
|
824
|
+
|
|
825
|
+
// src/mcp/server.ts
|
|
826
|
+
function createMCPServer(options) {
|
|
827
|
+
const server = new Server(
|
|
828
|
+
{
|
|
829
|
+
name: "bluera-knowledge",
|
|
830
|
+
version: "1.0.0"
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
capabilities: {
|
|
834
|
+
tools: {}
|
|
835
|
+
}
|
|
836
|
+
}
|
|
837
|
+
);
|
|
838
|
+
server.setRequestHandler(ListToolsRequestSchema, () => {
|
|
839
|
+
return Promise.resolve({
|
|
840
|
+
tools: [
|
|
841
|
+
// Native search tool with full schema (most used, benefits from detailed params)
|
|
842
|
+
{
|
|
843
|
+
name: "search",
|
|
844
|
+
description: "Search all indexed knowledge stores with pattern detection and AI-optimized results. Returns structured code units with progressive context layers.",
|
|
845
|
+
inputSchema: {
|
|
846
|
+
type: "object",
|
|
847
|
+
properties: {
|
|
848
|
+
query: {
|
|
849
|
+
type: "string",
|
|
850
|
+
description: "Search query (can include type signatures, constraints, or natural language)"
|
|
851
|
+
},
|
|
852
|
+
intent: {
|
|
853
|
+
type: "string",
|
|
854
|
+
enum: ["find-pattern", "find-implementation", "find-usage", "find-definition", "find-documentation"],
|
|
855
|
+
description: "Search intent for better ranking"
|
|
856
|
+
},
|
|
857
|
+
detail: {
|
|
858
|
+
type: "string",
|
|
859
|
+
enum: ["minimal", "contextual", "full"],
|
|
860
|
+
default: "minimal",
|
|
861
|
+
description: "Context detail level: minimal (summary only), contextual (+ imports/types), full (+ complete code)"
|
|
862
|
+
},
|
|
863
|
+
limit: {
|
|
864
|
+
type: "number",
|
|
865
|
+
default: 10,
|
|
866
|
+
description: "Maximum number of results"
|
|
867
|
+
},
|
|
868
|
+
stores: {
|
|
869
|
+
type: "array",
|
|
870
|
+
items: { type: "string" },
|
|
871
|
+
description: "Specific store IDs to search (optional)"
|
|
872
|
+
}
|
|
873
|
+
},
|
|
874
|
+
required: ["query"]
|
|
875
|
+
}
|
|
876
|
+
},
|
|
877
|
+
// Native get_full_context tool (frequently used after search)
|
|
878
|
+
{
|
|
879
|
+
name: "get_full_context",
|
|
880
|
+
description: "Get complete code and context for a specific search result by ID. Use this after search to get full implementation details.",
|
|
881
|
+
inputSchema: {
|
|
882
|
+
type: "object",
|
|
883
|
+
properties: {
|
|
884
|
+
resultId: {
|
|
885
|
+
type: "string",
|
|
886
|
+
description: "Result ID from previous search"
|
|
887
|
+
}
|
|
888
|
+
},
|
|
889
|
+
required: ["resultId"]
|
|
890
|
+
}
|
|
891
|
+
},
|
|
892
|
+
// Meta-tool for store and job management (consolidates 8 tools into 1)
|
|
893
|
+
{
|
|
894
|
+
name: "execute",
|
|
895
|
+
description: "Execute store/job management commands. Commands: stores, store:info, store:create, store:index, store:delete, jobs, job:status, job:cancel, help, commands",
|
|
896
|
+
inputSchema: {
|
|
897
|
+
type: "object",
|
|
898
|
+
properties: {
|
|
899
|
+
command: {
|
|
900
|
+
type: "string",
|
|
901
|
+
description: 'Command to execute (e.g., "stores", "store:create", "jobs", "help")'
|
|
902
|
+
},
|
|
903
|
+
args: {
|
|
904
|
+
type: "object",
|
|
905
|
+
description: 'Command arguments (e.g., {store: "mystore"} for store:info)'
|
|
906
|
+
}
|
|
907
|
+
},
|
|
908
|
+
required: ["command"]
|
|
909
|
+
}
|
|
910
|
+
}
|
|
911
|
+
]
|
|
912
|
+
});
|
|
913
|
+
});
|
|
914
|
+
server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
915
|
+
const { name, arguments: args } = request.params;
|
|
916
|
+
const services = await createServices(
|
|
917
|
+
options.config,
|
|
918
|
+
options.dataDir,
|
|
919
|
+
options.projectRoot
|
|
920
|
+
);
|
|
921
|
+
const context = { services, options };
|
|
922
|
+
if (name === "execute") {
|
|
923
|
+
const validated2 = ExecuteArgsSchema.parse(args ?? {});
|
|
924
|
+
return handleExecute(validated2, context);
|
|
925
|
+
}
|
|
926
|
+
const tool = tools.find((t) => t.name === name);
|
|
927
|
+
if (tool === void 0) {
|
|
928
|
+
throw new Error(`Unknown tool: ${name}`);
|
|
929
|
+
}
|
|
930
|
+
const validated = tool.schema.parse(args ?? {});
|
|
931
|
+
return tool.handler(validated, context);
|
|
932
|
+
});
|
|
933
|
+
return server;
|
|
934
|
+
}
|
|
935
|
+
async function runMCPServer(options) {
|
|
936
|
+
const server = createMCPServer(options);
|
|
937
|
+
const transport = new StdioServerTransport();
|
|
938
|
+
await server.connect(transport);
|
|
939
|
+
console.error("Bluera Knowledge MCP server running on stdio");
|
|
940
|
+
}
|
|
941
|
+
var scriptPath = process.argv[1] ?? "";
|
|
942
|
+
var isMCPServerEntry = scriptPath.endsWith("mcp/server.js") || scriptPath.endsWith("mcp/server");
|
|
943
|
+
if (isMCPServerEntry) {
|
|
944
|
+
runMCPServer({
|
|
945
|
+
dataDir: process.env["DATA_DIR"],
|
|
946
|
+
config: process.env["CONFIG_PATH"],
|
|
947
|
+
projectRoot: process.env["PROJECT_ROOT"] ?? process.env["PWD"]
|
|
948
|
+
}).catch((error) => {
|
|
949
|
+
console.error("Failed to start MCP server:", error);
|
|
950
|
+
process.exit(1);
|
|
951
|
+
});
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
export {
|
|
955
|
+
createMCPServer,
|
|
956
|
+
runMCPServer
|
|
957
|
+
};
|
|
958
|
+
//# sourceMappingURL=chunk-J7J6LXOJ.js.map
|