@wolfx/opencode-magic-context 0.28.0 → 0.30.1

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 (83) hide show
  1. package/dist/agents/magic-context-prompt.d.ts +1 -1
  2. package/dist/agents/magic-context-prompt.d.ts.map +1 -1
  3. package/dist/config/schema/magic-context.d.ts +11 -0
  4. package/dist/config/schema/magic-context.d.ts.map +1 -1
  5. package/dist/features/magic-context/dreamer/retrospective-raw-provider.d.ts +0 -1
  6. package/dist/features/magic-context/dreamer/retrospective-raw-provider.d.ts.map +1 -1
  7. package/dist/features/magic-context/dreamer/storage-task-schedule.d.ts +10 -0
  8. package/dist/features/magic-context/dreamer/storage-task-schedule.d.ts.map +1 -1
  9. package/dist/features/magic-context/dreamer/task-executor.d.ts +0 -3
  10. package/dist/features/magic-context/dreamer/task-executor.d.ts.map +1 -1
  11. package/dist/features/magic-context/dreamer/task-prompts.d.ts +1 -1
  12. package/dist/features/magic-context/dreamer/task-prompts.d.ts.map +1 -1
  13. package/dist/features/magic-context/dreamer/task-registry.d.ts +0 -1
  14. package/dist/features/magic-context/dreamer/task-registry.d.ts.map +1 -1
  15. package/dist/features/magic-context/smart-notes/sandbox-runner.d.ts.map +1 -1
  16. package/dist/features/magic-context/storage-db.d.ts +2 -21
  17. package/dist/features/magic-context/storage-db.d.ts.map +1 -1
  18. package/dist/features/magic-context/storage-schema-helpers.d.ts +30 -0
  19. package/dist/features/magic-context/storage-schema-helpers.d.ts.map +1 -0
  20. package/dist/features/magic-context/storage-tags.d.ts.map +1 -1
  21. package/dist/features/magic-context/types.d.ts +12 -1
  22. package/dist/features/magic-context/types.d.ts.map +1 -1
  23. package/dist/hooks/magic-context/apply-operations.d.ts +8 -1
  24. package/dist/hooks/magic-context/apply-operations.d.ts.map +1 -1
  25. package/dist/hooks/magic-context/channel2-delivery.d.ts +9 -5
  26. package/dist/hooks/magic-context/channel2-delivery.d.ts.map +1 -1
  27. package/dist/hooks/magic-context/edit-marker.d.ts +11 -0
  28. package/dist/hooks/magic-context/edit-marker.d.ts.map +1 -0
  29. package/dist/hooks/magic-context/event-handler.d.ts +1 -4
  30. package/dist/hooks/magic-context/event-handler.d.ts.map +1 -1
  31. package/dist/hooks/magic-context/hook.d.ts +1 -2
  32. package/dist/hooks/magic-context/hook.d.ts.map +1 -1
  33. package/dist/hooks/magic-context/read-session-formatting.d.ts.map +1 -1
  34. package/dist/hooks/magic-context/supersession-reclaim.d.ts +34 -0
  35. package/dist/hooks/magic-context/supersession-reclaim.d.ts.map +1 -0
  36. package/dist/hooks/magic-context/system-prompt-hash.d.ts +5 -0
  37. package/dist/hooks/magic-context/system-prompt-hash.d.ts.map +1 -1
  38. package/dist/hooks/magic-context/tag-messages.d.ts +8 -0
  39. package/dist/hooks/magic-context/tag-messages.d.ts.map +1 -1
  40. package/dist/hooks/magic-context/tool-drop-target.d.ts +2 -0
  41. package/dist/hooks/magic-context/tool-drop-target.d.ts.map +1 -1
  42. package/dist/hooks/magic-context/transform-postprocess-phase.d.ts +8 -0
  43. package/dist/hooks/magic-context/transform-postprocess-phase.d.ts.map +1 -1
  44. package/dist/hooks/magic-context/transform.d.ts +4 -0
  45. package/dist/hooks/magic-context/transform.d.ts.map +1 -1
  46. package/dist/index.d.ts.map +1 -1
  47. package/dist/index.js +3227 -4977
  48. package/dist/plugin/hooks/create-session-hooks.d.ts.map +1 -1
  49. package/dist/plugin/rpc-handlers.d.ts.map +1 -1
  50. package/dist/plugin/tool-registry.d.ts.map +1 -1
  51. package/dist/shared/announcement.d.ts +1 -1
  52. package/dist/shared/announcement.d.ts.map +1 -1
  53. package/dist/shared/commit-detection.d.ts +29 -0
  54. package/dist/shared/commit-detection.d.ts.map +1 -0
  55. package/dist/shared/exit-abort-registry.d.ts +25 -0
  56. package/dist/shared/exit-abort-registry.d.ts.map +1 -0
  57. package/dist/shared/harness-provider-map.d.ts +30 -0
  58. package/dist/shared/harness-provider-map.d.ts.map +1 -0
  59. package/dist/shared/tag-transcript.d.ts.map +1 -1
  60. package/dist/shared/transcript.d.ts +15 -0
  61. package/dist/shared/transcript.d.ts.map +1 -1
  62. package/dist/tools/ctx-note/tools.d.ts.map +1 -1
  63. package/dist/tui/badge-contrast.d.ts +37 -22
  64. package/dist/tui/badge-contrast.d.ts.map +1 -1
  65. package/package.json +78 -77
  66. package/src/shared/announcement.ts +2 -3
  67. package/src/shared/commit-detection.test.ts +63 -0
  68. package/src/shared/commit-detection.ts +53 -0
  69. package/src/shared/exit-abort-registry.test.ts +50 -0
  70. package/src/shared/exit-abort-registry.ts +46 -0
  71. package/src/shared/harness-provider-map.test.ts +63 -0
  72. package/src/shared/harness-provider-map.ts +56 -0
  73. package/src/shared/tag-transcript.ts +32 -0
  74. package/src/shared/transcript-opencode.ts +33 -0
  75. package/src/shared/transcript.ts +17 -0
  76. package/src/tui/badge-contrast.test.ts +39 -1
  77. package/src/tui/badge-contrast.ts +63 -25
  78. package/src/tui/slots/sidebar-content.tsx +2 -2
  79. package/dist/hooks/is-anthropic-provider.d.ts +0 -2
  80. package/dist/hooks/is-anthropic-provider.d.ts.map +0 -1
  81. package/dist/shared/live-server-client.d.ts +0 -50
  82. package/dist/shared/live-server-client.d.ts.map +0 -1
  83. package/src/shared/live-server-client.ts +0 -152

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.