@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.
Files changed (993) hide show
  1. package/README.md +134 -61
  2. package/dist/claude-marketplace/.claude-plugin/marketplace.json +2 -2
  3. package/dist/claude-marketplace/core/.claude-plugin/plugin.json +1 -1
  4. package/dist/claude-marketplace/core/hooks/hooks.json +122 -10
  5. package/dist/claude-marketplace/core/skills/knowledge.collect/SKILL.md +231 -119
  6. package/dist/claude-marketplace/core/skills/knowledge.enhance/SKILL.md +31 -121
  7. package/dist/claude-marketplace/core/skills/knowledge.register/SKILL.md +142 -0
  8. package/dist/cli.js +6 -6
  9. package/dist/index.js +1 -1
  10. package/dist/mcp/mcp-server.js +7 -0
  11. package/dist/web/public/css/style.css +7 -0
  12. package/dist/web/public/js/main.js +2 -2
  13. package/dist/web/views/index.ejs +17 -1
  14. package/dist/web/views/layout.ejs +1 -0
  15. package/dist/web/views/partials/cell.ejs +9 -1
  16. package/dist/web/views/table.ejs +17 -8
  17. package/node_modules/@modelcontextprotocol/sdk/README.md +1 -0
  18. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.d.ts +12 -0
  19. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.d.ts.map +1 -1
  20. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.js +6 -3
  21. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.js.map +1 -1
  22. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.d.ts +79 -1
  23. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.d.ts.map +1 -1
  24. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.js +93 -16
  25. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.js.map +1 -1
  26. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.js +3 -15
  27. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.js.map +1 -1
  28. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.js +1 -17
  29. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.js.map +1 -1
  30. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.js +62 -23
  31. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.js.map +1 -1
  32. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.js +273 -244
  33. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.js.map +1 -1
  34. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.js +31 -27
  35. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.js.map +1 -1
  36. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.d.ts +12 -0
  37. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.d.ts.map +1 -0
  38. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.js +49 -0
  39. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.js.map +1 -0
  40. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.js +89 -0
  41. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.js.map +1 -1
  42. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.js +58 -53
  43. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.js.map +1 -1
  44. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.js +33 -21
  45. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.js.map +1 -1
  46. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.d.ts +88 -1
  47. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.d.ts.map +1 -1
  48. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.js +157 -0
  49. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.js.map +1 -1
  50. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.d.ts.map +1 -1
  51. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.js +8 -1
  52. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.js.map +1 -1
  53. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.d.ts +1 -0
  54. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.d.ts.map +1 -1
  55. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.js +29 -3
  56. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.js.map +1 -1
  57. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.d.ts.map +1 -1
  58. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.js +13 -0
  59. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.js.map +1 -1
  60. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.d.ts +4 -0
  61. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.d.ts.map +1 -1
  62. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.d.ts +12 -0
  63. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.d.ts.map +1 -1
  64. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.js +6 -3
  65. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.js.map +1 -1
  66. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.d.ts +79 -1
  67. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.d.ts.map +1 -1
  68. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.js +92 -16
  69. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.js.map +1 -1
  70. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.js +3 -15
  71. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.js.map +1 -1
  72. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.js +1 -17
  73. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.js.map +1 -1
  74. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.js +62 -23
  75. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.js.map +1 -1
  76. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.js +273 -244
  77. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.js.map +1 -1
  78. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.js +31 -27
  79. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.js.map +1 -1
  80. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.d.ts +12 -0
  81. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.d.ts.map +1 -0
  82. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.js +47 -0
  83. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.js.map +1 -0
  84. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.js +89 -0
  85. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.js.map +1 -1
  86. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.js +58 -53
  87. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.js.map +1 -1
  88. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.js +33 -21
  89. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.js.map +1 -1
  90. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.d.ts +88 -1
  91. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.d.ts.map +1 -1
  92. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js +157 -0
  93. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js.map +1 -1
  94. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.d.ts.map +1 -1
  95. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.js +8 -1
  96. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.js.map +1 -1
  97. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.d.ts +1 -0
  98. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.d.ts.map +1 -1
  99. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.js +29 -3
  100. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.js.map +1 -1
  101. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.d.ts.map +1 -1
  102. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js +13 -0
  103. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js.map +1 -1
  104. package/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts +4 -0
  105. package/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts.map +1 -1
  106. package/node_modules/@modelcontextprotocol/sdk/package.json +16 -6
  107. package/node_modules/@simple-git/args-pathspec/dist/index.cjs +2 -0
  108. package/node_modules/@simple-git/args-pathspec/dist/index.cjs.map +1 -0
  109. package/node_modules/@simple-git/args-pathspec/dist/index.d.ts +1 -0
  110. package/node_modules/@simple-git/args-pathspec/dist/index.mjs +17 -0
  111. package/node_modules/@simple-git/args-pathspec/dist/index.mjs.map +1 -0
  112. package/node_modules/@simple-git/args-pathspec/dist/src/pathspec.d.ts +8 -0
  113. package/node_modules/@simple-git/args-pathspec/package.json +32 -0
  114. package/node_modules/@simple-git/argv-parser/dist/index.cjs +2 -0
  115. package/node_modules/@simple-git/argv-parser/dist/index.cjs.map +1 -0
  116. package/node_modules/@simple-git/argv-parser/dist/index.d.ts +4 -0
  117. package/node_modules/@simple-git/argv-parser/dist/index.mjs +361 -0
  118. package/node_modules/@simple-git/argv-parser/dist/index.mjs.map +1 -0
  119. package/node_modules/@simple-git/argv-parser/dist/src/config/analyse-config.d.ts +3 -0
  120. package/node_modules/@simple-git/argv-parser/dist/src/config/config-operands.d.ts +4 -0
  121. package/node_modules/@simple-git/argv-parser/dist/src/config/config.types.d.ts +6 -0
  122. package/node_modules/@simple-git/argv-parser/dist/src/config/detect-config-action.d.ts +13 -0
  123. package/node_modules/@simple-git/argv-parser/dist/src/flags/flags.helpers.d.ts +9 -0
  124. package/node_modules/@simple-git/argv-parser/dist/src/flags/parse-global-flags.d.ts +6 -0
  125. package/node_modules/@simple-git/argv-parser/dist/src/flags/parse-task-flags.d.ts +8 -0
  126. package/node_modules/@simple-git/argv-parser/dist/src/parse-argv.d.ts +6 -0
  127. package/node_modules/@simple-git/argv-parser/dist/src/parse-argv.types.d.ts +59 -0
  128. package/node_modules/@simple-git/argv-parser/dist/src/tokens/flag-specs.d.ts +9 -0
  129. package/node_modules/@simple-git/argv-parser/dist/src/tokens/token-expander.d.ts +7 -0
  130. package/node_modules/@simple-git/argv-parser/dist/src/vulnerabilities/detect-config-writes.d.ts +3 -0
  131. package/node_modules/@simple-git/argv-parser/dist/src/vulnerabilities/detect-upload-pack.d.ts +3 -0
  132. package/node_modules/@simple-git/argv-parser/dist/src/vulnerabilities/vulnerability-analysis.d.ts +4 -0
  133. package/node_modules/@simple-git/argv-parser/dist/src/vulnerabilities/vulnerability.types.d.ts +9 -0
  134. package/node_modules/@simple-git/argv-parser/package.json +36 -0
  135. package/node_modules/commander/Readme.md +82 -65
  136. package/node_modules/commander/package-support.json +4 -1
  137. package/node_modules/commander/package.json +1 -1
  138. package/node_modules/ejs/README.md +2 -8
  139. package/node_modules/ejs/bin/cli.js +18 -11
  140. package/node_modules/ejs/ejs.js +16 -23
  141. package/node_modules/ejs/ejs.min.js +1 -1
  142. package/node_modules/ejs/jakefile.js +1 -1
  143. package/node_modules/ejs/lib/cjs/ejs.js +16 -21
  144. package/node_modules/ejs/lib/cjs/parseargs.js +125 -0
  145. package/node_modules/ejs/lib/cjs/utils.js +0 -2
  146. package/node_modules/ejs/lib/esm/ejs.js +18 -23
  147. package/node_modules/{jake/lib → ejs/lib/esm}/parseargs.js +8 -3
  148. package/node_modules/ejs/lib/esm/utils.js +0 -2
  149. package/node_modules/ejs/package.json +2 -4
  150. package/node_modules/express-rate-limit/dist/index.cjs +334 -198
  151. package/node_modules/express-rate-limit/dist/index.d.cts +74 -20
  152. package/node_modules/express-rate-limit/dist/index.d.mts +74 -20
  153. package/node_modules/express-rate-limit/dist/index.d.ts +74 -20
  154. package/node_modules/express-rate-limit/dist/index.mjs +330 -195
  155. package/node_modules/express-rate-limit/package.json +32 -53
  156. package/node_modules/express-rate-limit/readme.md +5 -1
  157. package/node_modules/{brace-expansion → hono}/LICENSE +1 -1
  158. package/node_modules/hono/README.md +85 -0
  159. package/node_modules/hono/dist/adapter/aws-lambda/handler.js +366 -0
  160. package/node_modules/hono/dist/adapter/aws-lambda/index.js +7 -0
  161. package/node_modules/hono/dist/adapter/aws-lambda/types.js +0 -0
  162. package/node_modules/hono/dist/adapter/bun/conninfo.js +27 -0
  163. package/node_modules/hono/dist/adapter/bun/index.js +14 -0
  164. package/node_modules/hono/dist/adapter/bun/serve-static.js +30 -0
  165. package/node_modules/hono/dist/adapter/bun/server.js +5 -0
  166. package/node_modules/hono/dist/adapter/bun/ssg.js +17 -0
  167. package/node_modules/hono/dist/adapter/bun/websocket.js +71 -0
  168. package/node_modules/hono/dist/adapter/cloudflare-pages/handler.js +67 -0
  169. package/node_modules/hono/dist/adapter/cloudflare-pages/index.js +7 -0
  170. package/node_modules/hono/dist/adapter/cloudflare-workers/conninfo.js +9 -0
  171. package/node_modules/hono/dist/adapter/cloudflare-workers/index.js +9 -0
  172. package/node_modules/hono/dist/adapter/cloudflare-workers/serve-static-module.js +8 -0
  173. package/node_modules/hono/dist/adapter/cloudflare-workers/serve-static.js +22 -0
  174. package/node_modules/hono/dist/adapter/cloudflare-workers/utils.js +35 -0
  175. package/node_modules/hono/dist/adapter/cloudflare-workers/websocket.js +41 -0
  176. package/node_modules/hono/dist/adapter/deno/conninfo.js +14 -0
  177. package/node_modules/hono/dist/adapter/deno/deno.d.js +0 -0
  178. package/node_modules/hono/dist/adapter/deno/index.js +12 -0
  179. package/node_modules/hono/dist/adapter/deno/serve-static.js +40 -0
  180. package/node_modules/hono/dist/adapter/deno/ssg.js +18 -0
  181. package/node_modules/hono/dist/adapter/deno/websocket.js +28 -0
  182. package/node_modules/hono/dist/adapter/lambda-edge/conninfo.js +9 -0
  183. package/node_modules/hono/dist/adapter/lambda-edge/handler.js +79 -0
  184. package/node_modules/hono/dist/adapter/lambda-edge/index.js +7 -0
  185. package/node_modules/hono/dist/adapter/netlify/handler.js +9 -0
  186. package/node_modules/hono/dist/adapter/netlify/index.js +2 -0
  187. package/node_modules/hono/dist/adapter/netlify/mod.js +5 -0
  188. package/node_modules/hono/dist/adapter/service-worker/handler.js +20 -0
  189. package/node_modules/hono/dist/adapter/service-worker/index.js +11 -0
  190. package/node_modules/hono/dist/adapter/service-worker/types.js +0 -0
  191. package/node_modules/hono/dist/adapter/vercel/conninfo.js +10 -0
  192. package/node_modules/hono/dist/adapter/vercel/handler.js +7 -0
  193. package/node_modules/hono/dist/adapter/vercel/index.js +7 -0
  194. package/node_modules/hono/dist/cjs/adapter/aws-lambda/handler.js +398 -0
  195. package/node_modules/hono/dist/cjs/adapter/aws-lambda/index.js +32 -0
  196. package/node_modules/hono/dist/cjs/adapter/aws-lambda/types.js +16 -0
  197. package/node_modules/hono/dist/cjs/adapter/bun/conninfo.js +50 -0
  198. package/node_modules/hono/dist/cjs/adapter/bun/index.js +43 -0
  199. package/node_modules/hono/dist/cjs/adapter/bun/serve-static.js +53 -0
  200. package/node_modules/hono/dist/cjs/adapter/bun/server.js +28 -0
  201. package/node_modules/hono/dist/cjs/adapter/bun/ssg.js +41 -0
  202. package/node_modules/hono/dist/cjs/adapter/bun/websocket.js +97 -0
  203. package/node_modules/hono/dist/cjs/adapter/cloudflare-pages/handler.js +92 -0
  204. package/node_modules/hono/dist/cjs/adapter/cloudflare-pages/index.js +32 -0
  205. package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/conninfo.js +32 -0
  206. package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/index.js +34 -0
  207. package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static-module.js +31 -0
  208. package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static.js +45 -0
  209. package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/utils.js +58 -0
  210. package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/websocket.js +64 -0
  211. package/node_modules/hono/dist/cjs/adapter/deno/conninfo.js +37 -0
  212. package/node_modules/hono/dist/cjs/adapter/deno/deno.d.js +1 -0
  213. package/node_modules/hono/dist/cjs/adapter/deno/index.js +39 -0
  214. package/node_modules/hono/dist/cjs/adapter/deno/serve-static.js +63 -0
  215. package/node_modules/hono/dist/cjs/adapter/deno/ssg.js +42 -0
  216. package/node_modules/hono/dist/cjs/adapter/deno/websocket.js +51 -0
  217. package/node_modules/hono/dist/cjs/adapter/lambda-edge/conninfo.js +32 -0
  218. package/node_modules/hono/dist/cjs/adapter/lambda-edge/handler.js +114 -0
  219. package/node_modules/hono/dist/cjs/adapter/lambda-edge/index.js +31 -0
  220. package/node_modules/hono/dist/cjs/adapter/netlify/handler.js +32 -0
  221. package/node_modules/hono/dist/cjs/adapter/netlify/index.js +22 -0
  222. package/node_modules/hono/dist/cjs/adapter/netlify/mod.js +28 -0
  223. package/node_modules/hono/dist/cjs/adapter/service-worker/handler.js +43 -0
  224. package/node_modules/hono/dist/cjs/adapter/service-worker/index.js +35 -0
  225. package/node_modules/hono/dist/cjs/adapter/service-worker/types.js +16 -0
  226. package/node_modules/hono/dist/cjs/adapter/vercel/conninfo.js +33 -0
  227. package/node_modules/hono/dist/cjs/adapter/vercel/handler.js +30 -0
  228. package/node_modules/hono/dist/cjs/adapter/vercel/index.js +31 -0
  229. package/node_modules/hono/dist/cjs/client/client.js +190 -0
  230. package/node_modules/hono/dist/cjs/client/fetch-result-please.js +86 -0
  231. package/node_modules/hono/dist/cjs/client/index.js +33 -0
  232. package/node_modules/hono/dist/cjs/client/types.js +16 -0
  233. package/node_modules/hono/dist/cjs/client/utils.js +106 -0
  234. package/node_modules/hono/dist/cjs/compose.js +69 -0
  235. package/node_modules/hono/dist/cjs/context.js +435 -0
  236. package/node_modules/hono/dist/cjs/helper/accepts/accepts.js +44 -0
  237. package/node_modules/hono/dist/cjs/helper/accepts/index.js +28 -0
  238. package/node_modules/hono/dist/cjs/helper/adapter/index.js +82 -0
  239. package/node_modules/hono/dist/cjs/helper/conninfo/index.js +16 -0
  240. package/node_modules/hono/dist/cjs/helper/conninfo/types.js +16 -0
  241. package/node_modules/hono/dist/cjs/helper/cookie/index.js +131 -0
  242. package/node_modules/hono/dist/cjs/helper/css/common.js +223 -0
  243. package/node_modules/hono/dist/cjs/helper/css/index.js +143 -0
  244. package/node_modules/hono/dist/cjs/helper/dev/index.js +80 -0
  245. package/node_modules/hono/dist/cjs/helper/factory/index.js +55 -0
  246. package/node_modules/hono/dist/cjs/helper/html/index.js +65 -0
  247. package/node_modules/hono/dist/cjs/helper/proxy/index.js +112 -0
  248. package/node_modules/hono/dist/cjs/helper/route/index.js +72 -0
  249. package/node_modules/hono/dist/cjs/helper/ssg/index.js +39 -0
  250. package/node_modules/hono/dist/cjs/helper/ssg/middleware.js +74 -0
  251. package/node_modules/hono/dist/cjs/helper/ssg/ssg.js +326 -0
  252. package/node_modules/hono/dist/cjs/helper/ssg/utils.js +85 -0
  253. package/node_modules/hono/dist/cjs/helper/streaming/index.js +36 -0
  254. package/node_modules/hono/dist/cjs/helper/streaming/sse.js +86 -0
  255. package/node_modules/hono/dist/cjs/helper/streaming/stream.js +57 -0
  256. package/node_modules/hono/dist/cjs/helper/streaming/text.js +35 -0
  257. package/node_modules/hono/dist/cjs/helper/streaming/utils.js +36 -0
  258. package/node_modules/hono/dist/cjs/helper/testing/index.js +34 -0
  259. package/node_modules/hono/dist/cjs/helper/websocket/index.js +82 -0
  260. package/node_modules/hono/dist/cjs/hono-base.js +401 -0
  261. package/node_modules/hono/dist/cjs/hono.js +44 -0
  262. package/node_modules/hono/dist/cjs/http-exception.js +58 -0
  263. package/node_modules/hono/dist/cjs/index.js +28 -0
  264. package/node_modules/hono/dist/cjs/jsx/base.js +375 -0
  265. package/node_modules/hono/dist/cjs/jsx/children.js +45 -0
  266. package/node_modules/hono/dist/cjs/jsx/components.js +176 -0
  267. package/node_modules/hono/dist/cjs/jsx/constants.js +43 -0
  268. package/node_modules/hono/dist/cjs/jsx/context.js +61 -0
  269. package/node_modules/hono/dist/cjs/jsx/dom/client.js +77 -0
  270. package/node_modules/hono/dist/cjs/jsx/dom/components.js +56 -0
  271. package/node_modules/hono/dist/cjs/jsx/dom/context.js +72 -0
  272. package/node_modules/hono/dist/cjs/jsx/dom/css.js +162 -0
  273. package/node_modules/hono/dist/cjs/jsx/dom/hooks/index.js +75 -0
  274. package/node_modules/hono/dist/cjs/jsx/dom/index.js +182 -0
  275. package/node_modules/hono/dist/cjs/jsx/dom/intrinsic-element/components.js +369 -0
  276. package/node_modules/hono/dist/cjs/jsx/dom/jsx-dev-runtime.js +53 -0
  277. package/node_modules/hono/dist/cjs/jsx/dom/jsx-runtime.js +33 -0
  278. package/node_modules/hono/dist/cjs/jsx/dom/render.js +622 -0
  279. package/node_modules/hono/dist/cjs/jsx/dom/server.js +68 -0
  280. package/node_modules/hono/dist/cjs/jsx/dom/utils.js +33 -0
  281. package/node_modules/hono/dist/cjs/jsx/hooks/index.js +371 -0
  282. package/node_modules/hono/dist/cjs/jsx/index.js +139 -0
  283. package/node_modules/hono/dist/cjs/jsx/intrinsic-element/common.js +40 -0
  284. package/node_modules/hono/dist/cjs/jsx/intrinsic-element/components.js +183 -0
  285. package/node_modules/hono/dist/cjs/jsx/intrinsic-elements.js +16 -0
  286. package/node_modules/hono/dist/cjs/jsx/jsx-dev-runtime.js +42 -0
  287. package/node_modules/hono/dist/cjs/jsx/jsx-runtime.js +69 -0
  288. package/node_modules/hono/dist/cjs/jsx/streaming.js +168 -0
  289. package/node_modules/hono/dist/cjs/jsx/types.js +16 -0
  290. package/node_modules/hono/dist/cjs/jsx/utils.js +51 -0
  291. package/node_modules/hono/dist/cjs/middleware/basic-auth/index.js +83 -0
  292. package/node_modules/hono/dist/cjs/middleware/bearer-auth/index.js +106 -0
  293. package/node_modules/hono/dist/cjs/middleware/body-limit/index.js +85 -0
  294. package/node_modules/hono/dist/cjs/middleware/cache/index.js +102 -0
  295. package/node_modules/hono/dist/cjs/middleware/combine/index.js +102 -0
  296. package/node_modules/hono/dist/cjs/middleware/compress/index.js +62 -0
  297. package/node_modules/hono/dist/cjs/middleware/context-storage/index.js +48 -0
  298. package/node_modules/hono/dist/cjs/middleware/cors/index.js +110 -0
  299. package/node_modules/hono/dist/cjs/middleware/csrf/index.js +78 -0
  300. package/node_modules/hono/dist/cjs/middleware/etag/digest.js +56 -0
  301. package/node_modules/hono/dist/cjs/middleware/etag/index.js +96 -0
  302. package/node_modules/hono/dist/cjs/middleware/ip-restriction/index.js +125 -0
  303. package/node_modules/hono/dist/cjs/middleware/jsx-renderer/index.js +82 -0
  304. package/node_modules/hono/dist/cjs/middleware/jwk/index.js +28 -0
  305. package/node_modules/hono/dist/cjs/middleware/jwk/jwk.js +135 -0
  306. package/node_modules/hono/dist/cjs/middleware/jwt/index.js +39 -0
  307. package/node_modules/hono/dist/cjs/middleware/jwt/jwt.js +141 -0
  308. package/node_modules/hono/dist/cjs/middleware/language/index.js +36 -0
  309. package/node_modules/hono/dist/cjs/middleware/language/language.js +211 -0
  310. package/node_modules/hono/dist/cjs/middleware/logger/index.js +73 -0
  311. package/node_modules/hono/dist/cjs/middleware/method-override/index.js +105 -0
  312. package/node_modules/hono/dist/cjs/middleware/powered-by/index.js +33 -0
  313. package/node_modules/hono/dist/cjs/middleware/pretty-json/index.js +38 -0
  314. package/node_modules/hono/dist/cjs/middleware/request-id/index.js +28 -0
  315. package/node_modules/hono/dist/cjs/middleware/request-id/request-id.js +44 -0
  316. package/node_modules/hono/dist/cjs/middleware/secure-headers/index.js +30 -0
  317. package/node_modules/hono/dist/cjs/middleware/secure-headers/permissions-policy.js +16 -0
  318. package/node_modules/hono/dist/cjs/middleware/secure-headers/secure-headers.js +190 -0
  319. package/node_modules/hono/dist/cjs/middleware/serve-static/index.js +99 -0
  320. package/node_modules/hono/dist/cjs/middleware/serve-static/path.js +41 -0
  321. package/node_modules/hono/dist/cjs/middleware/timeout/index.js +48 -0
  322. package/node_modules/hono/dist/cjs/middleware/timing/index.js +36 -0
  323. package/node_modules/hono/dist/cjs/middleware/timing/timing.js +129 -0
  324. package/node_modules/hono/dist/cjs/middleware/trailing-slash/index.js +49 -0
  325. package/node_modules/hono/dist/cjs/package.json +3 -0
  326. package/node_modules/hono/dist/cjs/preset/quick.js +39 -0
  327. package/node_modules/hono/dist/cjs/preset/tiny.js +35 -0
  328. package/node_modules/hono/dist/cjs/request/constants.js +28 -0
  329. package/node_modules/hono/dist/cjs/request.js +325 -0
  330. package/node_modules/hono/dist/cjs/router/linear-router/index.js +28 -0
  331. package/node_modules/hono/dist/cjs/router/linear-router/router.js +141 -0
  332. package/node_modules/hono/dist/cjs/router/pattern-router/index.js +28 -0
  333. package/node_modules/hono/dist/cjs/router/pattern-router/router.js +71 -0
  334. package/node_modules/hono/dist/cjs/router/reg-exp-router/index.js +35 -0
  335. package/node_modules/hono/dist/cjs/router/reg-exp-router/matcher.js +49 -0
  336. package/node_modules/hono/dist/cjs/router/reg-exp-router/node.js +135 -0
  337. package/node_modules/hono/dist/cjs/router/reg-exp-router/prepared-router.js +167 -0
  338. package/node_modules/hono/dist/cjs/router/reg-exp-router/router.js +209 -0
  339. package/node_modules/hono/dist/cjs/router/reg-exp-router/trie.js +82 -0
  340. package/node_modules/hono/dist/cjs/router/smart-router/index.js +28 -0
  341. package/node_modules/hono/dist/cjs/router/smart-router/router.js +81 -0
  342. package/node_modules/hono/dist/cjs/router/trie-router/index.js +28 -0
  343. package/node_modules/hono/dist/cjs/router/trie-router/node.js +185 -0
  344. package/node_modules/hono/dist/cjs/router/trie-router/router.js +49 -0
  345. package/node_modules/hono/dist/cjs/router.js +41 -0
  346. package/node_modules/hono/dist/cjs/types.js +29 -0
  347. package/node_modules/hono/dist/cjs/utils/accept.js +86 -0
  348. package/node_modules/hono/dist/cjs/utils/basic-auth.js +46 -0
  349. package/node_modules/hono/dist/cjs/utils/body.js +95 -0
  350. package/node_modules/hono/dist/cjs/utils/buffer.js +76 -0
  351. package/node_modules/hono/dist/cjs/utils/color.js +49 -0
  352. package/node_modules/hono/dist/cjs/utils/compress.js +28 -0
  353. package/node_modules/hono/dist/cjs/utils/concurrent.js +62 -0
  354. package/node_modules/hono/dist/cjs/utils/constants.js +28 -0
  355. package/node_modules/hono/dist/cjs/utils/cookie.js +173 -0
  356. package/node_modules/hono/dist/cjs/utils/crypto.js +70 -0
  357. package/node_modules/hono/dist/cjs/utils/encode.js +55 -0
  358. package/node_modules/hono/dist/cjs/utils/filepath.js +59 -0
  359. package/node_modules/hono/dist/cjs/utils/handler.js +37 -0
  360. package/node_modules/hono/dist/cjs/utils/headers.js +16 -0
  361. package/node_modules/hono/dist/cjs/utils/html.js +151 -0
  362. package/node_modules/hono/dist/cjs/utils/http-status.js +16 -0
  363. package/node_modules/hono/dist/cjs/utils/ipaddr.js +129 -0
  364. package/node_modules/hono/dist/cjs/utils/jwt/index.js +29 -0
  365. package/node_modules/hono/dist/cjs/utils/jwt/jwa.js +43 -0
  366. package/node_modules/hono/dist/cjs/utils/jwt/jws.js +216 -0
  367. package/node_modules/hono/dist/cjs/utils/jwt/jwt.js +210 -0
  368. package/node_modules/hono/dist/cjs/utils/jwt/types.js +162 -0
  369. package/node_modules/hono/dist/cjs/utils/jwt/utf8.js +31 -0
  370. package/node_modules/hono/dist/cjs/utils/mime.js +109 -0
  371. package/node_modules/hono/dist/cjs/utils/stream.js +102 -0
  372. package/node_modules/hono/dist/cjs/utils/types.js +16 -0
  373. package/node_modules/hono/dist/cjs/utils/url.js +253 -0
  374. package/node_modules/hono/dist/cjs/validator/index.js +28 -0
  375. package/node_modules/hono/dist/cjs/validator/utils.js +16 -0
  376. package/node_modules/hono/dist/cjs/validator/validator.js +109 -0
  377. package/node_modules/hono/dist/client/client.js +174 -0
  378. package/node_modules/hono/dist/client/fetch-result-please.js +62 -0
  379. package/node_modules/hono/dist/client/index.js +8 -0
  380. package/node_modules/hono/dist/client/types.js +0 -0
  381. package/node_modules/hono/dist/client/utils.js +76 -0
  382. package/node_modules/hono/dist/compose.js +46 -0
  383. package/node_modules/hono/dist/context.js +411 -0
  384. package/node_modules/hono/dist/helper/accepts/accepts.js +20 -0
  385. package/node_modules/hono/dist/helper/accepts/index.js +5 -0
  386. package/node_modules/hono/dist/helper/adapter/index.js +56 -0
  387. package/node_modules/hono/dist/helper/conninfo/index.js +0 -0
  388. package/node_modules/hono/dist/helper/conninfo/types.js +0 -0
  389. package/node_modules/hono/dist/helper/cookie/index.js +102 -0
  390. package/node_modules/hono/dist/helper/css/common.js +185 -0
  391. package/node_modules/hono/dist/helper/css/index.js +125 -0
  392. package/node_modules/hono/dist/helper/dev/index.js +55 -0
  393. package/node_modules/hono/dist/helper/factory/index.js +30 -0
  394. package/node_modules/hono/dist/helper/html/index.js +41 -0
  395. package/node_modules/hono/dist/helper/proxy/index.js +89 -0
  396. package/node_modules/hono/dist/helper/route/index.js +46 -0
  397. package/node_modules/hono/dist/helper/ssg/index.js +16 -0
  398. package/node_modules/hono/dist/helper/ssg/middleware.js +45 -0
  399. package/node_modules/hono/dist/helper/ssg/ssg.js +295 -0
  400. package/node_modules/hono/dist/helper/ssg/utils.js +59 -0
  401. package/node_modules/hono/dist/helper/streaming/index.js +10 -0
  402. package/node_modules/hono/dist/helper/streaming/sse.js +62 -0
  403. package/node_modules/hono/dist/helper/streaming/stream.js +34 -0
  404. package/node_modules/hono/dist/helper/streaming/text.js +12 -0
  405. package/node_modules/hono/dist/helper/streaming/utils.js +13 -0
  406. package/node_modules/hono/dist/helper/testing/index.js +11 -0
  407. package/node_modules/hono/dist/helper/websocket/index.js +57 -0
  408. package/node_modules/hono/dist/hono-base.js +378 -0
  409. package/node_modules/hono/dist/hono.js +21 -0
  410. package/node_modules/hono/dist/http-exception.js +35 -0
  411. package/node_modules/hono/dist/index.js +5 -0
  412. package/node_modules/hono/dist/jsx/base.js +331 -0
  413. package/node_modules/hono/dist/jsx/children.js +21 -0
  414. package/node_modules/hono/dist/jsx/components.js +152 -0
  415. package/node_modules/hono/dist/jsx/constants.js +15 -0
  416. package/node_modules/hono/dist/jsx/context.js +36 -0
  417. package/node_modules/hono/dist/jsx/dom/client.js +53 -0
  418. package/node_modules/hono/dist/jsx/dom/components.js +32 -0
  419. package/node_modules/hono/dist/jsx/dom/context.js +48 -0
  420. package/node_modules/hono/dist/jsx/dom/css.js +143 -0
  421. package/node_modules/hono/dist/jsx/dom/hooks/index.js +48 -0
  422. package/node_modules/hono/dist/jsx/dom/index.js +142 -0
  423. package/node_modules/hono/dist/jsx/dom/intrinsic-element/components.js +337 -0
  424. package/node_modules/hono/dist/jsx/dom/jsx-dev-runtime.js +19 -0
  425. package/node_modules/hono/dist/jsx/dom/jsx-runtime.js +8 -0
  426. package/node_modules/hono/dist/jsx/dom/render.js +597 -0
  427. package/node_modules/hono/dist/jsx/dom/server.js +33 -0
  428. package/node_modules/hono/dist/jsx/dom/utils.js +10 -0
  429. package/node_modules/hono/dist/jsx/hooks/index.js +328 -0
  430. package/node_modules/hono/dist/jsx/index.js +103 -0
  431. package/node_modules/hono/dist/jsx/intrinsic-element/common.js +15 -0
  432. package/node_modules/hono/dist/jsx/intrinsic-element/components.js +153 -0
  433. package/node_modules/hono/dist/jsx/intrinsic-elements.js +0 -0
  434. package/node_modules/hono/dist/jsx/jsx-dev-runtime.js +18 -0
  435. package/node_modules/hono/dist/jsx/jsx-runtime.js +41 -0
  436. package/node_modules/hono/dist/jsx/streaming.js +143 -0
  437. package/node_modules/hono/dist/jsx/types.js +0 -0
  438. package/node_modules/hono/dist/jsx/utils.js +27 -0
  439. package/node_modules/hono/dist/middleware/basic-auth/index.js +60 -0
  440. package/node_modules/hono/dist/middleware/bearer-auth/index.js +83 -0
  441. package/node_modules/hono/dist/middleware/body-limit/index.js +62 -0
  442. package/node_modules/hono/dist/middleware/cache/index.js +79 -0
  443. package/node_modules/hono/dist/middleware/combine/index.js +77 -0
  444. package/node_modules/hono/dist/middleware/compress/index.js +39 -0
  445. package/node_modules/hono/dist/middleware/context-storage/index.js +23 -0
  446. package/node_modules/hono/dist/middleware/cors/index.js +87 -0
  447. package/node_modules/hono/dist/middleware/csrf/index.js +55 -0
  448. package/node_modules/hono/dist/middleware/etag/digest.js +33 -0
  449. package/node_modules/hono/dist/middleware/etag/index.js +72 -0
  450. package/node_modules/hono/dist/middleware/ip-restriction/index.js +107 -0
  451. package/node_modules/hono/dist/middleware/jsx-renderer/index.js +57 -0
  452. package/node_modules/hono/dist/middleware/jwk/index.js +5 -0
  453. package/node_modules/hono/dist/middleware/jwk/jwk.js +112 -0
  454. package/node_modules/hono/dist/middleware/jwt/index.js +11 -0
  455. package/node_modules/hono/dist/middleware/jwt/jwt.js +114 -0
  456. package/node_modules/hono/dist/middleware/language/index.js +15 -0
  457. package/node_modules/hono/dist/middleware/language/language.js +179 -0
  458. package/node_modules/hono/dist/middleware/logger/index.js +44 -0
  459. package/node_modules/hono/dist/middleware/method-override/index.js +82 -0
  460. package/node_modules/hono/dist/middleware/powered-by/index.js +10 -0
  461. package/node_modules/hono/dist/middleware/pretty-json/index.js +15 -0
  462. package/node_modules/hono/dist/middleware/request-id/index.js +5 -0
  463. package/node_modules/hono/dist/middleware/request-id/request-id.js +21 -0
  464. package/node_modules/hono/dist/middleware/secure-headers/index.js +6 -0
  465. package/node_modules/hono/dist/middleware/secure-headers/permissions-policy.js +0 -0
  466. package/node_modules/hono/dist/middleware/secure-headers/secure-headers.js +166 -0
  467. package/node_modules/hono/dist/middleware/serve-static/index.js +76 -0
  468. package/node_modules/hono/dist/middleware/serve-static/path.js +18 -0
  469. package/node_modules/hono/dist/middleware/timeout/index.js +25 -0
  470. package/node_modules/hono/dist/middleware/timing/index.js +9 -0
  471. package/node_modules/hono/dist/middleware/timing/timing.js +102 -0
  472. package/node_modules/hono/dist/middleware/trailing-slash/index.js +25 -0
  473. package/node_modules/hono/dist/preset/quick.js +16 -0
  474. package/node_modules/hono/dist/preset/tiny.js +12 -0
  475. package/node_modules/hono/dist/request/constants.js +5 -0
  476. package/node_modules/hono/dist/request.js +301 -0
  477. package/node_modules/hono/dist/router/linear-router/index.js +5 -0
  478. package/node_modules/hono/dist/router/linear-router/router.js +118 -0
  479. package/node_modules/hono/dist/router/pattern-router/index.js +5 -0
  480. package/node_modules/hono/dist/router/pattern-router/router.js +48 -0
  481. package/node_modules/hono/dist/router/reg-exp-router/index.js +9 -0
  482. package/node_modules/hono/dist/router/reg-exp-router/matcher.js +25 -0
  483. package/node_modules/hono/dist/router/reg-exp-router/node.js +111 -0
  484. package/node_modules/hono/dist/router/reg-exp-router/prepared-router.js +142 -0
  485. package/node_modules/hono/dist/router/reg-exp-router/router.js +190 -0
  486. package/node_modules/hono/dist/router/reg-exp-router/trie.js +59 -0
  487. package/node_modules/hono/dist/router/smart-router/index.js +5 -0
  488. package/node_modules/hono/dist/router/smart-router/router.js +58 -0
  489. package/node_modules/hono/dist/router/trie-router/index.js +5 -0
  490. package/node_modules/hono/dist/router/trie-router/node.js +162 -0
  491. package/node_modules/hono/dist/router/trie-router/router.js +26 -0
  492. package/node_modules/hono/dist/router.js +14 -0
  493. package/node_modules/hono/dist/types/adapter/aws-lambda/handler.d.ts +184 -0
  494. package/node_modules/hono/dist/types/adapter/aws-lambda/index.d.ts +7 -0
  495. package/node_modules/hono/dist/types/adapter/aws-lambda/types.d.ts +144 -0
  496. package/node_modules/hono/dist/types/adapter/bun/conninfo.d.ts +7 -0
  497. package/node_modules/hono/dist/types/adapter/bun/index.d.ts +9 -0
  498. package/node_modules/hono/dist/types/adapter/bun/serve-static.d.ts +3 -0
  499. package/node_modules/hono/dist/types/adapter/bun/server.d.ts +24 -0
  500. package/node_modules/hono/dist/types/adapter/bun/ssg.d.ts +13 -0
  501. package/node_modules/hono/dist/types/adapter/bun/websocket.d.ts +39 -0
  502. package/node_modules/hono/dist/types/adapter/cloudflare-pages/handler.d.ts +33 -0
  503. package/node_modules/hono/dist/types/adapter/cloudflare-pages/index.d.ts +6 -0
  504. package/node_modules/hono/dist/types/adapter/cloudflare-workers/conninfo.d.ts +2 -0
  505. package/node_modules/hono/dist/types/adapter/cloudflare-workers/index.d.ts +7 -0
  506. package/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static-module.d.ts +4 -0
  507. package/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static.d.ts +16 -0
  508. package/node_modules/hono/dist/types/adapter/cloudflare-workers/utils.d.ts +5 -0
  509. package/node_modules/hono/dist/types/adapter/cloudflare-workers/websocket.d.ts +2 -0
  510. package/node_modules/hono/dist/types/adapter/deno/conninfo.d.ts +7 -0
  511. package/node_modules/hono/dist/types/adapter/deno/index.d.ts +8 -0
  512. package/node_modules/hono/dist/types/adapter/deno/serve-static.d.ts +3 -0
  513. package/node_modules/hono/dist/types/adapter/deno/ssg.d.ts +13 -0
  514. package/node_modules/hono/dist/types/adapter/deno/websocket.d.ts +2 -0
  515. package/node_modules/hono/dist/types/adapter/lambda-edge/conninfo.d.ts +2 -0
  516. package/node_modules/hono/dist/types/adapter/lambda-edge/handler.d.ts +87 -0
  517. package/node_modules/hono/dist/types/adapter/lambda-edge/index.d.ts +7 -0
  518. package/node_modules/hono/dist/types/adapter/netlify/handler.d.ts +2 -0
  519. package/node_modules/hono/dist/types/adapter/netlify/index.d.ts +5 -0
  520. package/node_modules/hono/dist/types/adapter/netlify/mod.d.ts +1 -0
  521. package/node_modules/hono/dist/types/adapter/service-worker/handler.d.ts +16 -0
  522. package/node_modules/hono/dist/types/adapter/service-worker/index.d.ts +28 -0
  523. package/node_modules/hono/dist/types/adapter/service-worker/types.d.ts +12 -0
  524. package/node_modules/hono/dist/types/adapter/vercel/conninfo.d.ts +2 -0
  525. package/node_modules/hono/dist/types/adapter/vercel/handler.d.ts +2 -0
  526. package/node_modules/hono/dist/types/adapter/vercel/index.d.ts +6 -0
  527. package/node_modules/hono/dist/types/client/client.d.ts +4 -0
  528. package/node_modules/hono/dist/types/client/fetch-result-please.d.ts +35 -0
  529. package/node_modules/hono/dist/types/client/index.d.ts +7 -0
  530. package/node_modules/hono/dist/types/client/types.d.ts +168 -0
  531. package/node_modules/hono/dist/types/client/utils.d.ts +18 -0
  532. package/node_modules/hono/dist/types/compose.d.ts +14 -0
  533. package/node_modules/hono/dist/types/context.d.ts +451 -0
  534. package/node_modules/hono/dist/types/helper/accepts/accepts.d.ts +30 -0
  535. package/node_modules/hono/dist/types/helper/accepts/index.d.ts +5 -0
  536. package/node_modules/hono/dist/types/helper/adapter/index.d.ts +12 -0
  537. package/node_modules/hono/dist/types/helper/conninfo/index.d.ts +5 -0
  538. package/node_modules/hono/dist/types/helper/conninfo/types.d.ts +36 -0
  539. package/node_modules/hono/dist/types/helper/cookie/index.d.ts +24 -0
  540. package/node_modules/hono/dist/types/helper/css/common.d.ts +42 -0
  541. package/node_modules/hono/dist/types/helper/css/index.d.ts +73 -0
  542. package/node_modules/hono/dist/types/helper/dev/index.d.ts +20 -0
  543. package/node_modules/hono/dist/types/helper/factory/index.d.ts +82 -0
  544. package/node_modules/hono/dist/types/helper/html/index.d.ts +8 -0
  545. package/node_modules/hono/dist/types/helper/proxy/index.d.ts +72 -0
  546. package/node_modules/hono/dist/types/helper/route/index.d.ts +75 -0
  547. package/node_modules/hono/dist/types/helper/ssg/index.d.ts +6 -0
  548. package/node_modules/hono/dist/types/helper/ssg/middleware.d.ts +44 -0
  549. package/node_modules/hono/dist/types/helper/ssg/ssg.d.ts +99 -0
  550. package/node_modules/hono/dist/types/helper/ssg/utils.d.ts +15 -0
  551. package/node_modules/hono/dist/types/helper/streaming/index.d.ts +8 -0
  552. package/node_modules/hono/dist/types/helper/streaming/sse.d.ts +13 -0
  553. package/node_modules/hono/dist/types/helper/streaming/stream.d.ts +3 -0
  554. package/node_modules/hono/dist/types/helper/streaming/text.d.ts +3 -0
  555. package/node_modules/hono/dist/types/helper/streaming/utils.d.ts +1 -0
  556. package/node_modules/hono/dist/types/helper/testing/index.d.ts +12 -0
  557. package/node_modules/hono/dist/types/helper/websocket/index.d.ts +69 -0
  558. package/node_modules/hono/dist/types/hono-base.d.ts +220 -0
  559. package/node_modules/hono/dist/types/hono.d.ts +19 -0
  560. package/node_modules/hono/dist/types/http-exception.d.ts +59 -0
  561. package/node_modules/hono/dist/types/index.d.ts +36 -0
  562. package/node_modules/hono/dist/types/jsx/base.d.ts +58 -0
  563. package/node_modules/hono/dist/types/jsx/children.d.ts +9 -0
  564. package/node_modules/hono/dist/types/jsx/components.d.ts +15 -0
  565. package/node_modules/hono/dist/types/jsx/constants.d.ts +6 -0
  566. package/node_modules/hono/dist/types/jsx/context.d.ts +12 -0
  567. package/node_modules/hono/dist/types/jsx/dom/client.d.ts +31 -0
  568. package/node_modules/hono/dist/types/jsx/dom/components.d.ts +10 -0
  569. package/node_modules/hono/dist/types/jsx/dom/context.d.ts +3 -0
  570. package/node_modules/hono/dist/types/jsx/dom/css.d.ts +77 -0
  571. package/node_modules/hono/dist/types/jsx/dom/hooks/index.d.ts +39 -0
  572. package/node_modules/hono/dist/types/jsx/dom/index.d.ts +88 -0
  573. package/node_modules/hono/dist/types/jsx/dom/intrinsic-element/components.d.ts +16 -0
  574. package/node_modules/hono/dist/types/jsx/dom/jsx-dev-runtime.d.ts +8 -0
  575. package/node_modules/hono/dist/types/jsx/dom/jsx-runtime.d.ts +7 -0
  576. package/node_modules/hono/dist/types/jsx/dom/render.d.ts +73 -0
  577. package/node_modules/hono/dist/types/jsx/dom/server.d.ts +106 -0
  578. package/node_modules/hono/dist/types/jsx/dom/utils.d.ts +1 -0
  579. package/node_modules/hono/dist/types/jsx/hooks/index.d.ts +45 -0
  580. package/node_modules/hono/dist/types/jsx/index.d.ts +75 -0
  581. package/node_modules/hono/dist/types/jsx/intrinsic-element/common.d.ts +3 -0
  582. package/node_modules/hono/dist/types/jsx/intrinsic-element/components.d.ts +13 -0
  583. package/node_modules/hono/dist/types/jsx/intrinsic-elements.d.ts +722 -0
  584. package/node_modules/hono/dist/types/jsx/jsx-dev-runtime.d.ts +8 -0
  585. package/node_modules/hono/dist/types/jsx/jsx-runtime.d.ts +12 -0
  586. package/node_modules/hono/dist/types/jsx/streaming.d.ts +36 -0
  587. package/node_modules/hono/dist/types/jsx/types.d.ts +35 -0
  588. package/node_modules/hono/dist/types/jsx/utils.d.ts +2 -0
  589. package/node_modules/hono/dist/types/middleware/basic-auth/index.d.ts +56 -0
  590. package/node_modules/hono/dist/types/middleware/bearer-auth/index.d.ts +91 -0
  591. package/node_modules/hono/dist/types/middleware/body-limit/index.d.ts +45 -0
  592. package/node_modules/hono/dist/types/middleware/cache/index.d.ts +41 -0
  593. package/node_modules/hono/dist/types/middleware/combine/index.d.ts +85 -0
  594. package/node_modules/hono/dist/types/middleware/compress/index.d.ts +29 -0
  595. package/node_modules/hono/dist/types/middleware/context-storage/index.d.ts +40 -0
  596. package/node_modules/hono/dist/types/middleware/cors/index.d.ts +55 -0
  597. package/node_modules/hono/dist/types/middleware/csrf/index.d.ts +78 -0
  598. package/node_modules/hono/dist/types/middleware/etag/digest.d.ts +1 -0
  599. package/node_modules/hono/dist/types/middleware/etag/index.d.ts +42 -0
  600. package/node_modules/hono/dist/types/middleware/ip-restriction/index.d.ts +31 -0
  601. package/node_modules/hono/dist/types/middleware/jsx-renderer/index.d.ts +77 -0
  602. package/node_modules/hono/dist/types/middleware/jwk/index.d.ts +1 -0
  603. package/node_modules/hono/dist/types/middleware/jwk/jwk.d.ts +54 -0
  604. package/node_modules/hono/dist/types/middleware/jwt/index.d.ts +8 -0
  605. package/node_modules/hono/dist/types/middleware/jwt/jwt.d.ts +67 -0
  606. package/node_modules/hono/dist/types/middleware/language/index.d.ts +7 -0
  607. package/node_modules/hono/dist/types/middleware/language/language.d.ts +102 -0
  608. package/node_modules/hono/dist/types/middleware/logger/index.d.ts +24 -0
  609. package/node_modules/hono/dist/types/middleware/method-override/index.d.ts +48 -0
  610. package/node_modules/hono/dist/types/middleware/powered-by/index.d.ts +29 -0
  611. package/node_modules/hono/dist/types/middleware/pretty-json/index.d.ts +42 -0
  612. package/node_modules/hono/dist/types/middleware/request-id/index.d.ts +7 -0
  613. package/node_modules/hono/dist/types/middleware/request-id/request-id.d.ts +37 -0
  614. package/node_modules/hono/dist/types/middleware/secure-headers/index.d.ts +8 -0
  615. package/node_modules/hono/dist/types/middleware/secure-headers/permissions-policy.d.ts +14 -0
  616. package/node_modules/hono/dist/types/middleware/secure-headers/secure-headers.d.ts +109 -0
  617. package/node_modules/hono/dist/types/middleware/serve-static/index.d.ts +31 -0
  618. package/node_modules/hono/dist/types/middleware/serve-static/path.d.ts +5 -0
  619. package/node_modules/hono/dist/types/middleware/timeout/index.d.ts +31 -0
  620. package/node_modules/hono/dist/types/middleware/timing/index.d.ts +7 -0
  621. package/node_modules/hono/dist/types/middleware/timing/timing.d.ts +129 -0
  622. package/node_modules/hono/dist/types/middleware/trailing-slash/index.d.ts +37 -0
  623. package/node_modules/hono/dist/types/package.json +3 -0
  624. package/node_modules/hono/dist/types/preset/quick.d.ts +10 -0
  625. package/node_modules/hono/dist/types/preset/tiny.d.ts +10 -0
  626. package/node_modules/hono/dist/types/request/constants.d.ts +1 -0
  627. package/node_modules/hono/dist/types/request.d.ts +313 -0
  628. package/node_modules/hono/dist/types/router/linear-router/index.d.ts +5 -0
  629. package/node_modules/hono/dist/types/router/linear-router/router.d.ts +7 -0
  630. package/node_modules/hono/dist/types/router/pattern-router/index.d.ts +5 -0
  631. package/node_modules/hono/dist/types/router/pattern-router/router.d.ts +7 -0
  632. package/node_modules/hono/dist/types/router/reg-exp-router/index.d.ts +6 -0
  633. package/node_modules/hono/dist/types/router/reg-exp-router/matcher.d.ts +7 -0
  634. package/node_modules/hono/dist/types/router/reg-exp-router/node.d.ts +10 -0
  635. package/node_modules/hono/dist/types/router/reg-exp-router/prepared-router.d.ts +17 -0
  636. package/node_modules/hono/dist/types/router/reg-exp-router/router.d.ts +11 -0
  637. package/node_modules/hono/dist/types/router/reg-exp-router/trie.d.ts +7 -0
  638. package/node_modules/hono/dist/types/router/smart-router/index.d.ts +5 -0
  639. package/node_modules/hono/dist/types/router/smart-router/router.d.ts +11 -0
  640. package/node_modules/hono/dist/types/router/trie-router/index.d.ts +5 -0
  641. package/node_modules/hono/dist/types/router/trie-router/node.d.ts +7 -0
  642. package/node_modules/hono/dist/types/router/trie-router/router.d.ts +8 -0
  643. package/node_modules/hono/dist/types/router.d.ts +97 -0
  644. package/node_modules/hono/dist/types/types.d.ts +573 -0
  645. package/node_modules/hono/dist/types/utils/accept.d.ts +11 -0
  646. package/node_modules/hono/dist/types/utils/basic-auth.d.ts +5 -0
  647. package/node_modules/hono/dist/types/utils/body.d.ts +79 -0
  648. package/node_modules/hono/dist/types/utils/buffer.d.ts +8 -0
  649. package/node_modules/hono/dist/types/utils/color.d.ts +21 -0
  650. package/node_modules/hono/dist/types/utils/compress.d.ts +8 -0
  651. package/node_modules/hono/dist/types/utils/concurrent.d.ts +11 -0
  652. package/node_modules/hono/dist/types/utils/constants.d.ts +4 -0
  653. package/node_modules/hono/dist/types/utils/cookie.d.ts +40 -0
  654. package/node_modules/hono/dist/types/utils/crypto.d.ts +15 -0
  655. package/node_modules/hono/dist/types/utils/encode.d.ts +8 -0
  656. package/node_modules/hono/dist/types/utils/filepath.d.ts +12 -0
  657. package/node_modules/hono/dist/types/utils/handler.d.ts +6 -0
  658. package/node_modules/hono/dist/types/utils/headers.d.ts +8 -0
  659. package/node_modules/hono/dist/types/utils/html.d.ts +44 -0
  660. package/node_modules/hono/dist/types/utils/http-status.d.ts +32 -0
  661. package/node_modules/hono/dist/types/utils/ipaddr.d.ts +40 -0
  662. package/node_modules/hono/dist/types/utils/jwt/index.d.ts +18 -0
  663. package/node_modules/hono/dist/types/utils/jwt/jwa.d.ts +23 -0
  664. package/node_modules/hono/dist/types/utils/jwt/jws.d.ts +12 -0
  665. package/node_modules/hono/dist/types/utils/jwt/jwt.d.ts +43 -0
  666. package/node_modules/hono/dist/types/utils/jwt/types.d.ts +86 -0
  667. package/node_modules/hono/dist/types/utils/jwt/utf8.d.ts +6 -0
  668. package/node_modules/hono/dist/types/utils/mime.d.ts +70 -0
  669. package/node_modules/hono/dist/types/utils/stream.d.ts +31 -0
  670. package/node_modules/hono/dist/types/utils/types.d.ts +74 -0
  671. package/node_modules/hono/dist/types/utils/url.d.ts +29 -0
  672. package/node_modules/hono/dist/types/validator/index.d.ts +7 -0
  673. package/node_modules/hono/dist/types/validator/utils.d.ts +29 -0
  674. package/node_modules/hono/dist/types/validator/validator.d.ts +16 -0
  675. package/node_modules/hono/dist/types.js +6 -0
  676. package/node_modules/hono/dist/utils/accept.js +63 -0
  677. package/node_modules/hono/dist/utils/basic-auth.js +23 -0
  678. package/node_modules/hono/dist/utils/body.js +72 -0
  679. package/node_modules/hono/dist/utils/buffer.js +50 -0
  680. package/node_modules/hono/dist/utils/color.js +25 -0
  681. package/node_modules/hono/dist/utils/compress.js +5 -0
  682. package/node_modules/hono/dist/utils/concurrent.js +39 -0
  683. package/node_modules/hono/dist/utils/constants.js +5 -0
  684. package/node_modules/hono/dist/utils/cookie.js +147 -0
  685. package/node_modules/hono/dist/utils/crypto.js +44 -0
  686. package/node_modules/hono/dist/utils/encode.js +29 -0
  687. package/node_modules/hono/dist/utils/filepath.js +35 -0
  688. package/node_modules/hono/dist/utils/handler.js +13 -0
  689. package/node_modules/hono/dist/utils/headers.js +0 -0
  690. package/node_modules/hono/dist/utils/html.js +123 -0
  691. package/node_modules/hono/dist/utils/http-status.js +0 -0
  692. package/node_modules/hono/dist/utils/ipaddr.js +101 -0
  693. package/node_modules/hono/dist/utils/jwt/index.js +6 -0
  694. package/node_modules/hono/dist/utils/jwt/jwa.js +20 -0
  695. package/node_modules/hono/dist/utils/jwt/jws.js +192 -0
  696. package/node_modules/hono/dist/utils/jwt/jwt.js +197 -0
  697. package/node_modules/hono/dist/utils/jwt/types.js +124 -0
  698. package/node_modules/hono/dist/utils/jwt/utf8.js +7 -0
  699. package/node_modules/hono/dist/utils/mime.js +84 -0
  700. package/node_modules/hono/dist/utils/stream.js +79 -0
  701. package/node_modules/hono/dist/utils/types.js +0 -0
  702. package/node_modules/hono/dist/utils/url.js +219 -0
  703. package/node_modules/hono/dist/validator/index.js +5 -0
  704. package/node_modules/hono/dist/validator/utils.js +0 -0
  705. package/node_modules/hono/dist/validator/validator.js +86 -0
  706. package/node_modules/hono/package.json +691 -0
  707. package/node_modules/{async → ip-address}/LICENSE +1 -1
  708. package/node_modules/ip-address/README.md +105 -0
  709. package/node_modules/ip-address/dist/address-error.d.ts +5 -0
  710. package/node_modules/ip-address/dist/address-error.d.ts.map +1 -0
  711. package/node_modules/ip-address/dist/address-error.js +12 -0
  712. package/node_modules/ip-address/dist/address-error.js.map +1 -0
  713. package/node_modules/ip-address/dist/common.d.ts +15 -0
  714. package/node_modules/ip-address/dist/common.d.ts.map +1 -0
  715. package/node_modules/ip-address/dist/common.js +46 -0
  716. package/node_modules/ip-address/dist/common.js.map +1 -0
  717. package/node_modules/ip-address/dist/ip-address.d.ts +8 -0
  718. package/node_modules/ip-address/dist/ip-address.d.ts.map +1 -0
  719. package/node_modules/ip-address/dist/ip-address.js +35 -0
  720. package/node_modules/ip-address/dist/ip-address.js.map +1 -0
  721. package/node_modules/ip-address/dist/ipv4.d.ts +193 -0
  722. package/node_modules/ip-address/dist/ipv4.d.ts.map +1 -0
  723. package/node_modules/ip-address/dist/ipv4.js +327 -0
  724. package/node_modules/ip-address/dist/ipv4.js.map +1 -0
  725. package/node_modules/ip-address/dist/ipv6.d.ts +428 -0
  726. package/node_modules/ip-address/dist/ipv6.d.ts.map +1 -0
  727. package/node_modules/ip-address/dist/ipv6.js +1003 -0
  728. package/node_modules/ip-address/dist/ipv6.js.map +1 -0
  729. package/node_modules/ip-address/dist/v4/constants.d.ts +5 -0
  730. package/node_modules/ip-address/dist/v4/constants.d.ts.map +1 -0
  731. package/node_modules/ip-address/dist/v4/constants.js +8 -0
  732. package/node_modules/ip-address/dist/v4/constants.js.map +1 -0
  733. package/node_modules/ip-address/dist/v6/constants.d.ts +45 -0
  734. package/node_modules/ip-address/dist/v6/constants.d.ts.map +1 -0
  735. package/node_modules/ip-address/dist/v6/constants.js +76 -0
  736. package/node_modules/ip-address/dist/v6/constants.js.map +1 -0
  737. package/node_modules/ip-address/dist/v6/helpers.d.ts +18 -0
  738. package/node_modules/ip-address/dist/v6/helpers.d.ts.map +1 -0
  739. package/node_modules/ip-address/dist/v6/helpers.js +45 -0
  740. package/node_modules/ip-address/dist/v6/helpers.js.map +1 -0
  741. package/node_modules/ip-address/dist/v6/regular-expressions.d.ts +6 -0
  742. package/node_modules/ip-address/dist/v6/regular-expressions.d.ts.map +1 -0
  743. package/node_modules/ip-address/dist/v6/regular-expressions.js +95 -0
  744. package/node_modules/ip-address/dist/v6/regular-expressions.js.map +1 -0
  745. package/node_modules/ip-address/package.json +78 -0
  746. package/node_modules/ip-address/src/address-error.ts +11 -0
  747. package/node_modules/ip-address/src/common.ts +55 -0
  748. package/node_modules/ip-address/src/ip-address.ts +7 -0
  749. package/node_modules/ip-address/src/ipv4.ts +356 -0
  750. package/node_modules/ip-address/src/ipv6.ts +1212 -0
  751. package/node_modules/ip-address/src/v4/constants.ts +7 -0
  752. package/node_modules/ip-address/src/v6/constants.ts +79 -0
  753. package/node_modules/ip-address/src/v6/helpers.ts +48 -0
  754. package/node_modules/ip-address/src/v6/regular-expressions.ts +94 -0
  755. package/node_modules/simple-git/dist/cjs/index.js +123 -179
  756. package/node_modules/simple-git/dist/cjs/index.js.map +4 -4
  757. package/node_modules/simple-git/dist/esm/index.js +114 -174
  758. package/node_modules/simple-git/dist/esm/index.js.map +4 -4
  759. package/node_modules/simple-git/dist/src/lib/api.d.ts +1 -1
  760. package/node_modules/simple-git/dist/src/lib/plugins/block-unsafe-operations-plugin.d.ts +1 -1
  761. package/node_modules/simple-git/dist/src/lib/plugins/index.d.ts +1 -1
  762. package/node_modules/simple-git/dist/src/lib/tasks/clone.d.ts +6 -2
  763. package/node_modules/simple-git/dist/src/lib/types/index.d.ts +26 -1
  764. package/node_modules/simple-git/dist/typings/index.d.ts +2 -0
  765. package/node_modules/simple-git/dist/typings/simple-git.d.ts +2 -1
  766. package/node_modules/simple-git/dist/typings/types.d.ts +0 -1
  767. package/node_modules/simple-git/package.json +9 -19
  768. package/node_modules/simple-git/readme.md +2 -1
  769. package/package.json +17 -15
  770. package/dist/claude-marketplace/core/skills/KNOWLEDGE-DEFINITION.md +0 -78
  771. package/dist/claude-marketplace/core/skills/KNOWLEDGE-DEFINITION.zh.md +0 -79
  772. package/dist/claude-marketplace/core/skills/knowledge.add/SKILL.md +0 -45
  773. package/dist/claude-marketplace/core/skills/knowledge.add/skill.zh.md +0 -47
  774. package/dist/claude-marketplace/core/skills/knowledge.collect/SKILL.zh.md +0 -185
  775. package/dist/claude-marketplace/core/skills/knowledge.delete/SKILL.md +0 -22
  776. package/dist/claude-marketplace/core/skills/knowledge.delete/skill.zh.md +0 -22
  777. package/dist/claude-marketplace/core/skills/knowledge.detect/SKILL.md +0 -115
  778. package/dist/claude-marketplace/core/skills/knowledge.detect/skill.zh.md +0 -117
  779. package/dist/claude-marketplace/core/skills/knowledge.enhance/SKILL.zh.md +0 -157
  780. package/dist/claude-marketplace/core/skills/knowledge.import/SKILL.md +0 -35
  781. package/dist/claude-marketplace/core/skills/knowledge.import/skill.zh.md +0 -35
  782. package/dist/claude-marketplace/core/skills/knowledge.init/SKILL.md +0 -38
  783. package/dist/claude-marketplace/core/skills/knowledge.init/skill.zh.md +0 -38
  784. package/dist/claude-marketplace/core/skills/knowledge.save/SKILL.md +0 -82
  785. package/dist/claude-marketplace/core/skills/knowledge.save/skill.zh.md +0 -82
  786. package/dist/claude-marketplace/core/skills/knowledge.status/SKILL.md +0 -19
  787. package/dist/claude-marketplace/core/skills/knowledge.status/skill.zh.md +0 -19
  788. package/dist/claude-marketplace/core/skills/knowledge.update/SKILL.md +0 -77
  789. package/dist/claude-marketplace/core/skills/knowledge.update/skill.zh.md +0 -77
  790. package/dist/mcp-server.js +0 -7
  791. package/node_modules/async/CHANGELOG.md +0 -351
  792. package/node_modules/async/README.md +0 -59
  793. package/node_modules/async/all.js +0 -119
  794. package/node_modules/async/allLimit.js +0 -46
  795. package/node_modules/async/allSeries.js +0 -45
  796. package/node_modules/async/any.js +0 -122
  797. package/node_modules/async/anyLimit.js +0 -47
  798. package/node_modules/async/anySeries.js +0 -46
  799. package/node_modules/async/apply.js +0 -11
  800. package/node_modules/async/applyEach.js +0 -57
  801. package/node_modules/async/applyEachSeries.js +0 -37
  802. package/node_modules/async/asyncify.js +0 -118
  803. package/node_modules/async/auto.js +0 -333
  804. package/node_modules/async/autoInject.js +0 -182
  805. package/node_modules/async/bower.json +0 -17
  806. package/node_modules/async/cargo.js +0 -63
  807. package/node_modules/async/cargoQueue.js +0 -71
  808. package/node_modules/async/compose.js +0 -55
  809. package/node_modules/async/concat.js +0 -115
  810. package/node_modules/async/concatLimit.js +0 -60
  811. package/node_modules/async/concatSeries.js +0 -41
  812. package/node_modules/async/constant.js +0 -14
  813. package/node_modules/async/detect.js +0 -96
  814. package/node_modules/async/detectLimit.js +0 -48
  815. package/node_modules/async/detectSeries.js +0 -47
  816. package/node_modules/async/dir.js +0 -43
  817. package/node_modules/async/dist/async.js +0 -6061
  818. package/node_modules/async/dist/async.min.js +0 -1
  819. package/node_modules/async/dist/async.mjs +0 -5948
  820. package/node_modules/async/doDuring.js +0 -68
  821. package/node_modules/async/doUntil.js +0 -46
  822. package/node_modules/async/doWhilst.js +0 -68
  823. package/node_modules/async/during.js +0 -78
  824. package/node_modules/async/each.js +0 -129
  825. package/node_modules/async/eachLimit.js +0 -50
  826. package/node_modules/async/eachOf.js +0 -185
  827. package/node_modules/async/eachOfLimit.js +0 -47
  828. package/node_modules/async/eachOfSeries.js +0 -39
  829. package/node_modules/async/eachSeries.js +0 -44
  830. package/node_modules/async/ensureAsync.js +0 -67
  831. package/node_modules/async/every.js +0 -119
  832. package/node_modules/async/everyLimit.js +0 -46
  833. package/node_modules/async/everySeries.js +0 -45
  834. package/node_modules/async/filter.js +0 -93
  835. package/node_modules/async/filterLimit.js +0 -45
  836. package/node_modules/async/filterSeries.js +0 -43
  837. package/node_modules/async/find.js +0 -96
  838. package/node_modules/async/findLimit.js +0 -48
  839. package/node_modules/async/findSeries.js +0 -47
  840. package/node_modules/async/flatMap.js +0 -115
  841. package/node_modules/async/flatMapLimit.js +0 -60
  842. package/node_modules/async/flatMapSeries.js +0 -41
  843. package/node_modules/async/foldl.js +0 -153
  844. package/node_modules/async/foldr.js +0 -41
  845. package/node_modules/async/forEach.js +0 -129
  846. package/node_modules/async/forEachLimit.js +0 -50
  847. package/node_modules/async/forEachOf.js +0 -185
  848. package/node_modules/async/forEachOfLimit.js +0 -47
  849. package/node_modules/async/forEachOfSeries.js +0 -39
  850. package/node_modules/async/forEachSeries.js +0 -44
  851. package/node_modules/async/forever.js +0 -68
  852. package/node_modules/async/groupBy.js +0 -108
  853. package/node_modules/async/groupByLimit.js +0 -71
  854. package/node_modules/async/groupBySeries.js +0 -36
  855. package/node_modules/async/index.js +0 -588
  856. package/node_modules/async/inject.js +0 -153
  857. package/node_modules/async/internal/DoublyLinkedList.js +0 -92
  858. package/node_modules/async/internal/Heap.js +0 -120
  859. package/node_modules/async/internal/applyEach.js +0 -29
  860. package/node_modules/async/internal/asyncEachOfLimit.js +0 -75
  861. package/node_modules/async/internal/awaitify.js +0 -28
  862. package/node_modules/async/internal/breakLoop.js +0 -10
  863. package/node_modules/async/internal/consoleFunc.js +0 -31
  864. package/node_modules/async/internal/createTester.js +0 -40
  865. package/node_modules/async/internal/eachOfLimit.js +0 -90
  866. package/node_modules/async/internal/filter.js +0 -55
  867. package/node_modules/async/internal/getIterator.js +0 -11
  868. package/node_modules/async/internal/initialParams.js +0 -14
  869. package/node_modules/async/internal/isArrayLike.js +0 -10
  870. package/node_modules/async/internal/iterator.js +0 -57
  871. package/node_modules/async/internal/map.js +0 -30
  872. package/node_modules/async/internal/once.js +0 -17
  873. package/node_modules/async/internal/onlyOnce.js +0 -15
  874. package/node_modules/async/internal/parallel.js +0 -34
  875. package/node_modules/async/internal/promiseCallback.js +0 -23
  876. package/node_modules/async/internal/queue.js +0 -294
  877. package/node_modules/async/internal/range.js +0 -14
  878. package/node_modules/async/internal/reject.js +0 -26
  879. package/node_modules/async/internal/setImmediate.js +0 -34
  880. package/node_modules/async/internal/withoutIndex.js +0 -10
  881. package/node_modules/async/internal/wrapAsync.js +0 -34
  882. package/node_modules/async/log.js +0 -41
  883. package/node_modules/async/map.js +0 -142
  884. package/node_modules/async/mapLimit.js +0 -45
  885. package/node_modules/async/mapSeries.js +0 -44
  886. package/node_modules/async/mapValues.js +0 -152
  887. package/node_modules/async/mapValuesLimit.js +0 -61
  888. package/node_modules/async/mapValuesSeries.js +0 -37
  889. package/node_modules/async/memoize.js +0 -91
  890. package/node_modules/async/nextTick.js +0 -52
  891. package/node_modules/async/package.json +0 -75
  892. package/node_modules/async/parallel.js +0 -180
  893. package/node_modules/async/parallelLimit.js +0 -41
  894. package/node_modules/async/priorityQueue.js +0 -60
  895. package/node_modules/async/queue.js +0 -24
  896. package/node_modules/async/race.js +0 -67
  897. package/node_modules/async/reduce.js +0 -153
  898. package/node_modules/async/reduceRight.js +0 -41
  899. package/node_modules/async/reflect.js +0 -78
  900. package/node_modules/async/reflectAll.js +0 -93
  901. package/node_modules/async/reject.js +0 -87
  902. package/node_modules/async/rejectLimit.js +0 -45
  903. package/node_modules/async/rejectSeries.js +0 -43
  904. package/node_modules/async/retry.js +0 -159
  905. package/node_modules/async/retryable.js +0 -77
  906. package/node_modules/async/select.js +0 -93
  907. package/node_modules/async/selectLimit.js +0 -45
  908. package/node_modules/async/selectSeries.js +0 -43
  909. package/node_modules/async/seq.js +0 -79
  910. package/node_modules/async/series.js +0 -186
  911. package/node_modules/async/setImmediate.js +0 -45
  912. package/node_modules/async/some.js +0 -122
  913. package/node_modules/async/someLimit.js +0 -47
  914. package/node_modules/async/someSeries.js +0 -46
  915. package/node_modules/async/sortBy.js +0 -190
  916. package/node_modules/async/timeout.js +0 -89
  917. package/node_modules/async/times.js +0 -50
  918. package/node_modules/async/timesLimit.js +0 -43
  919. package/node_modules/async/timesSeries.js +0 -32
  920. package/node_modules/async/transform.js +0 -173
  921. package/node_modules/async/tryEach.js +0 -78
  922. package/node_modules/async/unmemoize.js +0 -25
  923. package/node_modules/async/until.js +0 -61
  924. package/node_modules/async/waterfall.js +0 -105
  925. package/node_modules/async/whilst.js +0 -78
  926. package/node_modules/async/wrapSync.js +0 -118
  927. package/node_modules/balanced-match/.github/FUNDING.yml +0 -2
  928. package/node_modules/balanced-match/LICENSE.md +0 -21
  929. package/node_modules/balanced-match/README.md +0 -97
  930. package/node_modules/balanced-match/index.js +0 -62
  931. package/node_modules/balanced-match/package.json +0 -48
  932. package/node_modules/brace-expansion/.github/FUNDING.yml +0 -2
  933. package/node_modules/brace-expansion/README.md +0 -135
  934. package/node_modules/brace-expansion/index.js +0 -203
  935. package/node_modules/brace-expansion/package.json +0 -49
  936. package/node_modules/filelist/README.md +0 -84
  937. package/node_modules/filelist/index.d.ts +0 -110
  938. package/node_modules/filelist/index.js +0 -495
  939. package/node_modules/filelist/jakefile.js +0 -15
  940. package/node_modules/filelist/package.json +0 -28
  941. package/node_modules/jake/Makefile +0 -44
  942. package/node_modules/jake/README.md +0 -17
  943. package/node_modules/jake/bin/bash_completion.sh +0 -41
  944. package/node_modules/jake/bin/cli.js +0 -31
  945. package/node_modules/jake/jakefile.js +0 -112
  946. package/node_modules/jake/lib/api.js +0 -409
  947. package/node_modules/jake/lib/jake.js +0 -330
  948. package/node_modules/jake/lib/loader.js +0 -174
  949. package/node_modules/jake/lib/namespace.js +0 -115
  950. package/node_modules/jake/lib/package_task.js +0 -406
  951. package/node_modules/jake/lib/program.js +0 -282
  952. package/node_modules/jake/lib/publish_task.js +0 -290
  953. package/node_modules/jake/lib/rule.js +0 -311
  954. package/node_modules/jake/lib/task/directory_task.js +0 -30
  955. package/node_modules/jake/lib/task/file_task.js +0 -126
  956. package/node_modules/jake/lib/task/index.js +0 -9
  957. package/node_modules/jake/lib/task/task.js +0 -458
  958. package/node_modules/jake/lib/test_task.js +0 -270
  959. package/node_modules/jake/lib/utils/file.js +0 -286
  960. package/node_modules/jake/lib/utils/index.js +0 -297
  961. package/node_modules/jake/lib/utils/logger.js +0 -24
  962. package/node_modules/jake/package.json +0 -44
  963. package/node_modules/jake/test/integration/concurrent.js +0 -45
  964. package/node_modules/jake/test/integration/file.js +0 -228
  965. package/node_modules/jake/test/integration/file_task.js +0 -141
  966. package/node_modules/jake/test/integration/helpers.js +0 -80
  967. package/node_modules/jake/test/integration/jakefile.js +0 -352
  968. package/node_modules/jake/test/integration/jakelib/concurrent.jake.js +0 -113
  969. package/node_modules/jake/test/integration/jakelib/publish.jake.js +0 -49
  970. package/node_modules/jake/test/integration/jakelib/required_module.jake.js +0 -10
  971. package/node_modules/jake/test/integration/jakelib/rule.jake.js +0 -222
  972. package/node_modules/jake/test/integration/list_tasks.js +0 -15
  973. package/node_modules/jake/test/integration/publish_task.js +0 -27
  974. package/node_modules/jake/test/integration/rule.js +0 -217
  975. package/node_modules/jake/test/integration/selfdep.js +0 -42
  976. package/node_modules/jake/test/integration/task_base.js +0 -167
  977. package/node_modules/jake/test/unit/jakefile.js +0 -36
  978. package/node_modules/jake/test/unit/namespace.js +0 -77
  979. package/node_modules/jake/test/unit/parseargs.js +0 -169
  980. package/node_modules/jake/usage.txt +0 -17
  981. package/node_modules/minimatch/LICENSE +0 -15
  982. package/node_modules/minimatch/README.md +0 -259
  983. package/node_modules/minimatch/lib/path.js +0 -4
  984. package/node_modules/minimatch/minimatch.js +0 -944
  985. package/node_modules/minimatch/package.json +0 -35
  986. package/node_modules/picocolors/LICENSE +0 -15
  987. package/node_modules/picocolors/README.md +0 -21
  988. package/node_modules/picocolors/package.json +0 -25
  989. package/node_modules/picocolors/picocolors.browser.js +0 -4
  990. package/node_modules/picocolors/picocolors.d.ts +0 -5
  991. package/node_modules/picocolors/picocolors.js +0 -75
  992. package/node_modules/picocolors/types.d.ts +0 -51
  993. 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, stores, and retrieves development knowledge during your coding sessions.
