@noorm/marie-cli 0.1.15 → 0.1.17

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 (103) hide show
  1. package/.marie_visual_verify_1771225696548/progress_bar_check.txt +1 -0
  2. package/SENTINEL.md +33 -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/Banner.js +5 -5
  6. package/dist/cli-new/components/Banner.js.map +1 -1
  7. package/dist/cli-new/hooks/useUpdateCheck.js +17 -0
  8. package/dist/cli-new/hooks/useUpdateCheck.js.map +1 -0
  9. package/dist/domain/DomainEntity.js +7 -0
  10. package/dist/domain/DomainEntity.js.map +1 -0
  11. package/dist/extension.cjs +164 -154
  12. package/dist/extension.js +473 -0
  13. package/dist/extension.js.map +1 -0
  14. package/dist/infrastructure/BaseAdapter.js +3 -0
  15. package/dist/infrastructure/BaseAdapter.js.map +1 -0
  16. package/dist/monolith/cli/CliFileSystemPort.js +16 -8
  17. package/dist/monolith/cli/CliFileSystemPort.js.map +1 -1
  18. package/dist/monolith/cli/MarieToolDefinitionsCLI.js +9 -6
  19. package/dist/monolith/cli/MarieToolDefinitionsCLI.js.map +1 -1
  20. package/dist/monolith/cli/services/JoyAutomationServiceCLI.js +1 -1
  21. package/dist/monolith/cli/services/JoyAutomationServiceCLI.js.map +1 -1
  22. package/dist/monolith/infrastructure/ai/core/MarieEngine.js +29 -10
  23. package/dist/monolith/infrastructure/ai/core/MarieEngine.js.map +1 -1
  24. package/dist/monolith/infrastructure/ai/core/MarieToolProcessor.js +19 -13
  25. package/dist/monolith/infrastructure/ai/core/MarieToolProcessor.js.map +1 -1
  26. package/dist/monolith/infrastructure/ai/core/VscodeFileSystemPort.js +8 -8
  27. package/dist/monolith/infrastructure/ai/core/VscodeFileSystemPort.js.map +1 -1
  28. package/dist/monolith/infrastructure/config/ConfigService.js +2 -22
  29. package/dist/monolith/infrastructure/config/ConfigService.js.map +1 -1
  30. package/dist/monolith/infrastructure/joy/JoyTools.js +535 -0
  31. package/dist/monolith/infrastructure/joy/JoyTools.js.map +1 -0
  32. package/dist/monolith/infrastructure/tools/MarieToolDefinitions.js +14 -13
  33. package/dist/monolith/infrastructure/tools/MarieToolDefinitions.js.map +1 -1
  34. package/dist/monolith/plumbing/analysis/MarieSentinelService.js +23 -3
  35. package/dist/monolith/plumbing/analysis/MarieSentinelService.js.map +1 -1
  36. package/dist/monolith/plumbing/analysis/TestService.js +2 -1
  37. package/dist/monolith/plumbing/analysis/TestService.js.map +1 -1
  38. package/dist/monolith/plumbing/filesystem/FileService.js +22 -10
  39. package/dist/monolith/plumbing/filesystem/FileService.js.map +1 -1
  40. package/dist/monolith/plumbing/utils/EnvironmentUtils.js +59 -0
  41. package/dist/monolith/plumbing/utils/EnvironmentUtils.js.map +1 -0
  42. package/dist/monolith/plumbing/utils/MutexUtils.js +86 -0
  43. package/dist/monolith/plumbing/utils/MutexUtils.js.map +1 -0
  44. package/dist/monolith/runtime/MarieRuntime.js +250 -136
  45. package/dist/monolith/runtime/MarieRuntime.js.map +1 -1
  46. package/dist/monolith/runtime/RuntimeAdapterBase.js +6 -0
  47. package/dist/monolith/runtime/RuntimeAdapterBase.js.map +1 -1
  48. package/dist/monolith/services/JoyAutomationService.js +1 -1
  49. package/dist/monolith/services/JoyAutomationService.js.map +1 -1
  50. package/dist/monolith/services/JoyService.js +1 -1
  51. package/dist/monolith/services/JoyService.js.map +1 -1
  52. package/dist/monolith/services/UpdateService.js +61 -0
  53. package/dist/monolith/services/UpdateService.js.map +1 -0
  54. package/dist/plumbing/BaseTool.js +7 -0
  55. package/dist/plumbing/BaseTool.js.map +1 -0
  56. package/dist/prompts.js +90 -0
  57. package/dist/prompts.js.map +1 -0
  58. package/dist/test_agent_stream_control_plane.js +170 -0
  59. package/dist/test_agent_stream_control_plane.js.map +1 -0
  60. package/dist/test_content_buffer_cap.js +67 -0
  61. package/dist/test_content_buffer_cap.js.map +1 -0
  62. package/dist/test_prefix_tree.js +120 -0
  63. package/dist/test_prefix_tree.js.map +1 -0
  64. package/dist/test_retry_utils.js +169 -0
  65. package/dist/test_retry_utils.js.map +1 -0
  66. package/dist/test_strategy_integration.js +114 -0
  67. package/dist/test_strategy_integration.js.map +1 -0
  68. package/dist/test_streaming_fragility.js +191 -0
  69. package/dist/test_streaming_fragility.js.map +1 -0
  70. package/dist/webview-ui/App.js +16 -0
  71. package/dist/webview-ui/App.js.map +1 -0
  72. package/dist/webview-ui/Providers.js +6 -0
  73. package/dist/webview-ui/Providers.js.map +1 -0
  74. package/dist/webview-ui/components/ApprovalPanel.js +8 -0
  75. package/dist/webview-ui/components/ApprovalPanel.js.map +1 -0
  76. package/dist/webview-ui/components/ChatPanel.js +19 -0
  77. package/dist/webview-ui/components/ChatPanel.js.map +1 -0
  78. package/dist/webview-ui/components/Composer.js +19 -0
  79. package/dist/webview-ui/components/Composer.js.map +1 -0
  80. package/dist/webview-ui/components/HeaderBar.js +5 -0
  81. package/dist/webview-ui/components/HeaderBar.js.map +1 -0
  82. package/dist/webview-ui/components/SessionList.js +14 -0
  83. package/dist/webview-ui/components/SessionList.js.map +1 -0
  84. package/dist/webview-ui/context/WebviewStateContext.js +146 -0
  85. package/dist/webview-ui/context/WebviewStateContext.js.map +1 -0
  86. package/dist/webview-ui/main.css +1 -0
  87. package/dist/webview-ui/main.js +108 -0
  88. package/dist/webview-ui/main.js.map +1 -0
  89. package/dist/webview-ui/types.js +2 -0
  90. package/dist/webview-ui/types.js.map +1 -0
  91. package/dist/webview-ui/vscode.js +4 -0
  92. package/dist/webview-ui/vscode.js.map +1 -0
  93. package/lint_output.txt +705 -0
  94. package/lint_output_v2.txt +711 -0
  95. package/marie-coder-0.1.16.vsix +0 -0
  96. package/package.json +3 -10
  97. package/JOY_ZONING.md +0 -200
  98. package/dist/monolith/tests/FileAppendVerifyTest.js +0 -28
  99. package/dist/monolith/tests/FileAppendVerifyTest.js.map +0 -1
  100. package/dist/monolith/tests/StreamingVerifyTest.js +0 -100
  101. package/dist/monolith/tests/StreamingVerifyTest.js.map +0 -1
  102. package/dist/monolith/tests/VisualProgressTest.js +0 -86
  103. package/dist/monolith/tests/VisualProgressTest.js.map +0 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"main.js","sourceRoot":"","sources":["../../src/webview-ui/main.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAA;AAC7C,OAAO,GAAG,MAAM,UAAU,CAAA;AAC1B,OAAO,cAAc,CAAA;AAErB,SAAS,cAAc;IACnB,MAAM,QAAQ,GAAG,QAAQ,CAAC,cAAc,CAAC,KAAK,CAAC,CAAA;IAC/C,IAAI,QAAQ;QAAE,OAAO,QAAQ,CAAA;IAE7B,MAAM,OAAO,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAA;IAC7C,OAAO,CAAC,EAAE,GAAG,KAAK,CAAA;IAClB,QAAQ,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAA;IAClC,OAAO,OAAO,CAAA;AAClB,CAAC;AAED,SAAS,cAAc,CAAC,KAAc;IAClC,MAAM,GAAG,GAAG,cAAc,EAAE,CAAA;IAC5B,MAAM,OAAO,GAAG,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,OAAO,OAAO,KAAK,CAAC,KAAK,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAA;IACnG,GAAG,CAAC,SAAS,GAAG,kHAAkH,OAAO,QAAQ,CAAA;AACrJ,CAAC;AAED,IAAI,CAAC;IACD,UAAU,CAAC,cAAc,EAAE,CAAC,CAAC,MAAM,CAAC,KAAC,GAAG,KAAG,CAAC,CAAA;AAChD,CAAC;AAAC,OAAO,KAAK,EAAE,CAAC;IACb,cAAc,CAAC,KAAK,CAAC,CAAA;AACzB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/webview-ui/types.ts"],"names":[],"mappings":""}
@@ -0,0 +1,4 @@
1
+ export const vscode = typeof acquireVsCodeApi === "function"
2
+ ? acquireVsCodeApi()
3
+ : { postMessage: (_message) => undefined };
4
+ //# sourceMappingURL=vscode.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vscode.js","sourceRoot":"","sources":["../../src/webview-ui/vscode.ts"],"names":[],"mappings":"AAIA,MAAM,CAAC,MAAM,MAAM,GACf,OAAO,gBAAgB,KAAK,UAAU;IAClC,CAAC,CAAC,gBAAgB,EAAE;IACpB,CAAC,CAAC,EAAE,WAAW,EAAE,CAAC,QAAiB,EAAE,EAAE,CAAC,SAAS,EAAE,CAAA"}