@gabrywu/knowledge-bank 0.1.2-alpha.276 → 0.1.4-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/README.md +134 -61
- package/dist/claude-marketplace/.claude-plugin/marketplace.json +2 -2
- package/dist/claude-marketplace/core/.claude-plugin/plugin.json +1 -1
- package/dist/claude-marketplace/core/hooks/hooks.json +122 -10
- package/dist/claude-marketplace/core/skills/knowledge.collect/SKILL.md +231 -119
- package/dist/claude-marketplace/core/skills/knowledge.enhance/SKILL.md +31 -121
- package/dist/claude-marketplace/core/skills/knowledge.register/SKILL.md +142 -0
- package/dist/cli.js +6 -6
- package/dist/index.js +1 -1
- package/dist/mcp/mcp-server.js +7 -0
- package/dist/web/public/css/style.css +7 -0
- package/dist/web/public/js/main.js +2 -2
- package/dist/web/views/index.ejs +17 -1
- package/dist/web/views/layout.ejs +1 -0
- package/dist/web/views/partials/cell.ejs +9 -1
- package/dist/web/views/table.ejs +17 -8
- package/node_modules/@modelcontextprotocol/sdk/README.md +1 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.d.ts +12 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.d.ts.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.js +6 -3
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.d.ts +79 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.d.ts.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.js +93 -16
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.js +3 -15
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.js +1 -17
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.js +62 -23
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.js +273 -244
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.js +31 -27
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.d.ts +12 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.d.ts.map +1 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.js +49 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.js.map +1 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.js +89 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.js +58 -53
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.js +33 -21
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.d.ts +88 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.d.ts.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.js +157 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.d.ts.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.js +8 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.d.ts +1 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.d.ts.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.js +29 -3
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.d.ts.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.js +13 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.d.ts +4 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.d.ts.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.d.ts +12 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.d.ts.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.js +6 -3
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.d.ts +79 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.d.ts.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.js +92 -16
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.js +3 -15
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.js +1 -17
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.js +62 -23
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.js +273 -244
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.js +31 -27
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.d.ts +12 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.d.ts.map +1 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.js +47 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.js.map +1 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.js +89 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.js +58 -53
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.js +33 -21
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.d.ts +88 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.d.ts.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js +157 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.d.ts.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.js +8 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.d.ts +1 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.d.ts.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.js +29 -3
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.d.ts.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js +13 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts +4 -0
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts.map +1 -1
- package/node_modules/@modelcontextprotocol/sdk/package.json +16 -6
- package/node_modules/@simple-git/args-pathspec/dist/index.cjs +2 -0
- package/node_modules/@simple-git/args-pathspec/dist/index.cjs.map +1 -0
- package/node_modules/@simple-git/args-pathspec/dist/index.d.ts +1 -0
- package/node_modules/@simple-git/args-pathspec/dist/index.mjs +17 -0
- package/node_modules/@simple-git/args-pathspec/dist/index.mjs.map +1 -0
- package/node_modules/@simple-git/args-pathspec/dist/src/pathspec.d.ts +8 -0
- package/node_modules/@simple-git/args-pathspec/package.json +32 -0
- package/node_modules/@simple-git/argv-parser/dist/index.cjs +2 -0
- package/node_modules/@simple-git/argv-parser/dist/index.cjs.map +1 -0
- package/node_modules/@simple-git/argv-parser/dist/index.d.ts +4 -0
- package/node_modules/@simple-git/argv-parser/dist/index.mjs +361 -0
- package/node_modules/@simple-git/argv-parser/dist/index.mjs.map +1 -0
- package/node_modules/@simple-git/argv-parser/dist/src/config/analyse-config.d.ts +3 -0
- package/node_modules/@simple-git/argv-parser/dist/src/config/config-operands.d.ts +4 -0
- package/node_modules/@simple-git/argv-parser/dist/src/config/config.types.d.ts +6 -0
- package/node_modules/@simple-git/argv-parser/dist/src/config/detect-config-action.d.ts +13 -0
- package/node_modules/@simple-git/argv-parser/dist/src/flags/flags.helpers.d.ts +9 -0
- package/node_modules/@simple-git/argv-parser/dist/src/flags/parse-global-flags.d.ts +6 -0
- package/node_modules/@simple-git/argv-parser/dist/src/flags/parse-task-flags.d.ts +8 -0
- package/node_modules/@simple-git/argv-parser/dist/src/parse-argv.d.ts +6 -0
- package/node_modules/@simple-git/argv-parser/dist/src/parse-argv.types.d.ts +59 -0
- package/node_modules/@simple-git/argv-parser/dist/src/tokens/flag-specs.d.ts +9 -0
- package/node_modules/@simple-git/argv-parser/dist/src/tokens/token-expander.d.ts +7 -0
- package/node_modules/@simple-git/argv-parser/dist/src/vulnerabilities/detect-config-writes.d.ts +3 -0
- package/node_modules/@simple-git/argv-parser/dist/src/vulnerabilities/detect-upload-pack.d.ts +3 -0
- package/node_modules/@simple-git/argv-parser/dist/src/vulnerabilities/vulnerability-analysis.d.ts +4 -0
- package/node_modules/@simple-git/argv-parser/dist/src/vulnerabilities/vulnerability.types.d.ts +9 -0
- package/node_modules/@simple-git/argv-parser/package.json +36 -0
- package/node_modules/commander/Readme.md +82 -65
- package/node_modules/commander/package-support.json +4 -1
- package/node_modules/commander/package.json +1 -1
- package/node_modules/ejs/README.md +2 -8
- package/node_modules/ejs/bin/cli.js +18 -11
- package/node_modules/ejs/ejs.js +16 -23
- package/node_modules/ejs/ejs.min.js +1 -1
- package/node_modules/ejs/jakefile.js +1 -1
- package/node_modules/ejs/lib/cjs/ejs.js +16 -21
- package/node_modules/ejs/lib/cjs/parseargs.js +125 -0
- package/node_modules/ejs/lib/cjs/utils.js +0 -2
- package/node_modules/ejs/lib/esm/ejs.js +18 -23
- package/node_modules/{jake/lib → ejs/lib/esm}/parseargs.js +8 -3
- package/node_modules/ejs/lib/esm/utils.js +0 -2
- package/node_modules/ejs/package.json +2 -4
- package/node_modules/express-rate-limit/dist/index.cjs +334 -198
- package/node_modules/express-rate-limit/dist/index.d.cts +74 -20
- package/node_modules/express-rate-limit/dist/index.d.mts +74 -20
- package/node_modules/express-rate-limit/dist/index.d.ts +74 -20
- package/node_modules/express-rate-limit/dist/index.mjs +330 -195
- package/node_modules/express-rate-limit/package.json +32 -53
- package/node_modules/express-rate-limit/readme.md +5 -1
- package/node_modules/{brace-expansion → hono}/LICENSE +1 -1
- package/node_modules/hono/README.md +85 -0
- package/node_modules/hono/dist/adapter/aws-lambda/handler.js +366 -0
- package/node_modules/hono/dist/adapter/aws-lambda/index.js +7 -0
- package/node_modules/hono/dist/adapter/aws-lambda/types.js +0 -0
- package/node_modules/hono/dist/adapter/bun/conninfo.js +27 -0
- package/node_modules/hono/dist/adapter/bun/index.js +14 -0
- package/node_modules/hono/dist/adapter/bun/serve-static.js +30 -0
- package/node_modules/hono/dist/adapter/bun/server.js +5 -0
- package/node_modules/hono/dist/adapter/bun/ssg.js +17 -0
- package/node_modules/hono/dist/adapter/bun/websocket.js +71 -0
- package/node_modules/hono/dist/adapter/cloudflare-pages/handler.js +67 -0
- package/node_modules/hono/dist/adapter/cloudflare-pages/index.js +7 -0
- package/node_modules/hono/dist/adapter/cloudflare-workers/conninfo.js +9 -0
- package/node_modules/hono/dist/adapter/cloudflare-workers/index.js +9 -0
- package/node_modules/hono/dist/adapter/cloudflare-workers/serve-static-module.js +8 -0
- package/node_modules/hono/dist/adapter/cloudflare-workers/serve-static.js +22 -0
- package/node_modules/hono/dist/adapter/cloudflare-workers/utils.js +35 -0
- package/node_modules/hono/dist/adapter/cloudflare-workers/websocket.js +41 -0
- package/node_modules/hono/dist/adapter/deno/conninfo.js +14 -0
- package/node_modules/hono/dist/adapter/deno/deno.d.js +0 -0
- package/node_modules/hono/dist/adapter/deno/index.js +12 -0
- package/node_modules/hono/dist/adapter/deno/serve-static.js +40 -0
- package/node_modules/hono/dist/adapter/deno/ssg.js +18 -0
- package/node_modules/hono/dist/adapter/deno/websocket.js +28 -0
- package/node_modules/hono/dist/adapter/lambda-edge/conninfo.js +9 -0
- package/node_modules/hono/dist/adapter/lambda-edge/handler.js +79 -0
- package/node_modules/hono/dist/adapter/lambda-edge/index.js +7 -0
- package/node_modules/hono/dist/adapter/netlify/handler.js +9 -0
- package/node_modules/hono/dist/adapter/netlify/index.js +2 -0
- package/node_modules/hono/dist/adapter/netlify/mod.js +5 -0
- package/node_modules/hono/dist/adapter/service-worker/handler.js +20 -0
- package/node_modules/hono/dist/adapter/service-worker/index.js +11 -0
- package/node_modules/hono/dist/adapter/service-worker/types.js +0 -0
- package/node_modules/hono/dist/adapter/vercel/conninfo.js +10 -0
- package/node_modules/hono/dist/adapter/vercel/handler.js +7 -0
- package/node_modules/hono/dist/adapter/vercel/index.js +7 -0
- package/node_modules/hono/dist/cjs/adapter/aws-lambda/handler.js +398 -0
- package/node_modules/hono/dist/cjs/adapter/aws-lambda/index.js +32 -0
- package/node_modules/hono/dist/cjs/adapter/aws-lambda/types.js +16 -0
- package/node_modules/hono/dist/cjs/adapter/bun/conninfo.js +50 -0
- package/node_modules/hono/dist/cjs/adapter/bun/index.js +43 -0
- package/node_modules/hono/dist/cjs/adapter/bun/serve-static.js +53 -0
- package/node_modules/hono/dist/cjs/adapter/bun/server.js +28 -0
- package/node_modules/hono/dist/cjs/adapter/bun/ssg.js +41 -0
- package/node_modules/hono/dist/cjs/adapter/bun/websocket.js +97 -0
- package/node_modules/hono/dist/cjs/adapter/cloudflare-pages/handler.js +92 -0
- package/node_modules/hono/dist/cjs/adapter/cloudflare-pages/index.js +32 -0
- package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/conninfo.js +32 -0
- package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/index.js +34 -0
- package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static-module.js +31 -0
- package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static.js +45 -0
- package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/utils.js +58 -0
- package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/websocket.js +64 -0
- package/node_modules/hono/dist/cjs/adapter/deno/conninfo.js +37 -0
- package/node_modules/hono/dist/cjs/adapter/deno/deno.d.js +1 -0
- package/node_modules/hono/dist/cjs/adapter/deno/index.js +39 -0
- package/node_modules/hono/dist/cjs/adapter/deno/serve-static.js +63 -0
- package/node_modules/hono/dist/cjs/adapter/deno/ssg.js +42 -0
- package/node_modules/hono/dist/cjs/adapter/deno/websocket.js +51 -0
- package/node_modules/hono/dist/cjs/adapter/lambda-edge/conninfo.js +32 -0
- package/node_modules/hono/dist/cjs/adapter/lambda-edge/handler.js +114 -0
- package/node_modules/hono/dist/cjs/adapter/lambda-edge/index.js +31 -0
- package/node_modules/hono/dist/cjs/adapter/netlify/handler.js +32 -0
- package/node_modules/hono/dist/cjs/adapter/netlify/index.js +22 -0
- package/node_modules/hono/dist/cjs/adapter/netlify/mod.js +28 -0
- package/node_modules/hono/dist/cjs/adapter/service-worker/handler.js +43 -0
- package/node_modules/hono/dist/cjs/adapter/service-worker/index.js +35 -0
- package/node_modules/hono/dist/cjs/adapter/service-worker/types.js +16 -0
- package/node_modules/hono/dist/cjs/adapter/vercel/conninfo.js +33 -0
- package/node_modules/hono/dist/cjs/adapter/vercel/handler.js +30 -0
- package/node_modules/hono/dist/cjs/adapter/vercel/index.js +31 -0
- package/node_modules/hono/dist/cjs/client/client.js +190 -0
- package/node_modules/hono/dist/cjs/client/fetch-result-please.js +86 -0
- package/node_modules/hono/dist/cjs/client/index.js +33 -0
- package/node_modules/hono/dist/cjs/client/types.js +16 -0
- package/node_modules/hono/dist/cjs/client/utils.js +106 -0
- package/node_modules/hono/dist/cjs/compose.js +69 -0
- package/node_modules/hono/dist/cjs/context.js +435 -0
- package/node_modules/hono/dist/cjs/helper/accepts/accepts.js +44 -0
- package/node_modules/hono/dist/cjs/helper/accepts/index.js +28 -0
- package/node_modules/hono/dist/cjs/helper/adapter/index.js +82 -0
- package/node_modules/hono/dist/cjs/helper/conninfo/index.js +16 -0
- package/node_modules/hono/dist/cjs/helper/conninfo/types.js +16 -0
- package/node_modules/hono/dist/cjs/helper/cookie/index.js +131 -0
- package/node_modules/hono/dist/cjs/helper/css/common.js +223 -0
- package/node_modules/hono/dist/cjs/helper/css/index.js +143 -0
- package/node_modules/hono/dist/cjs/helper/dev/index.js +80 -0
- package/node_modules/hono/dist/cjs/helper/factory/index.js +55 -0
- package/node_modules/hono/dist/cjs/helper/html/index.js +65 -0
- package/node_modules/hono/dist/cjs/helper/proxy/index.js +112 -0
- package/node_modules/hono/dist/cjs/helper/route/index.js +72 -0
- package/node_modules/hono/dist/cjs/helper/ssg/index.js +39 -0
- package/node_modules/hono/dist/cjs/helper/ssg/middleware.js +74 -0
- package/node_modules/hono/dist/cjs/helper/ssg/ssg.js +326 -0
- package/node_modules/hono/dist/cjs/helper/ssg/utils.js +85 -0
- package/node_modules/hono/dist/cjs/helper/streaming/index.js +36 -0
- package/node_modules/hono/dist/cjs/helper/streaming/sse.js +86 -0
- package/node_modules/hono/dist/cjs/helper/streaming/stream.js +57 -0
- package/node_modules/hono/dist/cjs/helper/streaming/text.js +35 -0
- package/node_modules/hono/dist/cjs/helper/streaming/utils.js +36 -0
- package/node_modules/hono/dist/cjs/helper/testing/index.js +34 -0
- package/node_modules/hono/dist/cjs/helper/websocket/index.js +82 -0
- package/node_modules/hono/dist/cjs/hono-base.js +401 -0
- package/node_modules/hono/dist/cjs/hono.js +44 -0
- package/node_modules/hono/dist/cjs/http-exception.js +58 -0
- package/node_modules/hono/dist/cjs/index.js +28 -0
- package/node_modules/hono/dist/cjs/jsx/base.js +375 -0
- package/node_modules/hono/dist/cjs/jsx/children.js +45 -0
- package/node_modules/hono/dist/cjs/jsx/components.js +176 -0
- package/node_modules/hono/dist/cjs/jsx/constants.js +43 -0
- package/node_modules/hono/dist/cjs/jsx/context.js +61 -0
- package/node_modules/hono/dist/cjs/jsx/dom/client.js +77 -0
- package/node_modules/hono/dist/cjs/jsx/dom/components.js +56 -0
- package/node_modules/hono/dist/cjs/jsx/dom/context.js +72 -0
- package/node_modules/hono/dist/cjs/jsx/dom/css.js +162 -0
- package/node_modules/hono/dist/cjs/jsx/dom/hooks/index.js +75 -0
- package/node_modules/hono/dist/cjs/jsx/dom/index.js +182 -0
- package/node_modules/hono/dist/cjs/jsx/dom/intrinsic-element/components.js +369 -0
- package/node_modules/hono/dist/cjs/jsx/dom/jsx-dev-runtime.js +53 -0
- package/node_modules/hono/dist/cjs/jsx/dom/jsx-runtime.js +33 -0
- package/node_modules/hono/dist/cjs/jsx/dom/render.js +622 -0
- package/node_modules/hono/dist/cjs/jsx/dom/server.js +68 -0
- package/node_modules/hono/dist/cjs/jsx/dom/utils.js +33 -0
- package/node_modules/hono/dist/cjs/jsx/hooks/index.js +371 -0
- package/node_modules/hono/dist/cjs/jsx/index.js +139 -0
- package/node_modules/hono/dist/cjs/jsx/intrinsic-element/common.js +40 -0
- package/node_modules/hono/dist/cjs/jsx/intrinsic-element/components.js +183 -0
- package/node_modules/hono/dist/cjs/jsx/intrinsic-elements.js +16 -0
- package/node_modules/hono/dist/cjs/jsx/jsx-dev-runtime.js +42 -0
- package/node_modules/hono/dist/cjs/jsx/jsx-runtime.js +69 -0
- package/node_modules/hono/dist/cjs/jsx/streaming.js +168 -0
- package/node_modules/hono/dist/cjs/jsx/types.js +16 -0
- package/node_modules/hono/dist/cjs/jsx/utils.js +51 -0
- package/node_modules/hono/dist/cjs/middleware/basic-auth/index.js +83 -0
- package/node_modules/hono/dist/cjs/middleware/bearer-auth/index.js +106 -0
- package/node_modules/hono/dist/cjs/middleware/body-limit/index.js +85 -0
- package/node_modules/hono/dist/cjs/middleware/cache/index.js +102 -0
- package/node_modules/hono/dist/cjs/middleware/combine/index.js +102 -0
- package/node_modules/hono/dist/cjs/middleware/compress/index.js +62 -0
- package/node_modules/hono/dist/cjs/middleware/context-storage/index.js +48 -0
- package/node_modules/hono/dist/cjs/middleware/cors/index.js +110 -0
- package/node_modules/hono/dist/cjs/middleware/csrf/index.js +78 -0
- package/node_modules/hono/dist/cjs/middleware/etag/digest.js +56 -0
- package/node_modules/hono/dist/cjs/middleware/etag/index.js +96 -0
- package/node_modules/hono/dist/cjs/middleware/ip-restriction/index.js +125 -0
- package/node_modules/hono/dist/cjs/middleware/jsx-renderer/index.js +82 -0
- package/node_modules/hono/dist/cjs/middleware/jwk/index.js +28 -0
- package/node_modules/hono/dist/cjs/middleware/jwk/jwk.js +135 -0
- package/node_modules/hono/dist/cjs/middleware/jwt/index.js +39 -0
- package/node_modules/hono/dist/cjs/middleware/jwt/jwt.js +141 -0
- package/node_modules/hono/dist/cjs/middleware/language/index.js +36 -0
- package/node_modules/hono/dist/cjs/middleware/language/language.js +211 -0
- package/node_modules/hono/dist/cjs/middleware/logger/index.js +73 -0
- package/node_modules/hono/dist/cjs/middleware/method-override/index.js +105 -0
- package/node_modules/hono/dist/cjs/middleware/powered-by/index.js +33 -0
- package/node_modules/hono/dist/cjs/middleware/pretty-json/index.js +38 -0
- package/node_modules/hono/dist/cjs/middleware/request-id/index.js +28 -0
- package/node_modules/hono/dist/cjs/middleware/request-id/request-id.js +44 -0
- package/node_modules/hono/dist/cjs/middleware/secure-headers/index.js +30 -0
- package/node_modules/hono/dist/cjs/middleware/secure-headers/permissions-policy.js +16 -0
- package/node_modules/hono/dist/cjs/middleware/secure-headers/secure-headers.js +190 -0
- package/node_modules/hono/dist/cjs/middleware/serve-static/index.js +99 -0
- package/node_modules/hono/dist/cjs/middleware/serve-static/path.js +41 -0
- package/node_modules/hono/dist/cjs/middleware/timeout/index.js +48 -0
- package/node_modules/hono/dist/cjs/middleware/timing/index.js +36 -0
- package/node_modules/hono/dist/cjs/middleware/timing/timing.js +129 -0
- package/node_modules/hono/dist/cjs/middleware/trailing-slash/index.js +49 -0
- package/node_modules/hono/dist/cjs/package.json +3 -0
- package/node_modules/hono/dist/cjs/preset/quick.js +39 -0
- package/node_modules/hono/dist/cjs/preset/tiny.js +35 -0
- package/node_modules/hono/dist/cjs/request/constants.js +28 -0
- package/node_modules/hono/dist/cjs/request.js +325 -0
- package/node_modules/hono/dist/cjs/router/linear-router/index.js +28 -0
- package/node_modules/hono/dist/cjs/router/linear-router/router.js +141 -0
- package/node_modules/hono/dist/cjs/router/pattern-router/index.js +28 -0
- package/node_modules/hono/dist/cjs/router/pattern-router/router.js +71 -0
- package/node_modules/hono/dist/cjs/router/reg-exp-router/index.js +35 -0
- package/node_modules/hono/dist/cjs/router/reg-exp-router/matcher.js +49 -0
- package/node_modules/hono/dist/cjs/router/reg-exp-router/node.js +135 -0
- package/node_modules/hono/dist/cjs/router/reg-exp-router/prepared-router.js +167 -0
- package/node_modules/hono/dist/cjs/router/reg-exp-router/router.js +209 -0
- package/node_modules/hono/dist/cjs/router/reg-exp-router/trie.js +82 -0
- package/node_modules/hono/dist/cjs/router/smart-router/index.js +28 -0
- package/node_modules/hono/dist/cjs/router/smart-router/router.js +81 -0
- package/node_modules/hono/dist/cjs/router/trie-router/index.js +28 -0
- package/node_modules/hono/dist/cjs/router/trie-router/node.js +185 -0
- package/node_modules/hono/dist/cjs/router/trie-router/router.js +49 -0
- package/node_modules/hono/dist/cjs/router.js +41 -0
- package/node_modules/hono/dist/cjs/types.js +29 -0
- package/node_modules/hono/dist/cjs/utils/accept.js +86 -0
- package/node_modules/hono/dist/cjs/utils/basic-auth.js +46 -0
- package/node_modules/hono/dist/cjs/utils/body.js +95 -0
- package/node_modules/hono/dist/cjs/utils/buffer.js +76 -0
- package/node_modules/hono/dist/cjs/utils/color.js +49 -0
- package/node_modules/hono/dist/cjs/utils/compress.js +28 -0
- package/node_modules/hono/dist/cjs/utils/concurrent.js +62 -0
- package/node_modules/hono/dist/cjs/utils/constants.js +28 -0
- package/node_modules/hono/dist/cjs/utils/cookie.js +173 -0
- package/node_modules/hono/dist/cjs/utils/crypto.js +70 -0
- package/node_modules/hono/dist/cjs/utils/encode.js +55 -0
- package/node_modules/hono/dist/cjs/utils/filepath.js +59 -0
- package/node_modules/hono/dist/cjs/utils/handler.js +37 -0
- package/node_modules/hono/dist/cjs/utils/headers.js +16 -0
- package/node_modules/hono/dist/cjs/utils/html.js +151 -0
- package/node_modules/hono/dist/cjs/utils/http-status.js +16 -0
- package/node_modules/hono/dist/cjs/utils/ipaddr.js +129 -0
- package/node_modules/hono/dist/cjs/utils/jwt/index.js +29 -0
- package/node_modules/hono/dist/cjs/utils/jwt/jwa.js +43 -0
- package/node_modules/hono/dist/cjs/utils/jwt/jws.js +216 -0
- package/node_modules/hono/dist/cjs/utils/jwt/jwt.js +210 -0
- package/node_modules/hono/dist/cjs/utils/jwt/types.js +162 -0
- package/node_modules/hono/dist/cjs/utils/jwt/utf8.js +31 -0
- package/node_modules/hono/dist/cjs/utils/mime.js +109 -0
- package/node_modules/hono/dist/cjs/utils/stream.js +102 -0
- package/node_modules/hono/dist/cjs/utils/types.js +16 -0
- package/node_modules/hono/dist/cjs/utils/url.js +253 -0
- package/node_modules/hono/dist/cjs/validator/index.js +28 -0
- package/node_modules/hono/dist/cjs/validator/utils.js +16 -0
- package/node_modules/hono/dist/cjs/validator/validator.js +109 -0
- package/node_modules/hono/dist/client/client.js +174 -0
- package/node_modules/hono/dist/client/fetch-result-please.js +62 -0
- package/node_modules/hono/dist/client/index.js +8 -0
- package/node_modules/hono/dist/client/types.js +0 -0
- package/node_modules/hono/dist/client/utils.js +76 -0
- package/node_modules/hono/dist/compose.js +46 -0
- package/node_modules/hono/dist/context.js +411 -0
- package/node_modules/hono/dist/helper/accepts/accepts.js +20 -0
- package/node_modules/hono/dist/helper/accepts/index.js +5 -0
- package/node_modules/hono/dist/helper/adapter/index.js +56 -0
- package/node_modules/hono/dist/helper/conninfo/index.js +0 -0
- package/node_modules/hono/dist/helper/conninfo/types.js +0 -0
- package/node_modules/hono/dist/helper/cookie/index.js +102 -0
- package/node_modules/hono/dist/helper/css/common.js +185 -0
- package/node_modules/hono/dist/helper/css/index.js +125 -0
- package/node_modules/hono/dist/helper/dev/index.js +55 -0
- package/node_modules/hono/dist/helper/factory/index.js +30 -0
- package/node_modules/hono/dist/helper/html/index.js +41 -0
- package/node_modules/hono/dist/helper/proxy/index.js +89 -0
- package/node_modules/hono/dist/helper/route/index.js +46 -0
- package/node_modules/hono/dist/helper/ssg/index.js +16 -0
- package/node_modules/hono/dist/helper/ssg/middleware.js +45 -0
- package/node_modules/hono/dist/helper/ssg/ssg.js +295 -0
- package/node_modules/hono/dist/helper/ssg/utils.js +59 -0
- package/node_modules/hono/dist/helper/streaming/index.js +10 -0
- package/node_modules/hono/dist/helper/streaming/sse.js +62 -0
- package/node_modules/hono/dist/helper/streaming/stream.js +34 -0
- package/node_modules/hono/dist/helper/streaming/text.js +12 -0
- package/node_modules/hono/dist/helper/streaming/utils.js +13 -0
- package/node_modules/hono/dist/helper/testing/index.js +11 -0
- package/node_modules/hono/dist/helper/websocket/index.js +57 -0
- package/node_modules/hono/dist/hono-base.js +378 -0
- package/node_modules/hono/dist/hono.js +21 -0
- package/node_modules/hono/dist/http-exception.js +35 -0
- package/node_modules/hono/dist/index.js +5 -0
- package/node_modules/hono/dist/jsx/base.js +331 -0
- package/node_modules/hono/dist/jsx/children.js +21 -0
- package/node_modules/hono/dist/jsx/components.js +152 -0
- package/node_modules/hono/dist/jsx/constants.js +15 -0
- package/node_modules/hono/dist/jsx/context.js +36 -0
- package/node_modules/hono/dist/jsx/dom/client.js +53 -0
- package/node_modules/hono/dist/jsx/dom/components.js +32 -0
- package/node_modules/hono/dist/jsx/dom/context.js +48 -0
- package/node_modules/hono/dist/jsx/dom/css.js +143 -0
- package/node_modules/hono/dist/jsx/dom/hooks/index.js +48 -0
- package/node_modules/hono/dist/jsx/dom/index.js +142 -0
- package/node_modules/hono/dist/jsx/dom/intrinsic-element/components.js +337 -0
- package/node_modules/hono/dist/jsx/dom/jsx-dev-runtime.js +19 -0
- package/node_modules/hono/dist/jsx/dom/jsx-runtime.js +8 -0
- package/node_modules/hono/dist/jsx/dom/render.js +597 -0
- package/node_modules/hono/dist/jsx/dom/server.js +33 -0
- package/node_modules/hono/dist/jsx/dom/utils.js +10 -0
- package/node_modules/hono/dist/jsx/hooks/index.js +328 -0
- package/node_modules/hono/dist/jsx/index.js +103 -0
- package/node_modules/hono/dist/jsx/intrinsic-element/common.js +15 -0
- package/node_modules/hono/dist/jsx/intrinsic-element/components.js +153 -0
- package/node_modules/hono/dist/jsx/intrinsic-elements.js +0 -0
- package/node_modules/hono/dist/jsx/jsx-dev-runtime.js +18 -0
- package/node_modules/hono/dist/jsx/jsx-runtime.js +41 -0
- package/node_modules/hono/dist/jsx/streaming.js +143 -0
- package/node_modules/hono/dist/jsx/types.js +0 -0
- package/node_modules/hono/dist/jsx/utils.js +27 -0
- package/node_modules/hono/dist/middleware/basic-auth/index.js +60 -0
- package/node_modules/hono/dist/middleware/bearer-auth/index.js +83 -0
- package/node_modules/hono/dist/middleware/body-limit/index.js +62 -0
- package/node_modules/hono/dist/middleware/cache/index.js +79 -0
- package/node_modules/hono/dist/middleware/combine/index.js +77 -0
- package/node_modules/hono/dist/middleware/compress/index.js +39 -0
- package/node_modules/hono/dist/middleware/context-storage/index.js +23 -0
- package/node_modules/hono/dist/middleware/cors/index.js +87 -0
- package/node_modules/hono/dist/middleware/csrf/index.js +55 -0
- package/node_modules/hono/dist/middleware/etag/digest.js +33 -0
- package/node_modules/hono/dist/middleware/etag/index.js +72 -0
- package/node_modules/hono/dist/middleware/ip-restriction/index.js +107 -0
- package/node_modules/hono/dist/middleware/jsx-renderer/index.js +57 -0
- package/node_modules/hono/dist/middleware/jwk/index.js +5 -0
- package/node_modules/hono/dist/middleware/jwk/jwk.js +112 -0
- package/node_modules/hono/dist/middleware/jwt/index.js +11 -0
- package/node_modules/hono/dist/middleware/jwt/jwt.js +114 -0
- package/node_modules/hono/dist/middleware/language/index.js +15 -0
- package/node_modules/hono/dist/middleware/language/language.js +179 -0
- package/node_modules/hono/dist/middleware/logger/index.js +44 -0
- package/node_modules/hono/dist/middleware/method-override/index.js +82 -0
- package/node_modules/hono/dist/middleware/powered-by/index.js +10 -0
- package/node_modules/hono/dist/middleware/pretty-json/index.js +15 -0
- package/node_modules/hono/dist/middleware/request-id/index.js +5 -0
- package/node_modules/hono/dist/middleware/request-id/request-id.js +21 -0
- package/node_modules/hono/dist/middleware/secure-headers/index.js +6 -0
- package/node_modules/hono/dist/middleware/secure-headers/permissions-policy.js +0 -0
- package/node_modules/hono/dist/middleware/secure-headers/secure-headers.js +166 -0
- package/node_modules/hono/dist/middleware/serve-static/index.js +76 -0
- package/node_modules/hono/dist/middleware/serve-static/path.js +18 -0
- package/node_modules/hono/dist/middleware/timeout/index.js +25 -0
- package/node_modules/hono/dist/middleware/timing/index.js +9 -0
- package/node_modules/hono/dist/middleware/timing/timing.js +102 -0
- package/node_modules/hono/dist/middleware/trailing-slash/index.js +25 -0
- package/node_modules/hono/dist/preset/quick.js +16 -0
- package/node_modules/hono/dist/preset/tiny.js +12 -0
- package/node_modules/hono/dist/request/constants.js +5 -0
- package/node_modules/hono/dist/request.js +301 -0
- package/node_modules/hono/dist/router/linear-router/index.js +5 -0
- package/node_modules/hono/dist/router/linear-router/router.js +118 -0
- package/node_modules/hono/dist/router/pattern-router/index.js +5 -0
- package/node_modules/hono/dist/router/pattern-router/router.js +48 -0
- package/node_modules/hono/dist/router/reg-exp-router/index.js +9 -0
- package/node_modules/hono/dist/router/reg-exp-router/matcher.js +25 -0
- package/node_modules/hono/dist/router/reg-exp-router/node.js +111 -0
- package/node_modules/hono/dist/router/reg-exp-router/prepared-router.js +142 -0
- package/node_modules/hono/dist/router/reg-exp-router/router.js +190 -0
- package/node_modules/hono/dist/router/reg-exp-router/trie.js +59 -0
- package/node_modules/hono/dist/router/smart-router/index.js +5 -0
- package/node_modules/hono/dist/router/smart-router/router.js +58 -0
- package/node_modules/hono/dist/router/trie-router/index.js +5 -0
- package/node_modules/hono/dist/router/trie-router/node.js +162 -0
- package/node_modules/hono/dist/router/trie-router/router.js +26 -0
- package/node_modules/hono/dist/router.js +14 -0
- package/node_modules/hono/dist/types/adapter/aws-lambda/handler.d.ts +184 -0
- package/node_modules/hono/dist/types/adapter/aws-lambda/index.d.ts +7 -0
- package/node_modules/hono/dist/types/adapter/aws-lambda/types.d.ts +144 -0
- package/node_modules/hono/dist/types/adapter/bun/conninfo.d.ts +7 -0
- package/node_modules/hono/dist/types/adapter/bun/index.d.ts +9 -0
- package/node_modules/hono/dist/types/adapter/bun/serve-static.d.ts +3 -0
- package/node_modules/hono/dist/types/adapter/bun/server.d.ts +24 -0
- package/node_modules/hono/dist/types/adapter/bun/ssg.d.ts +13 -0
- package/node_modules/hono/dist/types/adapter/bun/websocket.d.ts +39 -0
- package/node_modules/hono/dist/types/adapter/cloudflare-pages/handler.d.ts +33 -0
- package/node_modules/hono/dist/types/adapter/cloudflare-pages/index.d.ts +6 -0
- package/node_modules/hono/dist/types/adapter/cloudflare-workers/conninfo.d.ts +2 -0
- package/node_modules/hono/dist/types/adapter/cloudflare-workers/index.d.ts +7 -0
- package/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static-module.d.ts +4 -0
- package/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static.d.ts +16 -0
- package/node_modules/hono/dist/types/adapter/cloudflare-workers/utils.d.ts +5 -0
- package/node_modules/hono/dist/types/adapter/cloudflare-workers/websocket.d.ts +2 -0
- package/node_modules/hono/dist/types/adapter/deno/conninfo.d.ts +7 -0
- package/node_modules/hono/dist/types/adapter/deno/index.d.ts +8 -0
- package/node_modules/hono/dist/types/adapter/deno/serve-static.d.ts +3 -0
- package/node_modules/hono/dist/types/adapter/deno/ssg.d.ts +13 -0
- package/node_modules/hono/dist/types/adapter/deno/websocket.d.ts +2 -0
- package/node_modules/hono/dist/types/adapter/lambda-edge/conninfo.d.ts +2 -0
- package/node_modules/hono/dist/types/adapter/lambda-edge/handler.d.ts +87 -0
- package/node_modules/hono/dist/types/adapter/lambda-edge/index.d.ts +7 -0
- package/node_modules/hono/dist/types/adapter/netlify/handler.d.ts +2 -0
- package/node_modules/hono/dist/types/adapter/netlify/index.d.ts +5 -0
- package/node_modules/hono/dist/types/adapter/netlify/mod.d.ts +1 -0
- package/node_modules/hono/dist/types/adapter/service-worker/handler.d.ts +16 -0
- package/node_modules/hono/dist/types/adapter/service-worker/index.d.ts +28 -0
- package/node_modules/hono/dist/types/adapter/service-worker/types.d.ts +12 -0
- package/node_modules/hono/dist/types/adapter/vercel/conninfo.d.ts +2 -0
- package/node_modules/hono/dist/types/adapter/vercel/handler.d.ts +2 -0
- package/node_modules/hono/dist/types/adapter/vercel/index.d.ts +6 -0
- package/node_modules/hono/dist/types/client/client.d.ts +4 -0
- package/node_modules/hono/dist/types/client/fetch-result-please.d.ts +35 -0
- package/node_modules/hono/dist/types/client/index.d.ts +7 -0
- package/node_modules/hono/dist/types/client/types.d.ts +168 -0
- package/node_modules/hono/dist/types/client/utils.d.ts +18 -0
- package/node_modules/hono/dist/types/compose.d.ts +14 -0
- package/node_modules/hono/dist/types/context.d.ts +451 -0
- package/node_modules/hono/dist/types/helper/accepts/accepts.d.ts +30 -0
- package/node_modules/hono/dist/types/helper/accepts/index.d.ts +5 -0
- package/node_modules/hono/dist/types/helper/adapter/index.d.ts +12 -0
- package/node_modules/hono/dist/types/helper/conninfo/index.d.ts +5 -0
- package/node_modules/hono/dist/types/helper/conninfo/types.d.ts +36 -0
- package/node_modules/hono/dist/types/helper/cookie/index.d.ts +24 -0
- package/node_modules/hono/dist/types/helper/css/common.d.ts +42 -0
- package/node_modules/hono/dist/types/helper/css/index.d.ts +73 -0
- package/node_modules/hono/dist/types/helper/dev/index.d.ts +20 -0
- package/node_modules/hono/dist/types/helper/factory/index.d.ts +82 -0
- package/node_modules/hono/dist/types/helper/html/index.d.ts +8 -0
- package/node_modules/hono/dist/types/helper/proxy/index.d.ts +72 -0
- package/node_modules/hono/dist/types/helper/route/index.d.ts +75 -0
- package/node_modules/hono/dist/types/helper/ssg/index.d.ts +6 -0
- package/node_modules/hono/dist/types/helper/ssg/middleware.d.ts +44 -0
- package/node_modules/hono/dist/types/helper/ssg/ssg.d.ts +99 -0
- package/node_modules/hono/dist/types/helper/ssg/utils.d.ts +15 -0
- package/node_modules/hono/dist/types/helper/streaming/index.d.ts +8 -0
- package/node_modules/hono/dist/types/helper/streaming/sse.d.ts +13 -0
- package/node_modules/hono/dist/types/helper/streaming/stream.d.ts +3 -0
- package/node_modules/hono/dist/types/helper/streaming/text.d.ts +3 -0
- package/node_modules/hono/dist/types/helper/streaming/utils.d.ts +1 -0
- package/node_modules/hono/dist/types/helper/testing/index.d.ts +12 -0
- package/node_modules/hono/dist/types/helper/websocket/index.d.ts +69 -0
- package/node_modules/hono/dist/types/hono-base.d.ts +220 -0
- package/node_modules/hono/dist/types/hono.d.ts +19 -0
- package/node_modules/hono/dist/types/http-exception.d.ts +59 -0
- package/node_modules/hono/dist/types/index.d.ts +36 -0
- package/node_modules/hono/dist/types/jsx/base.d.ts +58 -0
- package/node_modules/hono/dist/types/jsx/children.d.ts +9 -0
- package/node_modules/hono/dist/types/jsx/components.d.ts +15 -0
- package/node_modules/hono/dist/types/jsx/constants.d.ts +6 -0
- package/node_modules/hono/dist/types/jsx/context.d.ts +12 -0
- package/node_modules/hono/dist/types/jsx/dom/client.d.ts +31 -0
- package/node_modules/hono/dist/types/jsx/dom/components.d.ts +10 -0
- package/node_modules/hono/dist/types/jsx/dom/context.d.ts +3 -0
- package/node_modules/hono/dist/types/jsx/dom/css.d.ts +77 -0
- package/node_modules/hono/dist/types/jsx/dom/hooks/index.d.ts +39 -0
- package/node_modules/hono/dist/types/jsx/dom/index.d.ts +88 -0
- package/node_modules/hono/dist/types/jsx/dom/intrinsic-element/components.d.ts +16 -0
- package/node_modules/hono/dist/types/jsx/dom/jsx-dev-runtime.d.ts +8 -0
- package/node_modules/hono/dist/types/jsx/dom/jsx-runtime.d.ts +7 -0
- package/node_modules/hono/dist/types/jsx/dom/render.d.ts +73 -0
- package/node_modules/hono/dist/types/jsx/dom/server.d.ts +106 -0
- package/node_modules/hono/dist/types/jsx/dom/utils.d.ts +1 -0
- package/node_modules/hono/dist/types/jsx/hooks/index.d.ts +45 -0
- package/node_modules/hono/dist/types/jsx/index.d.ts +75 -0
- package/node_modules/hono/dist/types/jsx/intrinsic-element/common.d.ts +3 -0
- package/node_modules/hono/dist/types/jsx/intrinsic-element/components.d.ts +13 -0
- package/node_modules/hono/dist/types/jsx/intrinsic-elements.d.ts +722 -0
- package/node_modules/hono/dist/types/jsx/jsx-dev-runtime.d.ts +8 -0
- package/node_modules/hono/dist/types/jsx/jsx-runtime.d.ts +12 -0
- package/node_modules/hono/dist/types/jsx/streaming.d.ts +36 -0
- package/node_modules/hono/dist/types/jsx/types.d.ts +35 -0
- package/node_modules/hono/dist/types/jsx/utils.d.ts +2 -0
- package/node_modules/hono/dist/types/middleware/basic-auth/index.d.ts +56 -0
- package/node_modules/hono/dist/types/middleware/bearer-auth/index.d.ts +91 -0
- package/node_modules/hono/dist/types/middleware/body-limit/index.d.ts +45 -0
- package/node_modules/hono/dist/types/middleware/cache/index.d.ts +41 -0
- package/node_modules/hono/dist/types/middleware/combine/index.d.ts +85 -0
- package/node_modules/hono/dist/types/middleware/compress/index.d.ts +29 -0
- package/node_modules/hono/dist/types/middleware/context-storage/index.d.ts +40 -0
- package/node_modules/hono/dist/types/middleware/cors/index.d.ts +55 -0
- package/node_modules/hono/dist/types/middleware/csrf/index.d.ts +78 -0
- package/node_modules/hono/dist/types/middleware/etag/digest.d.ts +1 -0
- package/node_modules/hono/dist/types/middleware/etag/index.d.ts +42 -0
- package/node_modules/hono/dist/types/middleware/ip-restriction/index.d.ts +31 -0
- package/node_modules/hono/dist/types/middleware/jsx-renderer/index.d.ts +77 -0
- package/node_modules/hono/dist/types/middleware/jwk/index.d.ts +1 -0
- package/node_modules/hono/dist/types/middleware/jwk/jwk.d.ts +54 -0
- package/node_modules/hono/dist/types/middleware/jwt/index.d.ts +8 -0
- package/node_modules/hono/dist/types/middleware/jwt/jwt.d.ts +67 -0
- package/node_modules/hono/dist/types/middleware/language/index.d.ts +7 -0
- package/node_modules/hono/dist/types/middleware/language/language.d.ts +102 -0
- package/node_modules/hono/dist/types/middleware/logger/index.d.ts +24 -0
- package/node_modules/hono/dist/types/middleware/method-override/index.d.ts +48 -0
- package/node_modules/hono/dist/types/middleware/powered-by/index.d.ts +29 -0
- package/node_modules/hono/dist/types/middleware/pretty-json/index.d.ts +42 -0
- package/node_modules/hono/dist/types/middleware/request-id/index.d.ts +7 -0
- package/node_modules/hono/dist/types/middleware/request-id/request-id.d.ts +37 -0
- package/node_modules/hono/dist/types/middleware/secure-headers/index.d.ts +8 -0
- package/node_modules/hono/dist/types/middleware/secure-headers/permissions-policy.d.ts +14 -0
- package/node_modules/hono/dist/types/middleware/secure-headers/secure-headers.d.ts +109 -0
- package/node_modules/hono/dist/types/middleware/serve-static/index.d.ts +31 -0
- package/node_modules/hono/dist/types/middleware/serve-static/path.d.ts +5 -0
- package/node_modules/hono/dist/types/middleware/timeout/index.d.ts +31 -0
- package/node_modules/hono/dist/types/middleware/timing/index.d.ts +7 -0
- package/node_modules/hono/dist/types/middleware/timing/timing.d.ts +129 -0
- package/node_modules/hono/dist/types/middleware/trailing-slash/index.d.ts +37 -0
- package/node_modules/hono/dist/types/package.json +3 -0
- package/node_modules/hono/dist/types/preset/quick.d.ts +10 -0
- package/node_modules/hono/dist/types/preset/tiny.d.ts +10 -0
- package/node_modules/hono/dist/types/request/constants.d.ts +1 -0
- package/node_modules/hono/dist/types/request.d.ts +313 -0
- package/node_modules/hono/dist/types/router/linear-router/index.d.ts +5 -0
- package/node_modules/hono/dist/types/router/linear-router/router.d.ts +7 -0
- package/node_modules/hono/dist/types/router/pattern-router/index.d.ts +5 -0
- package/node_modules/hono/dist/types/router/pattern-router/router.d.ts +7 -0
- package/node_modules/hono/dist/types/router/reg-exp-router/index.d.ts +6 -0
- package/node_modules/hono/dist/types/router/reg-exp-router/matcher.d.ts +7 -0
- package/node_modules/hono/dist/types/router/reg-exp-router/node.d.ts +10 -0
- package/node_modules/hono/dist/types/router/reg-exp-router/prepared-router.d.ts +17 -0
- package/node_modules/hono/dist/types/router/reg-exp-router/router.d.ts +11 -0
- package/node_modules/hono/dist/types/router/reg-exp-router/trie.d.ts +7 -0
- package/node_modules/hono/dist/types/router/smart-router/index.d.ts +5 -0
- package/node_modules/hono/dist/types/router/smart-router/router.d.ts +11 -0
- package/node_modules/hono/dist/types/router/trie-router/index.d.ts +5 -0
- package/node_modules/hono/dist/types/router/trie-router/node.d.ts +7 -0
- package/node_modules/hono/dist/types/router/trie-router/router.d.ts +8 -0
- package/node_modules/hono/dist/types/router.d.ts +97 -0
- package/node_modules/hono/dist/types/types.d.ts +573 -0
- package/node_modules/hono/dist/types/utils/accept.d.ts +11 -0
- package/node_modules/hono/dist/types/utils/basic-auth.d.ts +5 -0
- package/node_modules/hono/dist/types/utils/body.d.ts +79 -0
- package/node_modules/hono/dist/types/utils/buffer.d.ts +8 -0
- package/node_modules/hono/dist/types/utils/color.d.ts +21 -0
- package/node_modules/hono/dist/types/utils/compress.d.ts +8 -0
- package/node_modules/hono/dist/types/utils/concurrent.d.ts +11 -0
- package/node_modules/hono/dist/types/utils/constants.d.ts +4 -0
- package/node_modules/hono/dist/types/utils/cookie.d.ts +40 -0
- package/node_modules/hono/dist/types/utils/crypto.d.ts +15 -0
- package/node_modules/hono/dist/types/utils/encode.d.ts +8 -0
- package/node_modules/hono/dist/types/utils/filepath.d.ts +12 -0
- package/node_modules/hono/dist/types/utils/handler.d.ts +6 -0
- package/node_modules/hono/dist/types/utils/headers.d.ts +8 -0
- package/node_modules/hono/dist/types/utils/html.d.ts +44 -0
- package/node_modules/hono/dist/types/utils/http-status.d.ts +32 -0
- package/node_modules/hono/dist/types/utils/ipaddr.d.ts +40 -0
- package/node_modules/hono/dist/types/utils/jwt/index.d.ts +18 -0
- package/node_modules/hono/dist/types/utils/jwt/jwa.d.ts +23 -0
- package/node_modules/hono/dist/types/utils/jwt/jws.d.ts +12 -0
- package/node_modules/hono/dist/types/utils/jwt/jwt.d.ts +43 -0
- package/node_modules/hono/dist/types/utils/jwt/types.d.ts +86 -0
- package/node_modules/hono/dist/types/utils/jwt/utf8.d.ts +6 -0
- package/node_modules/hono/dist/types/utils/mime.d.ts +70 -0
- package/node_modules/hono/dist/types/utils/stream.d.ts +31 -0
- package/node_modules/hono/dist/types/utils/types.d.ts +74 -0
- package/node_modules/hono/dist/types/utils/url.d.ts +29 -0
- package/node_modules/hono/dist/types/validator/index.d.ts +7 -0
- package/node_modules/hono/dist/types/validator/utils.d.ts +29 -0
- package/node_modules/hono/dist/types/validator/validator.d.ts +16 -0
- package/node_modules/hono/dist/types.js +6 -0
- package/node_modules/hono/dist/utils/accept.js +63 -0
- package/node_modules/hono/dist/utils/basic-auth.js +23 -0
- package/node_modules/hono/dist/utils/body.js +72 -0
- package/node_modules/hono/dist/utils/buffer.js +50 -0
- package/node_modules/hono/dist/utils/color.js +25 -0
- package/node_modules/hono/dist/utils/compress.js +5 -0
- package/node_modules/hono/dist/utils/concurrent.js +39 -0
- package/node_modules/hono/dist/utils/constants.js +5 -0
- package/node_modules/hono/dist/utils/cookie.js +147 -0
- package/node_modules/hono/dist/utils/crypto.js +44 -0
- package/node_modules/hono/dist/utils/encode.js +29 -0
- package/node_modules/hono/dist/utils/filepath.js +35 -0
- package/node_modules/hono/dist/utils/handler.js +13 -0
- package/node_modules/hono/dist/utils/headers.js +0 -0
- package/node_modules/hono/dist/utils/html.js +123 -0
- package/node_modules/hono/dist/utils/http-status.js +0 -0
- package/node_modules/hono/dist/utils/ipaddr.js +101 -0
- package/node_modules/hono/dist/utils/jwt/index.js +6 -0
- package/node_modules/hono/dist/utils/jwt/jwa.js +20 -0
- package/node_modules/hono/dist/utils/jwt/jws.js +192 -0
- package/node_modules/hono/dist/utils/jwt/jwt.js +197 -0
- package/node_modules/hono/dist/utils/jwt/types.js +124 -0
- package/node_modules/hono/dist/utils/jwt/utf8.js +7 -0
- package/node_modules/hono/dist/utils/mime.js +84 -0
- package/node_modules/hono/dist/utils/stream.js +79 -0
- package/node_modules/hono/dist/utils/types.js +0 -0
- package/node_modules/hono/dist/utils/url.js +219 -0
- package/node_modules/hono/dist/validator/index.js +5 -0
- package/node_modules/hono/dist/validator/utils.js +0 -0
- package/node_modules/hono/dist/validator/validator.js +86 -0
- package/node_modules/hono/package.json +691 -0
- package/node_modules/{async → ip-address}/LICENSE +1 -1
- package/node_modules/ip-address/README.md +105 -0
- package/node_modules/ip-address/dist/address-error.d.ts +5 -0
- package/node_modules/ip-address/dist/address-error.d.ts.map +1 -0
- package/node_modules/ip-address/dist/address-error.js +12 -0
- package/node_modules/ip-address/dist/address-error.js.map +1 -0
- package/node_modules/ip-address/dist/common.d.ts +15 -0
- package/node_modules/ip-address/dist/common.d.ts.map +1 -0
- package/node_modules/ip-address/dist/common.js +46 -0
- package/node_modules/ip-address/dist/common.js.map +1 -0
- package/node_modules/ip-address/dist/ip-address.d.ts +8 -0
- package/node_modules/ip-address/dist/ip-address.d.ts.map +1 -0
- package/node_modules/ip-address/dist/ip-address.js +35 -0
- package/node_modules/ip-address/dist/ip-address.js.map +1 -0
- package/node_modules/ip-address/dist/ipv4.d.ts +193 -0
- package/node_modules/ip-address/dist/ipv4.d.ts.map +1 -0
- package/node_modules/ip-address/dist/ipv4.js +327 -0
- package/node_modules/ip-address/dist/ipv4.js.map +1 -0
- package/node_modules/ip-address/dist/ipv6.d.ts +428 -0
- package/node_modules/ip-address/dist/ipv6.d.ts.map +1 -0
- package/node_modules/ip-address/dist/ipv6.js +1003 -0
- package/node_modules/ip-address/dist/ipv6.js.map +1 -0
- package/node_modules/ip-address/dist/v4/constants.d.ts +5 -0
- package/node_modules/ip-address/dist/v4/constants.d.ts.map +1 -0
- package/node_modules/ip-address/dist/v4/constants.js +8 -0
- package/node_modules/ip-address/dist/v4/constants.js.map +1 -0
- package/node_modules/ip-address/dist/v6/constants.d.ts +45 -0
- package/node_modules/ip-address/dist/v6/constants.d.ts.map +1 -0
- package/node_modules/ip-address/dist/v6/constants.js +76 -0
- package/node_modules/ip-address/dist/v6/constants.js.map +1 -0
- package/node_modules/ip-address/dist/v6/helpers.d.ts +18 -0
- package/node_modules/ip-address/dist/v6/helpers.d.ts.map +1 -0
- package/node_modules/ip-address/dist/v6/helpers.js +45 -0
- package/node_modules/ip-address/dist/v6/helpers.js.map +1 -0
- package/node_modules/ip-address/dist/v6/regular-expressions.d.ts +6 -0
- package/node_modules/ip-address/dist/v6/regular-expressions.d.ts.map +1 -0
- package/node_modules/ip-address/dist/v6/regular-expressions.js +95 -0
- package/node_modules/ip-address/dist/v6/regular-expressions.js.map +1 -0
- package/node_modules/ip-address/package.json +78 -0
- package/node_modules/ip-address/src/address-error.ts +11 -0
- package/node_modules/ip-address/src/common.ts +55 -0
- package/node_modules/ip-address/src/ip-address.ts +7 -0
- package/node_modules/ip-address/src/ipv4.ts +356 -0
- package/node_modules/ip-address/src/ipv6.ts +1212 -0
- package/node_modules/ip-address/src/v4/constants.ts +7 -0
- package/node_modules/ip-address/src/v6/constants.ts +79 -0
- package/node_modules/ip-address/src/v6/helpers.ts +48 -0
- package/node_modules/ip-address/src/v6/regular-expressions.ts +94 -0
- package/node_modules/simple-git/dist/cjs/index.js +123 -179
- package/node_modules/simple-git/dist/cjs/index.js.map +4 -4
- package/node_modules/simple-git/dist/esm/index.js +114 -174
- package/node_modules/simple-git/dist/esm/index.js.map +4 -4
- package/node_modules/simple-git/dist/src/lib/api.d.ts +1 -1
- package/node_modules/simple-git/dist/src/lib/plugins/block-unsafe-operations-plugin.d.ts +1 -1
- package/node_modules/simple-git/dist/src/lib/plugins/index.d.ts +1 -1
- package/node_modules/simple-git/dist/src/lib/tasks/clone.d.ts +6 -2
- package/node_modules/simple-git/dist/src/lib/types/index.d.ts +26 -1
- package/node_modules/simple-git/dist/typings/index.d.ts +2 -0
- package/node_modules/simple-git/dist/typings/simple-git.d.ts +2 -1
- package/node_modules/simple-git/dist/typings/types.d.ts +0 -1
- package/node_modules/simple-git/package.json +9 -19
- package/node_modules/simple-git/readme.md +2 -1
- package/package.json +17 -15
- package/dist/claude-marketplace/core/skills/KNOWLEDGE-DEFINITION.md +0 -78
- package/dist/claude-marketplace/core/skills/KNOWLEDGE-DEFINITION.zh.md +0 -79
- package/dist/claude-marketplace/core/skills/knowledge.add/SKILL.md +0 -45
- package/dist/claude-marketplace/core/skills/knowledge.add/skill.zh.md +0 -47
- package/dist/claude-marketplace/core/skills/knowledge.collect/SKILL.zh.md +0 -185
- package/dist/claude-marketplace/core/skills/knowledge.delete/SKILL.md +0 -22
- package/dist/claude-marketplace/core/skills/knowledge.delete/skill.zh.md +0 -22
- package/dist/claude-marketplace/core/skills/knowledge.detect/SKILL.md +0 -115
- package/dist/claude-marketplace/core/skills/knowledge.detect/skill.zh.md +0 -117
- package/dist/claude-marketplace/core/skills/knowledge.enhance/SKILL.zh.md +0 -157
- package/dist/claude-marketplace/core/skills/knowledge.import/SKILL.md +0 -35
- package/dist/claude-marketplace/core/skills/knowledge.import/skill.zh.md +0 -35
- package/dist/claude-marketplace/core/skills/knowledge.init/SKILL.md +0 -38
- package/dist/claude-marketplace/core/skills/knowledge.init/skill.zh.md +0 -38
- package/dist/claude-marketplace/core/skills/knowledge.save/SKILL.md +0 -82
- package/dist/claude-marketplace/core/skills/knowledge.save/skill.zh.md +0 -82
- package/dist/claude-marketplace/core/skills/knowledge.status/SKILL.md +0 -19
- package/dist/claude-marketplace/core/skills/knowledge.status/skill.zh.md +0 -19
- package/dist/claude-marketplace/core/skills/knowledge.update/SKILL.md +0 -77
- package/dist/claude-marketplace/core/skills/knowledge.update/skill.zh.md +0 -77
- package/dist/mcp-server.js +0 -7
- package/node_modules/async/CHANGELOG.md +0 -351
- package/node_modules/async/README.md +0 -59
- package/node_modules/async/all.js +0 -119
- package/node_modules/async/allLimit.js +0 -46
- package/node_modules/async/allSeries.js +0 -45
- package/node_modules/async/any.js +0 -122
- package/node_modules/async/anyLimit.js +0 -47
- package/node_modules/async/anySeries.js +0 -46
- package/node_modules/async/apply.js +0 -11
- package/node_modules/async/applyEach.js +0 -57
- package/node_modules/async/applyEachSeries.js +0 -37
- package/node_modules/async/asyncify.js +0 -118
- package/node_modules/async/auto.js +0 -333
- package/node_modules/async/autoInject.js +0 -182
- package/node_modules/async/bower.json +0 -17
- package/node_modules/async/cargo.js +0 -63
- package/node_modules/async/cargoQueue.js +0 -71
- package/node_modules/async/compose.js +0 -55
- package/node_modules/async/concat.js +0 -115
- package/node_modules/async/concatLimit.js +0 -60
- package/node_modules/async/concatSeries.js +0 -41
- package/node_modules/async/constant.js +0 -14
- package/node_modules/async/detect.js +0 -96
- package/node_modules/async/detectLimit.js +0 -48
- package/node_modules/async/detectSeries.js +0 -47
- package/node_modules/async/dir.js +0 -43
- package/node_modules/async/dist/async.js +0 -6061
- package/node_modules/async/dist/async.min.js +0 -1
- package/node_modules/async/dist/async.mjs +0 -5948
- package/node_modules/async/doDuring.js +0 -68
- package/node_modules/async/doUntil.js +0 -46
- package/node_modules/async/doWhilst.js +0 -68
- package/node_modules/async/during.js +0 -78
- package/node_modules/async/each.js +0 -129
- package/node_modules/async/eachLimit.js +0 -50
- package/node_modules/async/eachOf.js +0 -185
- package/node_modules/async/eachOfLimit.js +0 -47
- package/node_modules/async/eachOfSeries.js +0 -39
- package/node_modules/async/eachSeries.js +0 -44
- package/node_modules/async/ensureAsync.js +0 -67
- package/node_modules/async/every.js +0 -119
- package/node_modules/async/everyLimit.js +0 -46
- package/node_modules/async/everySeries.js +0 -45
- package/node_modules/async/filter.js +0 -93
- package/node_modules/async/filterLimit.js +0 -45
- package/node_modules/async/filterSeries.js +0 -43
- package/node_modules/async/find.js +0 -96
- package/node_modules/async/findLimit.js +0 -48
- package/node_modules/async/findSeries.js +0 -47
- package/node_modules/async/flatMap.js +0 -115
- package/node_modules/async/flatMapLimit.js +0 -60
- package/node_modules/async/flatMapSeries.js +0 -41
- package/node_modules/async/foldl.js +0 -153
- package/node_modules/async/foldr.js +0 -41
- package/node_modules/async/forEach.js +0 -129
- package/node_modules/async/forEachLimit.js +0 -50
- package/node_modules/async/forEachOf.js +0 -185
- package/node_modules/async/forEachOfLimit.js +0 -47
- package/node_modules/async/forEachOfSeries.js +0 -39
- package/node_modules/async/forEachSeries.js +0 -44
- package/node_modules/async/forever.js +0 -68
- package/node_modules/async/groupBy.js +0 -108
- package/node_modules/async/groupByLimit.js +0 -71
- package/node_modules/async/groupBySeries.js +0 -36
- package/node_modules/async/index.js +0 -588
- package/node_modules/async/inject.js +0 -153
- package/node_modules/async/internal/DoublyLinkedList.js +0 -92
- package/node_modules/async/internal/Heap.js +0 -120
- package/node_modules/async/internal/applyEach.js +0 -29
- package/node_modules/async/internal/asyncEachOfLimit.js +0 -75
- package/node_modules/async/internal/awaitify.js +0 -28
- package/node_modules/async/internal/breakLoop.js +0 -10
- package/node_modules/async/internal/consoleFunc.js +0 -31
- package/node_modules/async/internal/createTester.js +0 -40
- package/node_modules/async/internal/eachOfLimit.js +0 -90
- package/node_modules/async/internal/filter.js +0 -55
- package/node_modules/async/internal/getIterator.js +0 -11
- package/node_modules/async/internal/initialParams.js +0 -14
- package/node_modules/async/internal/isArrayLike.js +0 -10
- package/node_modules/async/internal/iterator.js +0 -57
- package/node_modules/async/internal/map.js +0 -30
- package/node_modules/async/internal/once.js +0 -17
- package/node_modules/async/internal/onlyOnce.js +0 -15
- package/node_modules/async/internal/parallel.js +0 -34
- package/node_modules/async/internal/promiseCallback.js +0 -23
- package/node_modules/async/internal/queue.js +0 -294
- package/node_modules/async/internal/range.js +0 -14
- package/node_modules/async/internal/reject.js +0 -26
- package/node_modules/async/internal/setImmediate.js +0 -34
- package/node_modules/async/internal/withoutIndex.js +0 -10
- package/node_modules/async/internal/wrapAsync.js +0 -34
- package/node_modules/async/log.js +0 -41
- package/node_modules/async/map.js +0 -142
- package/node_modules/async/mapLimit.js +0 -45
- package/node_modules/async/mapSeries.js +0 -44
- package/node_modules/async/mapValues.js +0 -152
- package/node_modules/async/mapValuesLimit.js +0 -61
- package/node_modules/async/mapValuesSeries.js +0 -37
- package/node_modules/async/memoize.js +0 -91
- package/node_modules/async/nextTick.js +0 -52
- package/node_modules/async/package.json +0 -75
- package/node_modules/async/parallel.js +0 -180
- package/node_modules/async/parallelLimit.js +0 -41
- package/node_modules/async/priorityQueue.js +0 -60
- package/node_modules/async/queue.js +0 -24
- package/node_modules/async/race.js +0 -67
- package/node_modules/async/reduce.js +0 -153
- package/node_modules/async/reduceRight.js +0 -41
- package/node_modules/async/reflect.js +0 -78
- package/node_modules/async/reflectAll.js +0 -93
- package/node_modules/async/reject.js +0 -87
- package/node_modules/async/rejectLimit.js +0 -45
- package/node_modules/async/rejectSeries.js +0 -43
- package/node_modules/async/retry.js +0 -159
- package/node_modules/async/retryable.js +0 -77
- package/node_modules/async/select.js +0 -93
- package/node_modules/async/selectLimit.js +0 -45
- package/node_modules/async/selectSeries.js +0 -43
- package/node_modules/async/seq.js +0 -79
- package/node_modules/async/series.js +0 -186
- package/node_modules/async/setImmediate.js +0 -45
- package/node_modules/async/some.js +0 -122
- package/node_modules/async/someLimit.js +0 -47
- package/node_modules/async/someSeries.js +0 -46
- package/node_modules/async/sortBy.js +0 -190
- package/node_modules/async/timeout.js +0 -89
- package/node_modules/async/times.js +0 -50
- package/node_modules/async/timesLimit.js +0 -43
- package/node_modules/async/timesSeries.js +0 -32
- package/node_modules/async/transform.js +0 -173
- package/node_modules/async/tryEach.js +0 -78
- package/node_modules/async/unmemoize.js +0 -25
- package/node_modules/async/until.js +0 -61
- package/node_modules/async/waterfall.js +0 -105
- package/node_modules/async/whilst.js +0 -78
- package/node_modules/async/wrapSync.js +0 -118
- package/node_modules/balanced-match/.github/FUNDING.yml +0 -2
- package/node_modules/balanced-match/LICENSE.md +0 -21
- package/node_modules/balanced-match/README.md +0 -97
- package/node_modules/balanced-match/index.js +0 -62
- package/node_modules/balanced-match/package.json +0 -48
- package/node_modules/brace-expansion/.github/FUNDING.yml +0 -2
- package/node_modules/brace-expansion/README.md +0 -135
- package/node_modules/brace-expansion/index.js +0 -203
- package/node_modules/brace-expansion/package.json +0 -49
- package/node_modules/filelist/README.md +0 -84
- package/node_modules/filelist/index.d.ts +0 -110
- package/node_modules/filelist/index.js +0 -495
- package/node_modules/filelist/jakefile.js +0 -15
- package/node_modules/filelist/package.json +0 -28
- package/node_modules/jake/Makefile +0 -44
- package/node_modules/jake/README.md +0 -17
- package/node_modules/jake/bin/bash_completion.sh +0 -41
- package/node_modules/jake/bin/cli.js +0 -31
- package/node_modules/jake/jakefile.js +0 -112
- package/node_modules/jake/lib/api.js +0 -409
- package/node_modules/jake/lib/jake.js +0 -330
- package/node_modules/jake/lib/loader.js +0 -174
- package/node_modules/jake/lib/namespace.js +0 -115
- package/node_modules/jake/lib/package_task.js +0 -406
- package/node_modules/jake/lib/program.js +0 -282
- package/node_modules/jake/lib/publish_task.js +0 -290
- package/node_modules/jake/lib/rule.js +0 -311
- package/node_modules/jake/lib/task/directory_task.js +0 -30
- package/node_modules/jake/lib/task/file_task.js +0 -126
- package/node_modules/jake/lib/task/index.js +0 -9
- package/node_modules/jake/lib/task/task.js +0 -458
- package/node_modules/jake/lib/test_task.js +0 -270
- package/node_modules/jake/lib/utils/file.js +0 -286
- package/node_modules/jake/lib/utils/index.js +0 -297
- package/node_modules/jake/lib/utils/logger.js +0 -24
- package/node_modules/jake/package.json +0 -44
- package/node_modules/jake/test/integration/concurrent.js +0 -45
- package/node_modules/jake/test/integration/file.js +0 -228
- package/node_modules/jake/test/integration/file_task.js +0 -141
- package/node_modules/jake/test/integration/helpers.js +0 -80
- package/node_modules/jake/test/integration/jakefile.js +0 -352
- package/node_modules/jake/test/integration/jakelib/concurrent.jake.js +0 -113
- package/node_modules/jake/test/integration/jakelib/publish.jake.js +0 -49
- package/node_modules/jake/test/integration/jakelib/required_module.jake.js +0 -10
- package/node_modules/jake/test/integration/jakelib/rule.jake.js +0 -222
- package/node_modules/jake/test/integration/list_tasks.js +0 -15
- package/node_modules/jake/test/integration/publish_task.js +0 -27
- package/node_modules/jake/test/integration/rule.js +0 -217
- package/node_modules/jake/test/integration/selfdep.js +0 -42
- package/node_modules/jake/test/integration/task_base.js +0 -167
- package/node_modules/jake/test/unit/jakefile.js +0 -36
- package/node_modules/jake/test/unit/namespace.js +0 -77
- package/node_modules/jake/test/unit/parseargs.js +0 -169
- package/node_modules/jake/usage.txt +0 -17
- package/node_modules/minimatch/LICENSE +0 -15
- package/node_modules/minimatch/README.md +0 -259
- package/node_modules/minimatch/lib/path.js +0 -4
- package/node_modules/minimatch/minimatch.js +0 -944
- package/node_modules/minimatch/package.json +0 -35
- package/node_modules/picocolors/LICENSE +0 -15
- package/node_modules/picocolors/README.md +0 -21
- package/node_modules/picocolors/package.json +0 -25
- package/node_modules/picocolors/picocolors.browser.js +0 -4
- package/node_modules/picocolors/picocolors.d.ts +0 -5
- package/node_modules/picocolors/picocolors.js +0 -75
- package/node_modules/picocolors/types.d.ts +0 -51
- package/node_modules/simple-git/dist/src/lib/args/pathspec.d.ts +0 -3
package/README.md
CHANGED
|
@@ -1,21 +1,98 @@
|
|
|
1
1
|
# Knowledge Bank
|
|
2
2
|
|
|
3
|
-
An intelligent knowledge management system for Claude Code that automatically captures
|
|
3
|
+
An intelligent knowledge management system for Claude Code that automatically captures and retrieves development insights during your coding sessions.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Why Knowledge Bank?
|
|
6
6
|
|
|
7
|
-
Knowledge Bank
|
|
7
|
+
Every day, developers solve complex problems, discover useful patterns, and learn valuable lessons. Yet most of this knowledge is lost—buried in closed issues, forgotten conversations, or never documented at all. Knowledge Bank changes this by **automatically capturing development knowledge as you work**, building a searchable knowledge base that grows smarter with every coding session.
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
-
|
|
9
|
+
## What is Knowledge Bank?
|
|
10
|
+
|
|
11
|
+
Knowledge Bank is a Claude Code plugin that seamlessly integrates into your development workflow to:
|
|
12
|
+
|
|
13
|
+
- **🧠 Automatically capture** valuable insights from your Claude Code sessions
|
|
14
|
+
- **🔍 Intelligently retrieve** relevant knowledge when you need it
|
|
15
|
+
- **📚 Build a searchable database** of project-specific and personal development wisdom
|
|
16
|
+
- **⚡ Work transparently** without disrupting your flow
|
|
17
|
+
|
|
18
|
+
Unlike traditional documentation tools that require manual effort, Knowledge Bank operates in the background—learning from your development sessions and surfacing relevant insights at the right moment.
|
|
19
|
+
|
|
20
|
+
## Core Philosophy
|
|
21
|
+
|
|
22
|
+
### Knowledge Should Be Effortless
|
|
23
|
+
|
|
24
|
+
Traditional documentation fails because it requires extra work. Knowledge Bank integrates knowledge capture directly into your development workflow—no separate documentation process, no context switching, no maintenance burden.
|
|
25
|
+
|
|
26
|
+
### AI-First Knowledge Design
|
|
27
|
+
|
|
28
|
+
Knowledge Bank is built for the AI-assisted development era. It stores knowledge in formats optimized for AI consumption, allowing Claude Code to leverage accumulated insights when helping you solve problems. The knowledge grows more valuable with every session, creating a positive feedback loop.
|
|
29
|
+
|
|
30
|
+
### Context is Everything
|
|
31
|
+
|
|
32
|
+
Knowledge without context is just data. Knowledge Bank automatically associates every insight with:
|
|
33
|
+
- The specific files and code it relates to
|
|
34
|
+
- The project and repository context
|
|
35
|
+
- The development phase (design, coding, debugging, etc.)
|
|
36
|
+
- The problem being solved
|
|
37
|
+
|
|
38
|
+
This rich context ensures knowledge is relevant and actionable when retrieved.
|
|
39
|
+
|
|
40
|
+
## Key Advantages
|
|
41
|
+
|
|
42
|
+
### 1. Zero Friction Integration
|
|
43
|
+
- No manual knowledge entry required
|
|
44
|
+
- Automatic capture through Claude Code's hook system
|
|
45
|
+
- Works silently in the background
|
|
46
|
+
- No new tools or workflows to learn
|
|
47
|
+
|
|
48
|
+
### 2. Intelligent Knowledge Management
|
|
49
|
+
- **Smart Detection**: Automatically identifies valuable insights worth preserving
|
|
50
|
+
- **Duplicate Prevention**: Detects similar knowledge and merges intelligently
|
|
51
|
+
- **Quality Control**: Validates knowledge relevance and actionability
|
|
52
|
+
- **Context Isolation**: Runs knowledge operations without disrupting your main conversation
|
|
53
|
+
|
|
54
|
+
### 3. Always Available
|
|
55
|
+
- **Local Storage**: Your knowledge stays on your machine in SQLite
|
|
56
|
+
- **Fast Search**: FTS5 full-text search for instant retrieval
|
|
57
|
+
- **Web Dashboard**: Browse and explore your knowledge base visually
|
|
58
|
+
- **Multi-Repository**: Manage knowledge across all your projects
|
|
59
|
+
|
|
60
|
+
### 4. Grows With You
|
|
61
|
+
- **Personal Knowledge**: Capture cross-project principles and practices
|
|
62
|
+
- **Project Knowledge**: Build project-specific expertise and patterns
|
|
63
|
+
- **Session Tracking**: Complete history of your Claude Code sessions
|
|
64
|
+
- **Pattern Recognition**: Identify recurring solutions and approaches
|
|
65
|
+
|
|
66
|
+
## How It Works
|
|
67
|
+
|
|
68
|
+
Knowledge Bank operates through a simple three-phase cycle:
|
|
69
|
+
|
|
70
|
+
### 📥 Capture Phase
|
|
71
|
+
When you complete a development task, Knowledge Bank automatically:
|
|
72
|
+
- Analyzes the conversation for valuable insights
|
|
73
|
+
- Identifies code patterns, debugging solutions, and architectural decisions
|
|
74
|
+
- Checks for duplicate knowledge using similarity scoring
|
|
75
|
+
- Stores qualified knowledge with rich metadata
|
|
76
|
+
|
|
77
|
+
### 🗄️ Storage Phase
|
|
78
|
+
All knowledge is stored locally in:
|
|
79
|
+
- **SQLite Database**: Fast, reliable, and private
|
|
80
|
+
- **Structured Format**: Organized by type, scope, and project
|
|
81
|
+
- **Full-Text Search**: Optimized for quick retrieval
|
|
82
|
+
- **Version Controlled**: Linked to specific Git repositories and branches
|
|
83
|
+
|
|
84
|
+
### 🔍 Retrieval Phase
|
|
85
|
+
When you start working on a new task, Knowledge Bank:
|
|
86
|
+
- Analyzes your question or problem description
|
|
87
|
+
- Searches for relevant knowledge from past sessions
|
|
88
|
+
- Injects contextual insights into your conversation
|
|
89
|
+
- Surfaces the right knowledge at the right time
|
|
90
|
+
|
|
91
|
+
All of this happens automatically through Claude Code's skill system, requiring no manual intervention.
|
|
14
92
|
|
|
15
93
|
## Installation
|
|
16
94
|
|
|
17
95
|
### Prerequisites
|
|
18
|
-
|
|
19
96
|
- Node.js >= 18.0.0
|
|
20
97
|
- Claude Code CLI installed and configured
|
|
21
98
|
|
|
@@ -23,83 +100,79 @@ Knowledge Bank is a lightweight Claude Code plugin that transforms your developm
|
|
|
23
100
|
|
|
24
101
|
```bash
|
|
25
102
|
# Install Knowledge Bank globally
|
|
26
|
-
npm install -g @gabrywu/knowledge-bank
|
|
27
|
-
# For alpha/beta versions, use:
|
|
28
|
-
npm install -g @gabrywu/knowledge-bank@alpha --registry https://registry.npmjs.org
|
|
103
|
+
npm install -g @gabrywu/knowledge-bank
|
|
29
104
|
|
|
30
|
-
# Install the
|
|
105
|
+
# Install the plugin into Claude Code
|
|
31
106
|
knowledge-bank install
|
|
32
107
|
|
|
33
|
-
#
|
|
34
|
-
knowledge-bank
|
|
108
|
+
# Verify installation
|
|
109
|
+
knowledge-bank config
|
|
35
110
|
```
|
|
36
111
|
|
|
37
|
-
|
|
112
|
+
That's it! Knowledge Bank is now active and will automatically capture knowledge from your Claude Code sessions.
|
|
113
|
+
|
|
114
|
+
### Web Dashboard
|
|
115
|
+
|
|
116
|
+
Explore your knowledge base through the built-in web interface:
|
|
38
117
|
|
|
39
118
|
```bash
|
|
40
|
-
#
|
|
41
|
-
knowledge-bank
|
|
119
|
+
# Start the web dashboard
|
|
120
|
+
knowledge-bank web
|
|
42
121
|
```
|
|
43
122
|
|
|
44
|
-
|
|
123
|
+
The dashboard provides:
|
|
124
|
+
- Browse and search all captured knowledge
|
|
125
|
+
- View session history and activity
|
|
126
|
+
- Filter by project, type, and status
|
|
127
|
+
- Explore knowledge relationships
|
|
45
128
|
|
|
46
|
-
|
|
129
|
+
## Use Cases
|
|
47
130
|
|
|
48
|
-
###
|
|
131
|
+
### Debugging Sessions
|
|
132
|
+
**Before**: You spend hours debugging an issue, solve it, and forget the solution.
|
|
133
|
+
**After**: Knowledge Bank captures the debugging process, root cause, and solution. Next time a similar issue appears, the solution is automatically retrieved.
|
|
49
134
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
```
|
|
135
|
+
### Architecture Decisions
|
|
136
|
+
**Before**: Important design decisions are scattered across PRs and chat logs.
|
|
137
|
+
**After**: Architectural insights are captured with context and rationale, building a living architecture document.
|
|
54
138
|
|
|
55
|
-
|
|
139
|
+
### Code Patterns
|
|
140
|
+
**Before**: You rediscover the same patterns repeatedly across projects.
|
|
141
|
+
**After**: Successful patterns are captured once and suggested whenever relevant.
|
|
56
142
|
|
|
57
|
-
###
|
|
143
|
+
### Onboarding
|
|
144
|
+
**Before**: New team members spend weeks learning project conventions.
|
|
145
|
+
**After**: Accumulated project knowledge provides instant context and guidance.
|
|
58
146
|
|
|
59
|
-
|
|
147
|
+
## Privacy & Security
|
|
60
148
|
|
|
61
|
-
|
|
62
|
-
- **
|
|
63
|
-
- **
|
|
64
|
-
- **
|
|
149
|
+
- **Local-First**: All knowledge stays on your machine
|
|
150
|
+
- **No Cloud Sync**: Your data never leaves your computer
|
|
151
|
+
- **Git-Aware**: Respects your repository structure
|
|
152
|
+
- **User-Controlled**: Full control over what gets captured and stored
|
|
65
153
|
|
|
66
|
-
|
|
67
|
-
- **Knowledge Items Viewer**: Browse, search, and filter all captured knowledge items
|
|
68
|
-
- Filter by type (architecture, code_pattern, tool_usage, config, pitfall, API_usage, exploration)
|
|
69
|
-
- Filter by status (draft, suggested, verified)
|
|
70
|
-
- Filter by scope (personal, project, organization)
|
|
71
|
-
- Full-text search across titles, summaries, and content
|
|
72
|
-
- **Markdown Rendering**: Rich display of knowledge content with proper formatting
|
|
73
|
-
- **Knowledge Details**: Expandable rows showing complete knowledge item information
|
|
154
|
+
## What's Next?
|
|
74
155
|
|
|
75
|
-
|
|
76
|
-
- **Session History**: View all Claude Code sessions organized by repository
|
|
77
|
-
- **Session Details**: Browse session metadata including working directory, branch, and timestamps
|
|
78
|
-
- **Session Filtering**: Search sessions by session ID, branch, or working directory
|
|
156
|
+
Once installed, Knowledge Bank works automatically. As you use Claude Code:
|
|
79
157
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
158
|
+
1. Complete development tasks as usual
|
|
159
|
+
2. Knowledge Bank captures valuable insights in the background
|
|
160
|
+
3. When you encounter similar situations, relevant knowledge appears automatically
|
|
161
|
+
4. Your knowledge base grows more valuable with every session
|
|
84
162
|
|
|
85
|
-
|
|
86
|
-
- **Table Explorer**: Direct access to all database tables (repository, session, knowledge_item, hook_event)
|
|
87
|
-
- **Schema Viewer**: Inspect database structure and relationships
|
|
88
|
-
- **Advanced Filtering**: Multiple filter options per table with pagination
|
|
89
|
-
- **Sortable Columns**: Click headers to sort by any column (ascending/descending)
|
|
163
|
+
The more you use Claude Code, the smarter your knowledge base becomes.
|
|
90
164
|
|
|
91
|
-
|
|
92
|
-
- **Cross-table Relationships**: Navigate between related repositories, sessions, and knowledge items
|
|
93
|
-
- **Repository-centric View**: See all sessions, knowledge, and events for each repository
|
|
94
|
-
- **Responsive Design**: Works seamlessly on desktop and mobile devices
|
|
95
|
-
- **Real-time Updates**: Reflects the latest database state on page refresh
|
|
165
|
+
## Resources
|
|
96
166
|
|
|
97
|
-
|
|
167
|
+
- **Documentation**: Full architecture details in `architecture.md`
|
|
168
|
+
- **Configuration**: Run `knowledge-bank config` to view settings
|
|
169
|
+
- **Web Interface**: Run `knowledge-bank web` to explore your knowledge
|
|
170
|
+
- **Support**: Report issues at [GitHub Issues](https://github.com/anthropics/claude-code/issues)
|
|
98
171
|
|
|
99
172
|
## License
|
|
100
173
|
|
|
101
|
-
|
|
174
|
+
MIT License - see the [LICENSE](LICENSE) file for details.
|
|
102
175
|
|
|
103
176
|
---
|
|
104
177
|
|
|
105
|
-
Transform your development workflow with intelligent knowledge management.
|
|
178
|
+
**Transform your development workflow with intelligent knowledge management. Your future self will thank you.**
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"name": "core",
|
|
10
10
|
"source": "./core",
|
|
11
11
|
"description": "Core plugins for knowledge bank",
|
|
12
|
-
"version": "0.1.
|
|
12
|
+
"version": "0.1.4-6",
|
|
13
13
|
"author": {
|
|
14
14
|
"name": "garbywu",
|
|
15
15
|
"email": "gabrywu@apache.org"
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
],
|
|
19
19
|
"metadata": {
|
|
20
20
|
"description": "A marketplace for knowledge bank plugins by gabrywu",
|
|
21
|
-
"version": "0.1.
|
|
21
|
+
"version": "0.1.4-6"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"hooks": [
|
|
6
6
|
{
|
|
7
7
|
"type": "command",
|
|
8
|
-
"command": "npx knowledge-bank session-start"
|
|
8
|
+
"command": "npx knowledge-bank hook session-start"
|
|
9
9
|
}
|
|
10
10
|
]
|
|
11
11
|
}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"hooks": [
|
|
16
16
|
{
|
|
17
17
|
"type": "command",
|
|
18
|
-
"command": "npx knowledge-bank session-end"
|
|
18
|
+
"command": "npx knowledge-bank hook session-end"
|
|
19
19
|
}
|
|
20
20
|
]
|
|
21
21
|
}
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"hooks": [
|
|
27
27
|
{
|
|
28
28
|
"type": "command",
|
|
29
|
-
"command": "npx knowledge-bank pre-tool-use"
|
|
29
|
+
"command": "npx knowledge-bank hook pre-tool-use"
|
|
30
30
|
}
|
|
31
31
|
]
|
|
32
32
|
}
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"hooks": [
|
|
38
38
|
{
|
|
39
39
|
"type": "command",
|
|
40
|
-
"command": "npx knowledge-bank post-tool-use"
|
|
40
|
+
"command": "npx knowledge-bank hook post-tool-use"
|
|
41
41
|
}
|
|
42
42
|
]
|
|
43
43
|
}
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"hooks": [
|
|
48
48
|
{
|
|
49
49
|
"type": "command",
|
|
50
|
-
"command": "npx knowledge-bank user-prompt-submit"
|
|
50
|
+
"command": "npx knowledge-bank hook user-prompt-submit"
|
|
51
51
|
}
|
|
52
52
|
]
|
|
53
53
|
}
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"hooks": [
|
|
59
59
|
{
|
|
60
60
|
"type": "command",
|
|
61
|
-
"command": "npx knowledge-bank permission-request"
|
|
61
|
+
"command": "npx knowledge-bank hook permission-request"
|
|
62
62
|
}
|
|
63
63
|
]
|
|
64
64
|
}
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"hooks": [
|
|
69
69
|
{
|
|
70
70
|
"type": "command",
|
|
71
|
-
"command": "npx knowledge-bank notification"
|
|
71
|
+
"command": "npx knowledge-bank hook notification"
|
|
72
72
|
}
|
|
73
73
|
]
|
|
74
74
|
}
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"hooks": [
|
|
79
79
|
{
|
|
80
80
|
"type": "command",
|
|
81
|
-
"command": "npx knowledge-bank stop"
|
|
81
|
+
"command": "npx knowledge-bank hook stop"
|
|
82
82
|
}
|
|
83
83
|
]
|
|
84
84
|
}
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"hooks": [
|
|
89
89
|
{
|
|
90
90
|
"type": "command",
|
|
91
|
-
"command": "npx knowledge-bank stop"
|
|
91
|
+
"command": "npx knowledge-bank hook stop"
|
|
92
92
|
}
|
|
93
93
|
]
|
|
94
94
|
}
|
|
@@ -98,7 +98,119 @@
|
|
|
98
98
|
"hooks": [
|
|
99
99
|
{
|
|
100
100
|
"type": "command",
|
|
101
|
-
"command": "npx knowledge-bank pre-compact"
|
|
101
|
+
"command": "npx knowledge-bank hook pre-compact"
|
|
102
|
+
}
|
|
103
|
+
]
|
|
104
|
+
}
|
|
105
|
+
],
|
|
106
|
+
"SubagentStart": [
|
|
107
|
+
{
|
|
108
|
+
"hooks": [
|
|
109
|
+
{
|
|
110
|
+
"type": "command",
|
|
111
|
+
"command": "npx knowledge-bank hook subagent-start"
|
|
112
|
+
}
|
|
113
|
+
]
|
|
114
|
+
}
|
|
115
|
+
],
|
|
116
|
+
"PostToolUseFailure": [
|
|
117
|
+
{
|
|
118
|
+
"matcher": "*",
|
|
119
|
+
"hooks": [
|
|
120
|
+
{
|
|
121
|
+
"type": "command",
|
|
122
|
+
"command": "npx knowledge-bank hook post-tool-use-failure"
|
|
123
|
+
}
|
|
124
|
+
]
|
|
125
|
+
}
|
|
126
|
+
],
|
|
127
|
+
"TeammateIdle": [
|
|
128
|
+
{
|
|
129
|
+
"hooks": [
|
|
130
|
+
{
|
|
131
|
+
"type": "command",
|
|
132
|
+
"command": "npx knowledge-bank hook teammate-idle"
|
|
133
|
+
}
|
|
134
|
+
]
|
|
135
|
+
}
|
|
136
|
+
],
|
|
137
|
+
"TaskCompleted": [
|
|
138
|
+
{
|
|
139
|
+
"hooks": [
|
|
140
|
+
{
|
|
141
|
+
"type": "command",
|
|
142
|
+
"command": "npx knowledge-bank hook task-completed"
|
|
143
|
+
}
|
|
144
|
+
]
|
|
145
|
+
}
|
|
146
|
+
],
|
|
147
|
+
"ConfigChange": [
|
|
148
|
+
{
|
|
149
|
+
"matcher": "*",
|
|
150
|
+
"hooks": [
|
|
151
|
+
{
|
|
152
|
+
"type": "command",
|
|
153
|
+
"command": "npx knowledge-bank hook config-change"
|
|
154
|
+
}
|
|
155
|
+
]
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
"WorktreeCreate": [
|
|
159
|
+
{
|
|
160
|
+
"hooks": [
|
|
161
|
+
{
|
|
162
|
+
"type": "command",
|
|
163
|
+
"command": "npx knowledge-bank hook worktree-create"
|
|
164
|
+
}
|
|
165
|
+
]
|
|
166
|
+
}
|
|
167
|
+
],
|
|
168
|
+
"WorktreeRemove": [
|
|
169
|
+
{
|
|
170
|
+
"hooks": [
|
|
171
|
+
{
|
|
172
|
+
"type": "command",
|
|
173
|
+
"command": "npx knowledge-bank hook worktree-remove"
|
|
174
|
+
}
|
|
175
|
+
]
|
|
176
|
+
}
|
|
177
|
+
],
|
|
178
|
+
"PostCompact": [
|
|
179
|
+
{
|
|
180
|
+
"hooks": [
|
|
181
|
+
{
|
|
182
|
+
"type": "command",
|
|
183
|
+
"command": "npx knowledge-bank hook post-compact"
|
|
184
|
+
}
|
|
185
|
+
]
|
|
186
|
+
}
|
|
187
|
+
],
|
|
188
|
+
"Elicitation": [
|
|
189
|
+
{
|
|
190
|
+
"hooks": [
|
|
191
|
+
{
|
|
192
|
+
"type": "command",
|
|
193
|
+
"command": "npx knowledge-bank hook elicitation"
|
|
194
|
+
}
|
|
195
|
+
]
|
|
196
|
+
}
|
|
197
|
+
],
|
|
198
|
+
"ElicitationResult": [
|
|
199
|
+
{
|
|
200
|
+
"hooks": [
|
|
201
|
+
{
|
|
202
|
+
"type": "command",
|
|
203
|
+
"command": "npx knowledge-bank hook elicitation-result"
|
|
204
|
+
}
|
|
205
|
+
]
|
|
206
|
+
}
|
|
207
|
+
],
|
|
208
|
+
"InstructionsLoaded": [
|
|
209
|
+
{
|
|
210
|
+
"hooks": [
|
|
211
|
+
{
|
|
212
|
+
"type": "command",
|
|
213
|
+
"command": "npx knowledge-bank hook instructions-loaded"
|
|
102
214
|
}
|
|
103
215
|
]
|
|
104
216
|
}
|