3
+ An intelligent knowledge management system for Claude Code that automatically captures and retrieves development insights during your coding sessions.
4
4
 
5
- ## Overview
5
+ ## Why Knowledge Bank?
6
6
 
7
- Knowledge Bank is a lightweight Claude Code plugin that transforms your development workflow by:
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
- - 🧠 **Automatically capturing** valuable development insights through Claude Code's hook system
10
- - 📚 **Storing knowledge** in a local SQLite database with powerful full-text search
11
- - 🔍 **Smart retrieval** of relevant context during development sessions
12
- - 🏗️ **Intelligent organization** using multi-dimensional classification
13
- - **Zero-friction integration** with your existing Claude Code workflow
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 --registry https://registry.npmjs.org
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 Knowledge Bank plugin
105
+ # Install the plugin into Claude Code
31
106
  knowledge-bank install
32
107
 
33
- # Uninstall plugin
34
- knowledge-bank uninstall
108
+ # Verify installation
109
+ knowledge-bank config
35
110
  ```
36
111
 
37
- ### Verification
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
- # Check installation status
41
- knowledge-bank knowledge-status
119
+ # Start the web dashboard
120
+ knowledge-bank web
42
121
  ```
43
122
 
44
- ## Web Interface
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
- Knowledge Bank includes a built-in web interface for browsing and exploring your local knowledge database through a user-friendly dashboard.
129
+ ## Use Cases
47
130
 
