@cortexkit/opencode-magic-context 0.25.0 → 0.27.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 (316) hide show
  1. package/README.md +14 -12
  2. package/dist/agents/dreamer.d.ts +19 -0
  3. package/dist/agents/dreamer.d.ts.map +1 -1
  4. package/dist/agents/hidden-agent-registrations.d.ts +67 -0
  5. package/dist/agents/hidden-agent-registrations.d.ts.map +1 -0
  6. package/dist/agents/historian.d.ts +1 -0
  7. package/dist/agents/historian.d.ts.map +1 -1
  8. package/dist/agents/permissions.d.ts +19 -42
  9. package/dist/agents/permissions.d.ts.map +1 -1
  10. package/dist/agents/smart-note-compiler.d.ts +2 -0
  11. package/dist/agents/smart-note-compiler.d.ts.map +1 -0
  12. package/dist/config/index.d.ts +1 -1
  13. package/dist/config/index.d.ts.map +1 -1
  14. package/dist/config/migrate-config-location.d.ts +89 -0
  15. package/dist/config/migrate-config-location.d.ts.map +1 -0
  16. package/dist/config/migrate-dreamer-v2.d.ts +37 -0
  17. package/dist/config/migrate-dreamer-v2.d.ts.map +1 -0
  18. package/dist/config/migrate-experimental.d.ts.map +1 -1
  19. package/dist/config/project-security.d.ts +3 -0
  20. package/dist/config/project-security.d.ts.map +1 -1
  21. package/dist/config/prune-config-leaf.d.ts.map +1 -1
  22. package/dist/config/schema/magic-context.d.ts +606 -60
  23. package/dist/config/schema/magic-context.d.ts.map +1 -1
  24. package/dist/features/magic-context/compaction-marker.d.ts +9 -3
  25. package/dist/features/magic-context/compaction-marker.d.ts.map +1 -1
  26. package/dist/features/magic-context/compartment-chunk-embedding.d.ts +18 -1
  27. package/dist/features/magic-context/compartment-chunk-embedding.d.ts.map +1 -1
  28. package/dist/features/magic-context/compartment-embedding.d.ts.map +1 -1
  29. package/dist/features/magic-context/dreamer/classify-prompt.d.ts +50 -0
  30. package/dist/features/magic-context/dreamer/classify-prompt.d.ts.map +1 -0
  31. package/dist/features/magic-context/dreamer/classify.d.ts +22 -0
  32. package/dist/features/magic-context/dreamer/classify.d.ts.map +1 -0
  33. package/dist/features/magic-context/dreamer/cron.d.ts +72 -0
  34. package/dist/features/magic-context/dreamer/cron.d.ts.map +1 -0
  35. package/dist/features/magic-context/dreamer/evaluate-smart-notes.d.ts +30 -0
  36. package/dist/features/magic-context/dreamer/evaluate-smart-notes.d.ts.map +1 -0
  37. package/dist/features/magic-context/dreamer/index.d.ts +1 -3
  38. package/dist/features/magic-context/dreamer/index.d.ts.map +1 -1
  39. package/dist/features/magic-context/dreamer/lease.d.ts +44 -6
  40. package/dist/features/magic-context/dreamer/lease.d.ts.map +1 -1
  41. package/dist/features/magic-context/dreamer/maintain-docs-protected-enforcement.d.ts +13 -0
  42. package/dist/features/magic-context/dreamer/maintain-docs-protected-enforcement.d.ts.map +1 -0
  43. package/dist/features/magic-context/dreamer/map-memories-prompt.d.ts +36 -0
  44. package/dist/features/magic-context/dreamer/map-memories-prompt.d.ts.map +1 -0
  45. package/dist/features/magic-context/dreamer/map-memories.d.ts +22 -0
  46. package/dist/features/magic-context/dreamer/map-memories.d.ts.map +1 -0
  47. package/dist/features/magic-context/dreamer/open-opencode-db.d.ts +7 -0
  48. package/dist/features/magic-context/dreamer/open-opencode-db.d.ts.map +1 -0
  49. package/dist/features/magic-context/dreamer/primer-seed.d.ts +25 -0
  50. package/dist/features/magic-context/dreamer/primer-seed.d.ts.map +1 -0
  51. package/dist/features/magic-context/dreamer/promote-primers.d.ts +21 -0
  52. package/dist/features/magic-context/dreamer/promote-primers.d.ts.map +1 -0
  53. package/dist/features/magic-context/dreamer/protected-regions.d.ts +19 -0
  54. package/dist/features/magic-context/dreamer/protected-regions.d.ts.map +1 -0
  55. package/dist/features/magic-context/dreamer/refresh-primers.d.ts +30 -0
  56. package/dist/features/magic-context/dreamer/refresh-primers.d.ts.map +1 -0
  57. package/dist/features/magic-context/dreamer/retrospective-learnings.d.ts +47 -0
  58. package/dist/features/magic-context/dreamer/retrospective-learnings.d.ts.map +1 -0
  59. package/dist/features/magic-context/dreamer/retrospective-orphan-sweep.d.ts +48 -0
  60. package/dist/features/magic-context/dreamer/retrospective-orphan-sweep.d.ts.map +1 -0
  61. package/dist/features/magic-context/dreamer/retrospective-raw-provider.d.ts +81 -0
  62. package/dist/features/magic-context/dreamer/retrospective-raw-provider.d.ts.map +1 -0
  63. package/dist/features/magic-context/dreamer/storage-dream-runs.d.ts +8 -0
  64. package/dist/features/magic-context/dreamer/storage-dream-runs.d.ts.map +1 -1
  65. package/dist/features/magic-context/dreamer/storage-task-schedule.d.ts +82 -0
  66. package/dist/features/magic-context/dreamer/storage-task-schedule.d.ts.map +1 -0
  67. package/dist/features/magic-context/dreamer/task-config.d.ts +28 -0
  68. package/dist/features/magic-context/dreamer/task-config.d.ts.map +1 -0
  69. package/dist/features/magic-context/dreamer/task-executor.d.ts +49 -0
  70. package/dist/features/magic-context/dreamer/task-executor.d.ts.map +1 -0
  71. package/dist/features/magic-context/dreamer/task-gates.d.ts +29 -0
  72. package/dist/features/magic-context/dreamer/task-gates.d.ts.map +1 -0
  73. package/dist/features/magic-context/dreamer/task-prompts.d.ts +37 -6
  74. package/dist/features/magic-context/dreamer/task-prompts.d.ts.map +1 -1
  75. package/dist/features/magic-context/dreamer/task-registry.d.ts +48 -0
  76. package/dist/features/magic-context/dreamer/task-registry.d.ts.map +1 -0
  77. package/dist/features/magic-context/dreamer/task-scheduler.d.ts +88 -0
  78. package/dist/features/magic-context/dreamer/task-scheduler.d.ts.map +1 -0
  79. package/dist/features/magic-context/dreamer/verify-gate.d.ts +43 -0
  80. package/dist/features/magic-context/dreamer/verify-gate.d.ts.map +1 -0
  81. package/dist/features/magic-context/dreamer/verify-prompt.d.ts +41 -0
  82. package/dist/features/magic-context/dreamer/verify-prompt.d.ts.map +1 -0
  83. package/dist/features/magic-context/dreamer/verify.d.ts +43 -0
  84. package/dist/features/magic-context/dreamer/verify.d.ts.map +1 -0
  85. package/dist/features/magic-context/git-commits/search-git-commits.d.ts +2 -0
  86. package/dist/features/magic-context/git-commits/search-git-commits.d.ts.map +1 -1
  87. package/dist/features/magic-context/git-commits/storage-git-commit-embeddings.d.ts +4 -4
  88. package/dist/features/magic-context/git-commits/storage-git-commit-embeddings.d.ts.map +1 -1
  89. package/dist/features/magic-context/index.d.ts +1 -0
  90. package/dist/features/magic-context/index.d.ts.map +1 -1
  91. package/dist/features/magic-context/memory/embedding-cache.d.ts +2 -2
  92. package/dist/features/magic-context/memory/embedding-cache.d.ts.map +1 -1
  93. package/dist/features/magic-context/memory/embedding-identity.d.ts.map +1 -1
  94. package/dist/features/magic-context/memory/embedding-local.d.ts +3 -3
  95. package/dist/features/magic-context/memory/embedding-local.d.ts.map +1 -1
  96. package/dist/features/magic-context/memory/embedding-openai.d.ts +20 -9
  97. package/dist/features/magic-context/memory/embedding-openai.d.ts.map +1 -1
  98. package/dist/features/magic-context/memory/embedding-provider.d.ts +8 -4
  99. package/dist/features/magic-context/memory/embedding-provider.d.ts.map +1 -1
  100. package/dist/features/magic-context/memory/embedding.d.ts +2 -2
  101. package/dist/features/magic-context/memory/embedding.d.ts.map +1 -1
  102. package/dist/features/magic-context/memory/index.d.ts +4 -1
  103. package/dist/features/magic-context/memory/index.d.ts.map +1 -1
  104. package/dist/features/magic-context/memory/memory-migration.d.ts +1 -0
  105. package/dist/features/magic-context/memory/memory-migration.d.ts.map +1 -1
  106. package/dist/features/magic-context/memory/promotion.d.ts +16 -4
  107. package/dist/features/magic-context/memory/promotion.d.ts.map +1 -1
  108. package/dist/features/magic-context/memory/relocate-memory.d.ts +58 -0
  109. package/dist/features/magic-context/memory/relocate-memory.d.ts.map +1 -0
  110. package/dist/features/magic-context/memory/storage-memory-embeddings.d.ts +2 -2
  111. package/dist/features/magic-context/memory/storage-memory-embeddings.d.ts.map +1 -1
  112. package/dist/features/magic-context/memory/storage-memory-verifications.d.ts +31 -0
  113. package/dist/features/magic-context/memory/storage-memory-verifications.d.ts.map +1 -0
  114. package/dist/features/magic-context/memory/storage-memory.d.ts +12 -1
  115. package/dist/features/magic-context/memory/storage-memory.d.ts.map +1 -1
  116. package/dist/features/magic-context/memory/types.d.ts +4 -0
  117. package/dist/features/magic-context/memory/types.d.ts.map +1 -1
  118. package/dist/features/magic-context/memory/verification-paths.d.ts +32 -0
  119. package/dist/features/magic-context/memory/verification-paths.d.ts.map +1 -0
  120. package/dist/features/magic-context/message-index.d.ts.map +1 -1
  121. package/dist/features/magic-context/migrations.d.ts.map +1 -1
  122. package/dist/features/magic-context/overflow-detection.d.ts.map +1 -1
  123. package/dist/features/magic-context/primer-clustering.d.ts +29 -0
  124. package/dist/features/magic-context/primer-clustering.d.ts.map +1 -0
  125. package/dist/features/magic-context/project-embedding-registry.d.ts +28 -4
  126. package/dist/features/magic-context/project-embedding-registry.d.ts.map +1 -1
  127. package/dist/features/magic-context/search.d.ts +12 -2
  128. package/dist/features/magic-context/search.d.ts.map +1 -1
  129. package/dist/features/magic-context/sidekick/agent.d.ts.map +1 -1
  130. package/dist/features/magic-context/smart-notes/capabilities.d.ts +31 -0
  131. package/dist/features/magic-context/smart-notes/capabilities.d.ts.map +1 -0
  132. package/dist/features/magic-context/smart-notes/compiler-prompt.d.ts +2 -0
  133. package/dist/features/magic-context/smart-notes/compiler-prompt.d.ts.map +1 -0
  134. package/dist/features/magic-context/smart-notes/compiler.d.ts +52 -0
  135. package/dist/features/magic-context/smart-notes/compiler.d.ts.map +1 -0
  136. package/dist/features/magic-context/smart-notes/index.d.ts +10 -0
  137. package/dist/features/magic-context/smart-notes/index.d.ts.map +1 -0
  138. package/dist/features/magic-context/smart-notes/runner.d.ts +18 -0
  139. package/dist/features/magic-context/smart-notes/runner.d.ts.map +1 -0
  140. package/dist/features/magic-context/smart-notes/sandbox-runner.d.ts +22 -0
  141. package/dist/features/magic-context/smart-notes/sandbox-runner.d.ts.map +1 -0
  142. package/dist/features/magic-context/smart-notes/schedule.d.ts +9 -0
  143. package/dist/features/magic-context/smart-notes/schedule.d.ts.map +1 -0
  144. package/dist/features/magic-context/smart-notes/ssrf-guard.d.ts +49 -0
  145. package/dist/features/magic-context/smart-notes/ssrf-guard.d.ts.map +1 -0
  146. package/dist/features/magic-context/smart-notes/storage.d.ts +27 -0
  147. package/dist/features/magic-context/smart-notes/storage.d.ts.map +1 -0
  148. package/dist/features/magic-context/smart-notes/types.d.ts +63 -0
  149. package/dist/features/magic-context/smart-notes/types.d.ts.map +1 -0
  150. package/dist/features/magic-context/storage-db.d.ts +6 -1
  151. package/dist/features/magic-context/storage-db.d.ts.map +1 -1
  152. package/dist/features/magic-context/storage-meta-persisted.d.ts +45 -4
  153. package/dist/features/magic-context/storage-meta-persisted.d.ts.map +1 -1
  154. package/dist/features/magic-context/storage-meta-session.d.ts.map +1 -1
  155. package/dist/features/magic-context/storage-meta-shared.d.ts +5 -1
  156. package/dist/features/magic-context/storage-meta-shared.d.ts.map +1 -1
  157. package/dist/features/magic-context/storage-meta.d.ts +1 -1
  158. package/dist/features/magic-context/storage-meta.d.ts.map +1 -1
  159. package/dist/features/magic-context/storage-notes.d.ts +15 -0
  160. package/dist/features/magic-context/storage-notes.d.ts.map +1 -1
  161. package/dist/features/magic-context/storage-primers.d.ts +85 -0
  162. package/dist/features/magic-context/storage-primers.d.ts.map +1 -0
  163. package/dist/features/magic-context/storage-tags.d.ts +68 -2
  164. package/dist/features/magic-context/storage-tags.d.ts.map +1 -1
  165. package/dist/features/magic-context/storage.d.ts +4 -3
  166. package/dist/features/magic-context/storage.d.ts.map +1 -1
  167. package/dist/features/magic-context/tagger.d.ts +7 -1
  168. package/dist/features/magic-context/tagger.d.ts.map +1 -1
  169. package/dist/features/magic-context/tool-owner-backfill.d.ts.map +1 -1
  170. package/dist/features/magic-context/transform-decision-log.d.ts +59 -0
  171. package/dist/features/magic-context/transform-decision-log.d.ts.map +1 -0
  172. package/dist/features/magic-context/types.d.ts +2 -0
  173. package/dist/features/magic-context/types.d.ts.map +1 -1
  174. package/dist/features/magic-context/user-memory/review-user-memories.d.ts +5 -0
  175. package/dist/features/magic-context/user-memory/review-user-memories.d.ts.map +1 -1
  176. package/dist/features/magic-context/user-memory/storage-user-memory.d.ts +18 -0
  177. package/dist/features/magic-context/user-memory/storage-user-memory.d.ts.map +1 -1
  178. package/dist/features/magic-context/v22-deferred-backfill.d.ts.map +1 -1
  179. package/dist/hooks/auto-update-checker/semver.d.ts +9 -0
  180. package/dist/hooks/auto-update-checker/semver.d.ts.map +1 -1
  181. package/dist/hooks/magic-context/auto-search-hint.d.ts.map +1 -1
  182. package/dist/hooks/magic-context/auto-search-runner.d.ts.map +1 -1
  183. package/dist/hooks/magic-context/command-handler.d.ts +8 -15
  184. package/dist/hooks/magic-context/command-handler.d.ts.map +1 -1
  185. package/dist/hooks/magic-context/compaction-marker-manager.d.ts.map +1 -1
  186. package/dist/hooks/magic-context/compartment-parser.d.ts +9 -0
  187. package/dist/hooks/magic-context/compartment-parser.d.ts.map +1 -1
  188. package/dist/hooks/magic-context/compartment-prompt.d.ts +4 -1
  189. package/dist/hooks/magic-context/compartment-prompt.d.ts.map +1 -1
  190. package/dist/hooks/magic-context/compartment-runner-historian.d.ts +1 -0
  191. package/dist/hooks/magic-context/compartment-runner-historian.d.ts.map +1 -1
  192. package/dist/hooks/magic-context/compartment-runner-incremental.d.ts.map +1 -1
  193. package/dist/hooks/magic-context/compartment-runner-partial-recomp.d.ts.map +1 -1
  194. package/dist/hooks/magic-context/compartment-runner-recomp.d.ts.map +1 -1
  195. package/dist/hooks/magic-context/compartment-runner-types.d.ts +8 -0
  196. package/dist/hooks/magic-context/compartment-runner-types.d.ts.map +1 -1
  197. package/dist/hooks/magic-context/compartment-runner-validation.d.ts.map +1 -1
  198. package/dist/hooks/magic-context/compartment-trigger.d.ts +1 -1
  199. package/dist/hooks/magic-context/compartment-trigger.d.ts.map +1 -1
  200. package/dist/hooks/magic-context/ctx-reduce-nudge.d.ts.map +1 -1
  201. package/dist/hooks/magic-context/derive-budgets.d.ts +5 -9
  202. package/dist/hooks/magic-context/derive-budgets.d.ts.map +1 -1
  203. package/dist/hooks/magic-context/event-handler.d.ts.map +1 -1
  204. package/dist/hooks/magic-context/event-payloads.d.ts +1 -0
  205. package/dist/hooks/magic-context/event-payloads.d.ts.map +1 -1
  206. package/dist/hooks/magic-context/event-resolvers.d.ts.map +1 -1
  207. package/dist/hooks/magic-context/heuristic-cleanup.d.ts +1 -0
  208. package/dist/hooks/magic-context/heuristic-cleanup.d.ts.map +1 -1
  209. package/dist/hooks/magic-context/historian-prompt.generated.d.ts +1 -1
  210. package/dist/hooks/magic-context/historian-prompt.generated.d.ts.map +1 -1
  211. package/dist/hooks/magic-context/historian-state-file.d.ts.map +1 -1
  212. package/dist/hooks/magic-context/hook-handlers.d.ts +2 -1
  213. package/dist/hooks/magic-context/hook-handlers.d.ts.map +1 -1
  214. package/dist/hooks/magic-context/hook.d.ts +1 -0
  215. package/dist/hooks/magic-context/hook.d.ts.map +1 -1
  216. package/dist/hooks/magic-context/inject-compartments.d.ts +0 -3
  217. package/dist/hooks/magic-context/inject-compartments.d.ts.map +1 -1
  218. package/dist/hooks/magic-context/protected-tail-boundary.d.ts +10 -0
  219. package/dist/hooks/magic-context/protected-tail-boundary.d.ts.map +1 -1
  220. package/dist/hooks/magic-context/read-session-chunk.d.ts.map +1 -1
  221. package/dist/hooks/magic-context/send-session-notification.d.ts +2 -0
  222. package/dist/hooks/magic-context/send-session-notification.d.ts.map +1 -1
  223. package/dist/hooks/magic-context/system-prompt-hash.d.ts +17 -0
  224. package/dist/hooks/magic-context/system-prompt-hash.d.ts.map +1 -1
  225. package/dist/hooks/magic-context/tag-id-fallback.d.ts.map +1 -1
  226. package/dist/hooks/magic-context/tag-messages.d.ts +10 -0
  227. package/dist/hooks/magic-context/tag-messages.d.ts.map +1 -1
  228. package/dist/hooks/magic-context/transform-compartment-phase.d.ts +32 -1
  229. package/dist/hooks/magic-context/transform-compartment-phase.d.ts.map +1 -1
  230. package/dist/hooks/magic-context/transform-postprocess-phase.d.ts +14 -5
  231. package/dist/hooks/magic-context/transform-postprocess-phase.d.ts.map +1 -1
  232. package/dist/hooks/magic-context/transform.d.ts +0 -2
  233. package/dist/hooks/magic-context/transform.d.ts.map +1 -1
  234. package/dist/index.d.ts +2 -2
  235. package/dist/index.d.ts.map +1 -1
  236. package/dist/index.js +17664 -4236
  237. package/dist/plugin/dream-timer.d.ts +17 -9
  238. package/dist/plugin/dream-timer.d.ts.map +1 -1
  239. package/dist/plugin/embedding-bootstrap-helpers.d.ts +1 -1
  240. package/dist/plugin/embedding-bootstrap-helpers.d.ts.map +1 -1
  241. package/dist/plugin/embedding-bootstrap.d.ts.map +1 -1
  242. package/dist/plugin/hooks/create-session-hooks.d.ts +211 -0
  243. package/dist/plugin/hooks/create-session-hooks.d.ts.map +1 -1
  244. package/dist/plugin/instance-disposal.d.ts +2 -0
  245. package/dist/plugin/instance-disposal.d.ts.map +1 -0
  246. package/dist/plugin/rpc-handlers.d.ts.map +1 -1
  247. package/dist/shared/announcement.d.ts +1 -1
  248. package/dist/shared/announcement.d.ts.map +1 -1
  249. package/dist/shared/data-path.d.ts +26 -7
  250. package/dist/shared/data-path.d.ts.map +1 -1
  251. package/dist/shared/index.d.ts +0 -1
  252. package/dist/shared/index.d.ts.map +1 -1
  253. package/dist/shared/model-suggestion-retry.d.ts +48 -2
  254. package/dist/shared/model-suggestion-retry.d.ts.map +1 -1
  255. package/dist/shared/redaction.d.ts +7 -0
  256. package/dist/shared/redaction.d.ts.map +1 -0
  257. package/dist/shared/resolve-fallbacks.d.ts +28 -16
  258. package/dist/shared/resolve-fallbacks.d.ts.map +1 -1
  259. package/dist/shared/rpc-server.d.ts.map +1 -1
  260. package/dist/shared/rpc-types.d.ts +2 -0
  261. package/dist/shared/rpc-types.d.ts.map +1 -1
  262. package/dist/shared/subagent-runner.d.ts +12 -3
  263. package/dist/shared/subagent-runner.d.ts.map +1 -1
  264. package/dist/shared/tui-config.d.ts.map +1 -1
  265. package/dist/tools/ctx-memory/tools.d.ts.map +1 -1
  266. package/dist/tools/ctx-memory/types.d.ts.map +1 -1
  267. package/dist/tools/ctx-memory/verification-recording.d.ts +8 -0
  268. package/dist/tools/ctx-memory/verification-recording.d.ts.map +1 -0
  269. package/dist/tools/ctx-search/tools.d.ts.map +1 -1
  270. package/dist/tools/ctx-search/types.d.ts +1 -1
  271. package/dist/tools/ctx-search/types.d.ts.map +1 -1
  272. package/dist/tui/data/context-db.d.ts +2 -0
  273. package/dist/tui/data/context-db.d.ts.map +1 -1
  274. package/package.json +3 -1
  275. package/src/shared/announcement.test.ts +20 -0
  276. package/src/shared/announcement.ts +19 -7
  277. package/src/shared/data-path.test.ts +70 -6
  278. package/src/shared/data-path.ts +50 -8
  279. package/src/shared/index.ts +0 -1
  280. package/src/shared/model-suggestion-retry.test.ts +79 -2
  281. package/src/shared/model-suggestion-retry.ts +181 -3
  282. package/src/shared/redaction.test.ts +48 -0
  283. package/src/shared/redaction.ts +240 -0
  284. package/src/shared/resolve-fallbacks.test.ts +37 -71
  285. package/src/shared/resolve-fallbacks.ts +30 -26
  286. package/src/shared/rpc-server.ts +24 -0
  287. package/src/shared/rpc-types.ts +2 -0
  288. package/src/shared/subagent-runner.ts +12 -3
  289. package/src/shared/tui-config.test.ts +63 -0
  290. package/src/shared/tui-config.ts +67 -39
  291. package/src/tui/data/context-db.ts +12 -0
  292. package/src/tui/index.tsx +87 -17
  293. package/src/tui/slots/sidebar-content.tsx +15 -7
  294. package/dist/features/magic-context/dreamer/queue.d.ts +0 -55
  295. package/dist/features/magic-context/dreamer/queue.d.ts.map +0 -1
  296. package/dist/features/magic-context/dreamer/runner.d.ts +0 -92
  297. package/dist/features/magic-context/dreamer/runner.d.ts.map +0 -1
  298. package/dist/features/magic-context/dreamer/scheduler.d.ts +0 -29
  299. package/dist/features/magic-context/dreamer/scheduler.d.ts.map +0 -1
  300. package/dist/features/magic-context/key-files/aft-availability.d.ts +0 -11
  301. package/dist/features/magic-context/key-files/aft-availability.d.ts.map +0 -1
  302. package/dist/features/magic-context/key-files/identify-key-files.d.ts +0 -84
  303. package/dist/features/magic-context/key-files/identify-key-files.d.ts.map +0 -1
  304. package/dist/features/magic-context/key-files/project-key-files.d.ts +0 -42
  305. package/dist/features/magic-context/key-files/project-key-files.d.ts.map +0 -1
  306. package/dist/features/magic-context/key-files/read-history.d.ts +0 -26
  307. package/dist/features/magic-context/key-files/read-history.d.ts.map +0 -1
  308. package/dist/features/magic-context/key-files/read-stats.d.ts +0 -18
  309. package/dist/features/magic-context/key-files/read-stats.d.ts.map +0 -1
  310. package/dist/features/magic-context/key-files/storage-key-files.d.ts +0 -20
  311. package/dist/features/magic-context/key-files/storage-key-files.d.ts.map +0 -1
  312. package/dist/hooks/magic-context/key-files-block.d.ts +0 -27
  313. package/dist/hooks/magic-context/key-files-block.d.ts.map +0 -1
  314. package/dist/shared/model-requirements.d.ts +0 -26
  315. package/dist/shared/model-requirements.d.ts.map +0 -1
  316. package/src/shared/model-requirements.ts +0 -86

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.