@cortexkit/opencode-magic-context 0.1.0

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 (340) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +274 -0
  3. package/dist/agents/builtin-agents.d.ts +8 -0
  4. package/dist/agents/builtin-agents.d.ts.map +1 -0
  5. package/dist/agents/dreamer.d.ts +2 -0
  6. package/dist/agents/dreamer.d.ts.map +1 -0
  7. package/dist/agents/historian.d.ts +2 -0
  8. package/dist/agents/historian.d.ts.map +1 -0
  9. package/dist/agents/magic-context-prompt.d.ts +14 -0
  10. package/dist/agents/magic-context-prompt.d.ts.map +1 -0
  11. package/dist/agents/sidekick.d.ts +2 -0
  12. package/dist/agents/sidekick.d.ts.map +1 -0
  13. package/dist/agents/types.d.ts +19 -0
  14. package/dist/agents/types.d.ts.map +1 -0
  15. package/dist/cli/model-fallback-requirements.d.ts +2 -0
  16. package/dist/cli/model-fallback-requirements.d.ts.map +1 -0
  17. package/dist/config/index.d.ts +13 -0
  18. package/dist/config/index.d.ts.map +1 -0
  19. package/dist/config/schema/agent-overrides.d.ts +55 -0
  20. package/dist/config/schema/agent-overrides.d.ts.map +1 -0
  21. package/dist/config/schema/magic-context.d.ts +529 -0
  22. package/dist/config/schema/magic-context.d.ts.map +1 -0
  23. package/dist/config/schema.d.ts +3 -0
  24. package/dist/config/schema.d.ts.map +1 -0
  25. package/dist/features/builtin-commands/commands.d.ts +3 -0
  26. package/dist/features/builtin-commands/commands.d.ts.map +1 -0
  27. package/dist/features/builtin-commands/types.d.ts +5 -0
  28. package/dist/features/builtin-commands/types.d.ts.map +1 -0
  29. package/dist/features/magic-context/compaction.d.ts +7 -0
  30. package/dist/features/magic-context/compaction.d.ts.map +1 -0
  31. package/dist/features/magic-context/compartment-storage.d.ts +83 -0
  32. package/dist/features/magic-context/compartment-storage.d.ts.map +1 -0
  33. package/dist/features/magic-context/defaults.d.ts +2 -0
  34. package/dist/features/magic-context/defaults.d.ts.map +1 -0
  35. package/dist/features/magic-context/dreamer/index.d.ts +7 -0
  36. package/dist/features/magic-context/dreamer/index.d.ts.map +1 -0
  37. package/dist/features/magic-context/dreamer/lease.d.ts +7 -0
  38. package/dist/features/magic-context/dreamer/lease.d.ts.map +1 -0
  39. package/dist/features/magic-context/dreamer/queue.d.ts +27 -0
  40. package/dist/features/magic-context/dreamer/queue.d.ts.map +1 -0
  41. package/dist/features/magic-context/dreamer/runner.d.ts +34 -0
  42. package/dist/features/magic-context/dreamer/runner.d.ts.map +1 -0
  43. package/dist/features/magic-context/dreamer/scheduler.d.ts +21 -0
  44. package/dist/features/magic-context/dreamer/scheduler.d.ts.map +1 -0
  45. package/dist/features/magic-context/dreamer/storage-dream-state.d.ts +5 -0
  46. package/dist/features/magic-context/dreamer/storage-dream-state.d.ts.map +1 -0
  47. package/dist/features/magic-context/dreamer/task-consolidate.d.ts +9 -0
  48. package/dist/features/magic-context/dreamer/task-consolidate.d.ts.map +1 -0
  49. package/dist/features/magic-context/dreamer/task-decay.d.ts +11 -0
  50. package/dist/features/magic-context/dreamer/task-decay.d.ts.map +1 -0
  51. package/dist/features/magic-context/dreamer/task-prompts.d.ts +19 -0
  52. package/dist/features/magic-context/dreamer/task-prompts.d.ts.map +1 -0
  53. package/dist/features/magic-context/index.d.ts +11 -0
  54. package/dist/features/magic-context/index.d.ts.map +1 -0
  55. package/dist/features/magic-context/memory/constants.d.ts +5 -0
  56. package/dist/features/magic-context/memory/constants.d.ts.map +1 -0
  57. package/dist/features/magic-context/memory/cosine-similarity.d.ts +2 -0
  58. package/dist/features/magic-context/memory/cosine-similarity.d.ts.map +1 -0
  59. package/dist/features/magic-context/memory/embedding-backfill.d.ts +8 -0
  60. package/dist/features/magic-context/memory/embedding-backfill.d.ts.map +1 -0
  61. package/dist/features/magic-context/memory/embedding-local.d.ts +14 -0
  62. package/dist/features/magic-context/memory/embedding-local.d.ts.map +1 -0
  63. package/dist/features/magic-context/memory/embedding-openai.d.ts +21 -0
  64. package/dist/features/magic-context/memory/embedding-openai.d.ts.map +1 -0
  65. package/dist/features/magic-context/memory/embedding-provider.d.ts +9 -0
  66. package/dist/features/magic-context/memory/embedding-provider.d.ts.map +1 -0
  67. package/dist/features/magic-context/memory/embedding.d.ts +11 -0
  68. package/dist/features/magic-context/memory/embedding.d.ts.map +1 -0
  69. package/dist/features/magic-context/memory/index.d.ts +11 -0
  70. package/dist/features/magic-context/memory/index.d.ts.map +1 -0
  71. package/dist/features/magic-context/memory/injection.d.ts +10 -0
  72. package/dist/features/magic-context/memory/injection.d.ts.map +1 -0
  73. package/dist/features/magic-context/memory/normalize-hash.d.ts +3 -0
  74. package/dist/features/magic-context/memory/normalize-hash.d.ts.map +1 -0
  75. package/dist/features/magic-context/memory/project-identity.d.ts +23 -0
  76. package/dist/features/magic-context/memory/project-identity.d.ts.map +1 -0
  77. package/dist/features/magic-context/memory/promotion.d.ts +13 -0
  78. package/dist/features/magic-context/memory/promotion.d.ts.map +1 -0
  79. package/dist/features/magic-context/memory/storage-memory-embeddings.d.ts +7 -0
  80. package/dist/features/magic-context/memory/storage-memory-embeddings.d.ts.map +1 -0
  81. package/dist/features/magic-context/memory/storage-memory-fts.d.ts +4 -0
  82. package/dist/features/magic-context/memory/storage-memory-fts.d.ts.map +1 -0
  83. package/dist/features/magic-context/memory/storage-memory.d.ts +19 -0
  84. package/dist/features/magic-context/memory/storage-memory.d.ts.map +1 -0
  85. package/dist/features/magic-context/memory/types.d.ts +37 -0
  86. package/dist/features/magic-context/memory/types.d.ts.map +1 -0
  87. package/dist/features/magic-context/mock-database.d.ts +3 -0
  88. package/dist/features/magic-context/mock-database.d.ts.map +1 -0
  89. package/dist/features/magic-context/range-parser.d.ts +13 -0
  90. package/dist/features/magic-context/range-parser.d.ts.map +1 -0
  91. package/dist/features/magic-context/scheduler.d.ts +14 -0
  92. package/dist/features/magic-context/scheduler.d.ts.map +1 -0
  93. package/dist/features/magic-context/sidekick/agent.d.ts +12 -0
  94. package/dist/features/magic-context/sidekick/agent.d.ts.map +1 -0
  95. package/dist/features/magic-context/sidekick/client.d.ts +12 -0
  96. package/dist/features/magic-context/sidekick/client.d.ts.map +1 -0
  97. package/dist/features/magic-context/sidekick/index.d.ts +3 -0
  98. package/dist/features/magic-context/sidekick/index.d.ts.map +1 -0
  99. package/dist/features/magic-context/sidekick/types.d.ts +48 -0
  100. package/dist/features/magic-context/sidekick/types.d.ts.map +1 -0
  101. package/dist/features/magic-context/storage-db.d.ts +8 -0
  102. package/dist/features/magic-context/storage-db.d.ts.map +1 -0
  103. package/dist/features/magic-context/storage-meta-persisted.d.ts +20 -0
  104. package/dist/features/magic-context/storage-meta-persisted.d.ts.map +1 -0
  105. package/dist/features/magic-context/storage-meta-session.d.ts +6 -0
  106. package/dist/features/magic-context/storage-meta-session.d.ts.map +1 -0
  107. package/dist/features/magic-context/storage-meta-shared.d.ts +24 -0
  108. package/dist/features/magic-context/storage-meta-shared.d.ts.map +1 -0
  109. package/dist/features/magic-context/storage-meta.d.ts +3 -0
  110. package/dist/features/magic-context/storage-meta.d.ts.map +1 -0
  111. package/dist/features/magic-context/storage-notes.d.ts +12 -0
  112. package/dist/features/magic-context/storage-notes.d.ts.map +1 -0
  113. package/dist/features/magic-context/storage-ops.d.ts +8 -0
  114. package/dist/features/magic-context/storage-ops.d.ts.map +1 -0
  115. package/dist/features/magic-context/storage-source.d.ts +5 -0
  116. package/dist/features/magic-context/storage-source.d.ts.map +1 -0
  117. package/dist/features/magic-context/storage-tags.d.ts +9 -0
  118. package/dist/features/magic-context/storage-tags.d.ts.map +1 -0
  119. package/dist/features/magic-context/storage.d.ts +8 -0
  120. package/dist/features/magic-context/storage.d.ts.map +1 -0
  121. package/dist/features/magic-context/tagger.d.ts +14 -0
  122. package/dist/features/magic-context/tagger.d.ts.map +1 -0
  123. package/dist/features/magic-context/types.d.ts +36 -0
  124. package/dist/features/magic-context/types.d.ts.map +1 -0
  125. package/dist/hooks/auto-slash-command/constants.d.ts +2 -0
  126. package/dist/hooks/auto-slash-command/constants.d.ts.map +1 -0
  127. package/dist/hooks/is-anthropic-provider.d.ts +2 -0
  128. package/dist/hooks/is-anthropic-provider.d.ts.map +1 -0
  129. package/dist/hooks/magic-context/apply-context-nudge.d.ts +5 -0
  130. package/dist/hooks/magic-context/apply-context-nudge.d.ts.map +1 -0
  131. package/dist/hooks/magic-context/apply-operations.d.ts +7 -0
  132. package/dist/hooks/magic-context/apply-operations.d.ts.map +1 -0
  133. package/dist/hooks/magic-context/command-handler.d.ts +46 -0
  134. package/dist/hooks/magic-context/command-handler.d.ts.map +1 -0
  135. package/dist/hooks/magic-context/compartment-parser.d.ts +17 -0
  136. package/dist/hooks/magic-context/compartment-parser.d.ts.map +1 -0
  137. package/dist/hooks/magic-context/compartment-prompt.d.ts +10 -0
  138. package/dist/hooks/magic-context/compartment-prompt.d.ts.map +1 -0
  139. package/dist/hooks/magic-context/compartment-runner-compressor.d.ts +16 -0
  140. package/dist/hooks/magic-context/compartment-runner-compressor.d.ts.map +1 -0
  141. package/dist/hooks/magic-context/compartment-runner-drop-queue.d.ts +3 -0
  142. package/dist/hooks/magic-context/compartment-runner-drop-queue.d.ts.map +1 -0
  143. package/dist/hooks/magic-context/compartment-runner-historian.d.ts +22 -0
  144. package/dist/hooks/magic-context/compartment-runner-historian.d.ts.map +1 -0
  145. package/dist/hooks/magic-context/compartment-runner-incremental.d.ts +3 -0
  146. package/dist/hooks/magic-context/compartment-runner-incremental.d.ts.map +1 -0
  147. package/dist/hooks/magic-context/compartment-runner-mapping.d.ts +33 -0
  148. package/dist/hooks/magic-context/compartment-runner-mapping.d.ts.map +1 -0
  149. package/dist/hooks/magic-context/compartment-runner-recomp.d.ts +3 -0
  150. package/dist/hooks/magic-context/compartment-runner-recomp.d.ts.map +1 -0
  151. package/dist/hooks/magic-context/compartment-runner-state-xml.d.ts +21 -0
  152. package/dist/hooks/magic-context/compartment-runner-state-xml.d.ts.map +1 -0
  153. package/dist/hooks/magic-context/compartment-runner-types.d.ts +47 -0
  154. package/dist/hooks/magic-context/compartment-runner-types.d.ts.map +1 -0
  155. package/dist/hooks/magic-context/compartment-runner-validation.d.ts +23 -0
  156. package/dist/hooks/magic-context/compartment-runner-validation.d.ts.map +1 -0
  157. package/dist/hooks/magic-context/compartment-runner.d.ts +6 -0
  158. package/dist/hooks/magic-context/compartment-runner.d.ts.map +1 -0
  159. package/dist/hooks/magic-context/compartment-trigger.d.ts +14 -0
  160. package/dist/hooks/magic-context/compartment-trigger.d.ts.map +1 -0
  161. package/dist/hooks/magic-context/drop-stale-reduce-calls.d.ts +4 -0
  162. package/dist/hooks/magic-context/drop-stale-reduce-calls.d.ts.map +1 -0
  163. package/dist/hooks/magic-context/event-handler.d.ts +34 -0
  164. package/dist/hooks/magic-context/event-handler.d.ts.map +1 -0
  165. package/dist/hooks/magic-context/event-payloads.d.ts +32 -0
  166. package/dist/hooks/magic-context/event-payloads.d.ts.map +1 -0
  167. package/dist/hooks/magic-context/event-resolvers.d.ts +17 -0
  168. package/dist/hooks/magic-context/event-resolvers.d.ts.map +1 -0
  169. package/dist/hooks/magic-context/execute-flush.d.ts +3 -0
  170. package/dist/hooks/magic-context/execute-flush.d.ts.map +1 -0
  171. package/dist/hooks/magic-context/execute-status.d.ts +6 -0
  172. package/dist/hooks/magic-context/execute-status.d.ts.map +1 -0
  173. package/dist/hooks/magic-context/format-bytes.d.ts +2 -0
  174. package/dist/hooks/magic-context/format-bytes.d.ts.map +1 -0
  175. package/dist/hooks/magic-context/get-error-message.d.ts +2 -0
  176. package/dist/hooks/magic-context/get-error-message.d.ts.map +1 -0
  177. package/dist/hooks/magic-context/heuristic-cleanup.d.ts +13 -0
  178. package/dist/hooks/magic-context/heuristic-cleanup.d.ts.map +1 -0
  179. package/dist/hooks/magic-context/hook-handlers.d.ts +72 -0
  180. package/dist/hooks/magic-context/hook-handlers.d.ts.map +1 -0
  181. package/dist/hooks/magic-context/hook.d.ts +66 -0
  182. package/dist/hooks/magic-context/hook.d.ts.map +1 -0
  183. package/dist/hooks/magic-context/index.d.ts +3 -0
  184. package/dist/hooks/magic-context/index.d.ts.map +1 -0
  185. package/dist/hooks/magic-context/inject-compartments.d.ts +21 -0
  186. package/dist/hooks/magic-context/inject-compartments.d.ts.map +1 -0
  187. package/dist/hooks/magic-context/note-nudger.d.ts +32 -0
  188. package/dist/hooks/magic-context/note-nudger.d.ts.map +1 -0
  189. package/dist/hooks/magic-context/nudge-bands.d.ts +6 -0
  190. package/dist/hooks/magic-context/nudge-bands.d.ts.map +1 -0
  191. package/dist/hooks/magic-context/nudge-injection.d.ts +7 -0
  192. package/dist/hooks/magic-context/nudge-injection.d.ts.map +1 -0
  193. package/dist/hooks/magic-context/nudge-placement-store.d.ts +13 -0
  194. package/dist/hooks/magic-context/nudge-placement-store.d.ts.map +1 -0
  195. package/dist/hooks/magic-context/nudger.d.ts +24 -0
  196. package/dist/hooks/magic-context/nudger.d.ts.map +1 -0
  197. package/dist/hooks/magic-context/read-session-chunk.d.ts +20 -0
  198. package/dist/hooks/magic-context/read-session-chunk.d.ts.map +1 -0
  199. package/dist/hooks/magic-context/read-session-db.d.ts +5 -0
  200. package/dist/hooks/magic-context/read-session-db.d.ts.map +1 -0
  201. package/dist/hooks/magic-context/read-session-formatting.d.ts +25 -0
  202. package/dist/hooks/magic-context/read-session-formatting.d.ts.map +1 -0
  203. package/dist/hooks/magic-context/read-session-raw.d.ts +9 -0
  204. package/dist/hooks/magic-context/read-session-raw.d.ts.map +1 -0
  205. package/dist/hooks/magic-context/send-session-notification.d.ts +13 -0
  206. package/dist/hooks/magic-context/send-session-notification.d.ts.map +1 -0
  207. package/dist/hooks/magic-context/strip-content.d.ts +21 -0
  208. package/dist/hooks/magic-context/strip-content.d.ts.map +1 -0
  209. package/dist/hooks/magic-context/strip-structural-noise.d.ts +3 -0
  210. package/dist/hooks/magic-context/strip-structural-noise.d.ts.map +1 -0
  211. package/dist/hooks/magic-context/system-injection-stripper.d.ts +2 -0
  212. package/dist/hooks/magic-context/system-injection-stripper.d.ts.map +1 -0
  213. package/dist/hooks/magic-context/system-prompt-hash.d.ts +25 -0
  214. package/dist/hooks/magic-context/system-prompt-hash.d.ts.map +1 -0
  215. package/dist/hooks/magic-context/tag-content-primitives.d.ts +6 -0
  216. package/dist/hooks/magic-context/tag-content-primitives.d.ts.map +1 -0
  217. package/dist/hooks/magic-context/tag-id-fallback.d.ts +9 -0
  218. package/dist/hooks/magic-context/tag-id-fallback.d.ts.map +1 -0
  219. package/dist/hooks/magic-context/tag-messages.d.ts +35 -0
  220. package/dist/hooks/magic-context/tag-messages.d.ts.map +1 -0
  221. package/dist/hooks/magic-context/tag-part-guards.d.ts +23 -0
  222. package/dist/hooks/magic-context/tag-part-guards.d.ts.map +1 -0
  223. package/dist/hooks/magic-context/text-complete.d.ts +8 -0
  224. package/dist/hooks/magic-context/text-complete.d.ts.map +1 -0
  225. package/dist/hooks/magic-context/tool-drop-target.d.ts +32 -0
  226. package/dist/hooks/magic-context/tool-drop-target.d.ts.map +1 -0
  227. package/dist/hooks/magic-context/transform-compartment-phase.d.ts +36 -0
  228. package/dist/hooks/magic-context/transform-compartment-phase.d.ts.map +1 -0
  229. package/dist/hooks/magic-context/transform-context-state.d.ts +9 -0
  230. package/dist/hooks/magic-context/transform-context-state.d.ts.map +1 -0
  231. package/dist/hooks/magic-context/transform-message-helpers.d.ts +7 -0
  232. package/dist/hooks/magic-context/transform-message-helpers.d.ts.map +1 -0
  233. package/dist/hooks/magic-context/transform-operations.d.ts +5 -0
  234. package/dist/hooks/magic-context/transform-operations.d.ts.map +1 -0
  235. package/dist/hooks/magic-context/transform-postprocess-phase.d.ts +53 -0
  236. package/dist/hooks/magic-context/transform-postprocess-phase.d.ts.map +1 -0
  237. package/dist/hooks/magic-context/transform-stage-logger.d.ts +2 -0
  238. package/dist/hooks/magic-context/transform-stage-logger.d.ts.map +1 -0
  239. package/dist/hooks/magic-context/transform.d.ts +39 -0
  240. package/dist/hooks/magic-context/transform.d.ts.map +1 -0
  241. package/dist/index.d.ts +4 -0
  242. package/dist/index.d.ts.map +1 -0
  243. package/dist/index.js +22571 -0
  244. package/dist/plugin/event.d.ts +10 -0
  245. package/dist/plugin/event.d.ts.map +1 -0
  246. package/dist/plugin/hooks/create-core-hooks.d.ts +37 -0
  247. package/dist/plugin/hooks/create-core-hooks.d.ts.map +1 -0
  248. package/dist/plugin/hooks/create-session-hooks.d.ts +37 -0
  249. package/dist/plugin/hooks/create-session-hooks.d.ts.map +1 -0
  250. package/dist/plugin/hooks/create-tag-content-resolver.d.ts +7 -0
  251. package/dist/plugin/hooks/create-tag-content-resolver.d.ts.map +1 -0
  252. package/dist/plugin/messages-transform.d.ts +14 -0
  253. package/dist/plugin/messages-transform.d.ts.map +1 -0
  254. package/dist/plugin/normalize-tool-arg-schemas.d.ts +7 -0
  255. package/dist/plugin/normalize-tool-arg-schemas.d.ts.map +1 -0
  256. package/dist/plugin/tool-registry.d.ts +8 -0
  257. package/dist/plugin/tool-registry.d.ts.map +1 -0
  258. package/dist/plugin/types.d.ts +3 -0
  259. package/dist/plugin/types.d.ts.map +1 -0
  260. package/dist/shared/agent-display-names.d.ts +2 -0
  261. package/dist/shared/agent-display-names.d.ts.map +1 -0
  262. package/dist/shared/assistant-message-extractor.d.ts +2 -0
  263. package/dist/shared/assistant-message-extractor.d.ts.map +1 -0
  264. package/dist/shared/data-path.d.ts +3 -0
  265. package/dist/shared/data-path.d.ts.map +1 -0
  266. package/dist/shared/error-message.d.ts +2 -0
  267. package/dist/shared/error-message.d.ts.map +1 -0
  268. package/dist/shared/format-bytes.d.ts +2 -0
  269. package/dist/shared/format-bytes.d.ts.map +1 -0
  270. package/dist/shared/index.d.ts +5 -0
  271. package/dist/shared/index.d.ts.map +1 -0
  272. package/dist/shared/internal-initiator-marker.d.ts +2 -0
  273. package/dist/shared/internal-initiator-marker.d.ts.map +1 -0
  274. package/dist/shared/jsonc-parser.d.ts +16 -0
  275. package/dist/shared/jsonc-parser.d.ts.map +1 -0
  276. package/dist/shared/logger.d.ts +4 -0
  277. package/dist/shared/logger.d.ts.map +1 -0
  278. package/dist/shared/model-requirements.d.ts +26 -0
  279. package/dist/shared/model-requirements.d.ts.map +1 -0
  280. package/dist/shared/model-suggestion-retry.d.ts +31 -0
  281. package/dist/shared/model-suggestion-retry.d.ts.map +1 -0
  282. package/dist/shared/normalize-sdk-response.d.ts +5 -0
  283. package/dist/shared/normalize-sdk-response.d.ts.map +1 -0
  284. package/dist/shared/opencode-compaction-detector.d.ts +2 -0
  285. package/dist/shared/opencode-compaction-detector.d.ts.map +1 -0
  286. package/dist/shared/opencode-config-dir-types.d.ts +14 -0
  287. package/dist/shared/opencode-config-dir-types.d.ts.map +1 -0
  288. package/dist/shared/opencode-config-dir.d.ts +5 -0
  289. package/dist/shared/opencode-config-dir.d.ts.map +1 -0
  290. package/dist/shared/permission-compat.d.ts +6 -0
  291. package/dist/shared/permission-compat.d.ts.map +1 -0
  292. package/dist/shared/record-type-guard.d.ts +2 -0
  293. package/dist/shared/record-type-guard.d.ts.map +1 -0
  294. package/dist/shared/system-directive.d.ts +3 -0
  295. package/dist/shared/system-directive.d.ts.map +1 -0
  296. package/dist/tools/ctx-expand/constants.d.ts +3 -0
  297. package/dist/tools/ctx-expand/constants.d.ts.map +1 -0
  298. package/dist/tools/ctx-expand/index.d.ts +2 -0
  299. package/dist/tools/ctx-expand/index.d.ts.map +1 -0
  300. package/dist/tools/ctx-expand/tools.d.ts +3 -0
  301. package/dist/tools/ctx-expand/tools.d.ts.map +1 -0
  302. package/dist/tools/ctx-expand/types.d.ts +5 -0
  303. package/dist/tools/ctx-expand/types.d.ts.map +1 -0
  304. package/dist/tools/ctx-memory/constants.d.ts +4 -0
  305. package/dist/tools/ctx-memory/constants.d.ts.map +1 -0
  306. package/dist/tools/ctx-memory/index.d.ts +4 -0
  307. package/dist/tools/ctx-memory/index.d.ts.map +1 -0
  308. package/dist/tools/ctx-memory/tools.d.ts +4 -0
  309. package/dist/tools/ctx-memory/tools.d.ts.map +1 -0
  310. package/dist/tools/ctx-memory/types.d.ts +30 -0
  311. package/dist/tools/ctx-memory/types.d.ts.map +1 -0
  312. package/dist/tools/ctx-note/constants.d.ts +2 -0
  313. package/dist/tools/ctx-note/constants.d.ts.map +1 -0
  314. package/dist/tools/ctx-note/index.d.ts +4 -0
  315. package/dist/tools/ctx-note/index.d.ts.map +1 -0
  316. package/dist/tools/ctx-note/tools.d.ts +7 -0
  317. package/dist/tools/ctx-note/tools.d.ts.map +1 -0
  318. package/dist/tools/ctx-note/types.d.ts +5 -0
  319. package/dist/tools/ctx-note/types.d.ts.map +1 -0
  320. package/dist/tools/ctx-recall/constants.d.ts +4 -0
  321. package/dist/tools/ctx-recall/constants.d.ts.map +1 -0
  322. package/dist/tools/ctx-recall/index.d.ts +4 -0
  323. package/dist/tools/ctx-recall/index.d.ts.map +1 -0
  324. package/dist/tools/ctx-recall/tools.d.ts +4 -0
  325. package/dist/tools/ctx-recall/tools.d.ts.map +1 -0
  326. package/dist/tools/ctx-recall/types.d.ts +20 -0
  327. package/dist/tools/ctx-recall/types.d.ts.map +1 -0
  328. package/dist/tools/ctx-reduce/constants.d.ts +2 -0
  329. package/dist/tools/ctx-reduce/constants.d.ts.map +1 -0
  330. package/dist/tools/ctx-reduce/index.d.ts +4 -0
  331. package/dist/tools/ctx-reduce/index.d.ts.map +1 -0
  332. package/dist/tools/ctx-reduce/tools.d.ts +9 -0
  333. package/dist/tools/ctx-reduce/tools.d.ts.map +1 -0
  334. package/dist/tools/ctx-reduce/types.d.ts +4 -0
  335. package/dist/tools/ctx-reduce/types.d.ts.map +1 -0
  336. package/dist/tools/index.d.ts +5 -0
  337. package/dist/tools/index.d.ts.map +1 -0
  338. package/dist/tools/look-at/assistant-message-extractor.d.ts +2 -0
  339. package/dist/tools/look-at/assistant-message-extractor.d.ts.map +1 -0
  340. package/package.json +51 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.