48
- ### Starting the Web Interface
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
- ```bash
51
- # Start web server (production mode)
52
- knowledge-bank web
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
- The web interface will be available at `http://localhost:3000` (or your specified port).
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
- ### Features
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
- The web interface provides comprehensive access to your knowledge database:
147
+ ## Privacy & Security
60
148
 
61
- #### 🏠 **Dashboard Overview**
62
- - **System Statistics**: Quick overview of repositories, sessions, knowledge items, and hook events
63
- - **Repository Browser**: Navigate through your Git repositories and their associated knowledge
64
- - **Real-time Data**: Live view of your current knowledge database state
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
- #### 📊 **Knowledge Management**
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
- #### 📝 **Session Management**
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
- #### 🪝 **Hook Event Tracking**
81
- - **Event History**: Monitor all Claude Code hook events across sessions
82
- - **Event Filtering**: Filter by event name, session ID, or repository
83
- - **Event Timeline**: Chronological view of hook activations and system events
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
- #### 🗄️ **Database Browser**
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
- #### 🔍 **Advanced Search & Navigation**
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
- The web interface transforms your local knowledge database into an accessible, browsable resource that helps you leverage your accumulated development experience effectively.
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
- This project is licensed under the ISC License - see the [LICENSE](LICENSE) file for details.
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. Get started with Knowledge Bank today!
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.2-alpha.276",
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.2-alpha.276"
21
+ "version": "0.1.4-6"
22
22
  }
23
23
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "core",
3
3
  "description": "Core plugins for knowledge bank",
4
- "version": "0.1.2-alpha.276",
4
+ "version": "0.1.4-6",
5
5
  "author": {
6
6
  "name": "garbywu",
7
7
  "email": "gabrywu@apache.org"
@@ -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
  }