@noorm/marie-cli 0.1.16 → 0.1.18

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 (158) hide show
  1. package/dist/cli-new/components/AgenticSpinner.js +28 -0
  2. package/dist/cli-new/components/AgenticSpinner.js.map +1 -0
  3. package/dist/cli-new/components/App.js +3 -1
  4. package/dist/cli-new/components/App.js.map +1 -1
  5. package/dist/cli-new/components/ApprovalDialog.js +1 -1
  6. package/dist/cli-new/components/ApprovalDialog.js.map +1 -1
  7. package/dist/cli-new/components/Banner.js +16 -6
  8. package/dist/cli-new/components/Banner.js.map +1 -1
  9. package/dist/cli-new/components/Header.js +2 -2
  10. package/dist/cli-new/components/Header.js.map +1 -1
  11. package/dist/cli-new/components/InputArea.js +29 -23
  12. package/dist/cli-new/components/InputArea.js.map +1 -1
  13. package/dist/cli-new/components/MessageBubble.js +5 -4
  14. package/dist/cli-new/components/MessageBubble.js.map +1 -1
  15. package/dist/cli-new/components/SessionSwitcher.js +3 -3
  16. package/dist/cli-new/components/SessionSwitcher.js.map +1 -1
  17. package/dist/cli-new/components/SetupWizard.js +11 -11
  18. package/dist/cli-new/components/SetupWizard.js.map +1 -1
  19. package/dist/cli-new/components/ToolCallDisplay.js +1 -1
  20. package/dist/cli-new/components/ToolCallDisplay.js.map +1 -1
  21. package/dist/cli-new/hooks/useUpdateCheck.js +17 -0
  22. package/dist/cli-new/hooks/useUpdateCheck.js.map +1 -0
  23. package/dist/cli-new/styles/theme.js +17 -17
  24. package/dist/cli-new/styles/theme.js.map +1 -1
  25. package/dist/extension.cjs +868 -340
  26. package/dist/extension.js +15 -0
  27. package/dist/extension.js.map +1 -1
  28. package/dist/monolith/adapters/CliMarieAdapter.js +7 -7
  29. package/dist/monolith/adapters/CliMarieAdapter.js.map +1 -1
  30. package/dist/monolith/adapters/VscodeMarieAdapter.js +9 -9
  31. package/dist/monolith/adapters/VscodeMarieAdapter.js.map +1 -1
  32. package/dist/monolith/cli/MarieToolDefinitionsCLI.js +5 -2
  33. package/dist/monolith/cli/MarieToolDefinitionsCLI.js.map +1 -1
  34. package/dist/monolith/cli/index.js +6 -0
  35. package/dist/monolith/cli/index.js.map +1 -1
  36. package/dist/monolith/cli/storage.js +79 -60
  37. package/dist/monolith/cli/storage.js.map +1 -1
  38. package/dist/monolith/infrastructure/ai/context/ContextArchiveService.js +52 -37
  39. package/dist/monolith/infrastructure/ai/context/ContextArchiveService.js.map +1 -1
  40. package/dist/monolith/infrastructure/ai/context/ContextManager.js +35 -2
  41. package/dist/monolith/infrastructure/ai/context/ContextManager.js.map +1 -1
  42. package/dist/monolith/infrastructure/ai/core/MarieEngine.js +513 -3
  43. package/dist/monolith/infrastructure/ai/core/MarieEngine.js.map +1 -1
  44. package/dist/monolith/infrastructure/ai/core/MarieLockManager.js +25 -5
  45. package/dist/monolith/infrastructure/ai/core/MarieLockManager.js.map +1 -1
  46. package/dist/monolith/infrastructure/ai/core/MarieProgressTracker.js +29 -0
  47. package/dist/monolith/infrastructure/ai/core/MarieProgressTracker.js.map +1 -1
  48. package/dist/monolith/infrastructure/ai/core/MariePulseService.js +41 -7
  49. package/dist/monolith/infrastructure/ai/core/MariePulseService.js.map +1 -1
  50. package/dist/monolith/infrastructure/ai/core/MarieSanitizer.js +97 -8
  51. package/dist/monolith/infrastructure/ai/core/MarieSanitizer.js.map +1 -1
  52. package/dist/monolith/infrastructure/ai/core/MarieSemaphore.js +47 -4
  53. package/dist/monolith/infrastructure/ai/core/MarieSemaphore.js.map +1 -1
  54. package/dist/monolith/infrastructure/ai/core/MarieSession.js +95 -15
  55. package/dist/monolith/infrastructure/ai/core/MarieSession.js.map +1 -1
  56. package/dist/monolith/infrastructure/ai/core/MarieStabilityMonitor.js +21 -0
  57. package/dist/monolith/infrastructure/ai/core/MarieStabilityMonitor.js.map +1 -1
  58. package/dist/monolith/infrastructure/ai/core/MarieToolMender.js +12 -0
  59. package/dist/monolith/infrastructure/ai/core/MarieToolMender.js.map +1 -1
  60. package/dist/monolith/infrastructure/ai/core/MarieToolProcessor.js +155 -14
  61. package/dist/monolith/infrastructure/ai/core/MarieToolProcessor.js.map +1 -1
  62. package/dist/monolith/infrastructure/ai/core/ReasoningBudget.js +23 -12
  63. package/dist/monolith/infrastructure/ai/core/ReasoningBudget.js.map +1 -1
  64. package/dist/monolith/infrastructure/ai/providers/AnthropicProvider.js +6 -0
  65. package/dist/monolith/infrastructure/ai/providers/AnthropicProvider.js.map +1 -1
  66. package/dist/monolith/infrastructure/ai/providers/CerebrasProvider.js +6 -0
  67. package/dist/monolith/infrastructure/ai/providers/CerebrasProvider.js.map +1 -1
  68. package/dist/monolith/infrastructure/ai/providers/OpenRouterProvider.js +22 -0
  69. package/dist/monolith/infrastructure/ai/providers/OpenRouterProvider.js.map +1 -1
  70. package/dist/monolith/infrastructure/config/ConfigService.js +145 -1
  71. package/dist/monolith/infrastructure/config/ConfigService.js.map +1 -1
  72. package/dist/monolith/infrastructure/joy/CognitiveRituals.js +169 -0
  73. package/dist/monolith/infrastructure/joy/CognitiveRituals.js.map +1 -0
  74. package/dist/monolith/infrastructure/joy/JoyTools.js +15 -2
  75. package/dist/monolith/infrastructure/joy/JoyTools.js.map +1 -1
  76. package/dist/monolith/infrastructure/persistence/NoormmeAutonomics.js +118 -0
  77. package/dist/monolith/infrastructure/persistence/NoormmeAutonomics.js.map +1 -0
  78. package/dist/monolith/infrastructure/persistence/NoormmeEngine.js +78 -0
  79. package/dist/monolith/infrastructure/persistence/NoormmeEngine.js.map +1 -0
  80. package/dist/monolith/infrastructure/persistence/NoormmeSchema.js +150 -0
  81. package/dist/monolith/infrastructure/persistence/NoormmeSchema.js.map +1 -0
  82. package/dist/monolith/infrastructure/persistence/NoormmeSeeder.js +81 -0
  83. package/dist/monolith/infrastructure/persistence/NoormmeSeeder.js.map +1 -0
  84. package/dist/monolith/infrastructure/persistence/NoormmeTools.js +324 -0
  85. package/dist/monolith/infrastructure/persistence/NoormmeTools.js.map +1 -0
  86. package/dist/monolith/infrastructure/tools/MarieToolDefinitions.js +29 -1577
  87. package/dist/monolith/infrastructure/tools/MarieToolDefinitions.js.map +1 -1
  88. package/dist/monolith/infrastructure/tools/definitions/AnalysisTools.js +346 -0
  89. package/dist/monolith/infrastructure/tools/definitions/AnalysisTools.js.map +1 -0
  90. package/dist/monolith/infrastructure/tools/definitions/AutomationTools.js +289 -0
  91. package/dist/monolith/infrastructure/tools/definitions/AutomationTools.js.map +1 -0
  92. package/dist/monolith/infrastructure/tools/definitions/ContextTools.js +43 -0
  93. package/dist/monolith/infrastructure/tools/definitions/ContextTools.js.map +1 -0
  94. package/dist/monolith/infrastructure/tools/definitions/CoreTools.js +41 -0
  95. package/dist/monolith/infrastructure/tools/definitions/CoreTools.js.map +1 -0
  96. package/dist/monolith/infrastructure/tools/definitions/DiagnosticTools.js +185 -0
  97. package/dist/monolith/infrastructure/tools/definitions/DiagnosticTools.js.map +1 -0
  98. package/dist/monolith/infrastructure/tools/definitions/NavigationTools.js +348 -0
  99. package/dist/monolith/infrastructure/tools/definitions/NavigationTools.js.map +1 -0
  100. package/dist/monolith/infrastructure/tools/definitions/PlanningTools.js +297 -0
  101. package/dist/monolith/infrastructure/tools/definitions/PlanningTools.js.map +1 -0
  102. package/dist/monolith/plumbing/analysis/MarieSentinelService.js +22 -3
  103. package/dist/monolith/plumbing/analysis/MarieSentinelService.js.map +1 -1
  104. package/dist/monolith/plumbing/terminal/TerminalService.js +5 -0
  105. package/dist/monolith/plumbing/terminal/TerminalService.js.map +1 -1
  106. package/dist/monolith/plumbing/utils/EnvironmentUtils.js +1 -1
  107. package/dist/monolith/plumbing/utils/EnvironmentUtils.js.map +1 -1
  108. package/dist/monolith/plumbing/utils/MutexUtils.js.map +1 -1
  109. package/dist/monolith/runtime/MarieRuntime.js +86 -4
  110. package/dist/monolith/runtime/MarieRuntime.js.map +1 -1
  111. package/dist/monolith/runtime/RuntimeAdapterBase.js.map +1 -1
  112. package/dist/monolith/services/JoyService.js +1 -1
  113. package/dist/monolith/services/JoyService.js.map +1 -1
  114. package/dist/monolith/services/MarieGhostService.js +12 -0
  115. package/dist/monolith/services/MarieGhostService.js.map +1 -1
  116. package/dist/monolith/services/UpdateService.js +61 -0
  117. package/dist/monolith/services/UpdateService.js.map +1 -0
  118. package/dist/prompts.js +5 -0
  119. package/dist/prompts.js.map +1 -1
  120. package/dist/webview-ui/main.js +23 -23
  121. package/package.json +2 -1
  122. package/test-mind-p6.sqlite +0 -0
  123. package/test-mind-p6.sqlite-shm +0 -0
  124. package/test-mind-p6.sqlite-wal +0 -0
  125. package/dist/monolith/domain/joy/JoyTools.js +0 -535
  126. package/dist/monolith/domain/joy/JoyTools.js.map +0 -1
  127. package/dist/monolith/infrastructure/ai/agents/MarieYOLO.js +0 -207
  128. package/dist/monolith/infrastructure/ai/agents/MarieYOLO.js.map +0 -1
  129. package/dist/monolith/infrastructure/ai/core/MarieYOLOTypes.js +0 -2
  130. package/dist/monolith/infrastructure/ai/core/MarieYOLOTypes.js.map +0 -1
  131. package/dist/test_agent_stream_control_plane.js +0 -170
  132. package/dist/test_agent_stream_control_plane.js.map +0 -1
  133. package/dist/test_strategy_integration.js +0 -114
  134. package/dist/test_strategy_integration.js.map +0 -1
  135. package/dist/test_streaming_fragility.js +0 -191
  136. package/dist/test_streaming_fragility.js.map +0 -1
  137. package/dist/webview-ui/App.js +0 -16
  138. package/dist/webview-ui/App.js.map +0 -1
  139. package/dist/webview-ui/Providers.js +0 -6
  140. package/dist/webview-ui/Providers.js.map +0 -1
  141. package/dist/webview-ui/components/ApprovalPanel.js +0 -8
  142. package/dist/webview-ui/components/ApprovalPanel.js.map +0 -1
  143. package/dist/webview-ui/components/ChatPanel.js +0 -19
  144. package/dist/webview-ui/components/ChatPanel.js.map +0 -1
  145. package/dist/webview-ui/components/Composer.js +0 -19
  146. package/dist/webview-ui/components/Composer.js.map +0 -1
  147. package/dist/webview-ui/components/HeaderBar.js +0 -5
  148. package/dist/webview-ui/components/HeaderBar.js.map +0 -1
  149. package/dist/webview-ui/components/SessionList.js +0 -14
  150. package/dist/webview-ui/components/SessionList.js.map +0 -1
  151. package/dist/webview-ui/context/WebviewStateContext.js +0 -146
  152. package/dist/webview-ui/context/WebviewStateContext.js.map +0 -1
  153. package/dist/webview-ui/main.js.map +0 -1
  154. package/dist/webview-ui/types.js +0 -2
  155. package/dist/webview-ui/types.js.map +0 -1
  156. package/dist/webview-ui/vscode.js +0 -4
  157. package/dist/webview-ui/vscode.js.map +0 -1
  158. package/marie-coder-0.1.16.vsix +0 -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.