newmark-agent 0.3.12 → 0.4.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.
- package/dist/cli-commands.d.ts +1 -0
- package/dist/cli-commands.js +11 -2
- package/dist/context/domain/types.d.ts +37 -0
- package/dist/context/services/context-orchestrator.js +2 -0
- package/dist/conversation-utility-host.bundle.cjs +1147 -131
- package/dist/conversation-utility-host.js +3 -0
- package/dist/core/agent.d.ts +139 -5
- package/dist/core/agent.js +962 -82
- package/dist/core/agentKernel/agent-loop.js +29 -3
- package/dist/core/agentKernel/types.d.ts +7 -0
- package/dist/core/agentKernelRunner.d.ts +2 -0
- package/dist/core/agentKernelRunner.js +121 -19
- package/dist/core/conversationKernel.d.ts +5 -0
- package/dist/core/conversationKernel.js +29 -0
- package/dist/core/dshCompatibility.d.ts +198 -0
- package/dist/core/dshCompatibility.js +600 -0
- package/dist/core/electronUtilityAgentClient.d.ts +4 -0
- package/dist/core/electronUtilityAgentClient.js +4 -0
- package/dist/core/electronUtilityRuntimePool.d.ts +8 -0
- package/dist/core/electronUtilityRuntimePool.js +14 -0
- package/dist/core/mcpManager.d.ts +1 -0
- package/dist/core/mcpManager.js +100 -10
- package/dist/core/subagent.d.ts +6 -0
- package/dist/core/subagent.js +22 -1
- package/dist/core/toolPolicy.d.ts +6 -0
- package/dist/core/toolPolicy.js +49 -1
- package/dist/core/types.d.ts +1 -1
- package/dist/core/utilityAgentProtocol.d.ts +8 -1
- package/dist/core/workspace.d.ts +9 -0
- package/dist/core/workspace.js +48 -1
- package/dist/core/wslAgentClient.d.ts +4 -0
- package/dist/core/wslAgentClient.js +4 -0
- package/dist/core/wslAgentProtocol.d.ts +8 -1
- package/dist/core/wslAgentRuntimePool.d.ts +8 -0
- package/dist/core/wslAgentRuntimePool.js +15 -0
- package/dist/launcher.js +8 -0
- package/dist/llm/provider.d.ts +1 -1
- package/dist/llm/provider.js +4 -3
- package/dist/main.js +163 -11
- package/dist/preload.js +11 -0
- package/dist/providers/chat-completions.adapter.js +41 -15
- package/dist/providers/provider-adapter.d.ts +3 -0
- package/dist/toolchain/registry/tool-registry.d.ts +13 -1
- package/dist/toolchain/registry/tool-registry.js +8 -0
- package/dist/toolchain/registry-seeder.js +51 -5
- package/dist/tools/index.js +11 -2
- package/dist/tools/nativeTools.js +5 -1
- package/dist/ui/index.html +2530 -205
- package/dist/ui/lucide-sprite.svg +26 -0
- package/dist/wsl-agent-host.bundle.cjs +1147 -131
- package/dist/wsl-agent-host.js +3 -0
- package/package.json +4 -2
|
@@ -130,6 +130,14 @@
|
|
|
130
130
|
<circle cx="15" cy="5" r="1" />
|
|
131
131
|
<circle cx="15" cy="19" r="1" />
|
|
132
132
|
</symbol>
|
|
133
|
+
<symbol id="group" viewBox="0 0 24 24">
|
|
134
|
+
<path d="M3 7V5c0-1.1.9-2 2-2h2" />
|
|
135
|
+
<path d="M17 3h2c1.1 0 2 .9 2 2v2" />
|
|
136
|
+
<path d="M21 17v2c0 1.1-.9 2-2 2h-2" />
|
|
137
|
+
<path d="M7 21H5c-1.1 0-2-.9-2-2v-2" />
|
|
138
|
+
<rect width="7" height="5" x="7" y="7" rx="1" />
|
|
139
|
+
<rect width="7" height="5" x="10" y="12" rx="1" />
|
|
140
|
+
</symbol>
|
|
133
141
|
<symbol id="image" viewBox="0 0 24 24">
|
|
134
142
|
<rect width="18" height="18" x="3" y="3" rx="2" ry="2" />
|
|
135
143
|
<circle cx="9" cy="9" r="2" />
|
|
@@ -157,6 +165,14 @@
|
|
|
157
165
|
<path d="m3 17 2 2 4-4" />
|
|
158
166
|
<path d="m3 7 2 2 4-4" />
|
|
159
167
|
</symbol>
|
|
168
|
+
<symbol id="list" viewBox="0 0 24 24">
|
|
169
|
+
<path d="M3 5h.01" />
|
|
170
|
+
<path d="M3 12h.01" />
|
|
171
|
+
<path d="M3 19h.01" />
|
|
172
|
+
<path d="M8 5h13" />
|
|
173
|
+
<path d="M8 12h13" />
|
|
174
|
+
<path d="M8 19h13" />
|
|
175
|
+
</symbol>
|
|
160
176
|
<symbol id="loader-circle" viewBox="0 0 24 24">
|
|
161
177
|
<path d="M21 12a9 9 0 1 1-6.219-8.56" />
|
|
162
178
|
</symbol>
|
|
@@ -197,6 +213,9 @@
|
|
|
197
213
|
<path d="m5 9-3 3 3 3" />
|
|
198
214
|
<path d="m9 5 3-3 3 3" />
|
|
199
215
|
</symbol>
|
|
216
|
+
<symbol id="navigation" viewBox="0 0 24 24">
|
|
217
|
+
<polygon points="3 11 22 2 13 21 11 13 3 11" />
|
|
218
|
+
</symbol>
|
|
200
219
|
<symbol id="octagon-x" viewBox="0 0 24 24">
|
|
201
220
|
<path d="m15 9-6 6" />
|
|
202
221
|
<path d="M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z" />
|
|
@@ -209,6 +228,13 @@
|
|
|
209
228
|
<path d="M3 3h6l6 18h6" />
|
|
210
229
|
<path d="M14 3h7" />
|
|
211
230
|
</symbol>
|
|
231
|
+
<symbol id="palette" viewBox="0 0 24 24">
|
|
232
|
+
<path d="M12 22a1 1 0 0 1 0-20 10 9 0 0 1 10 9 5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z" />
|
|
233
|
+
<circle cx="13.5" cy="6.5" r=".5" fill="currentColor" />
|
|
234
|
+
<circle cx="17.5" cy="10.5" r=".5" fill="currentColor" />
|
|
235
|
+
<circle cx="6.5" cy="12.5" r=".5" fill="currentColor" />
|
|
236
|
+
<circle cx="8.5" cy="7.5" r=".5" fill="currentColor" />
|
|
237
|
+
</symbol>
|
|
212
238
|
<symbol id="panel-left-open" viewBox="0 0 24 24">
|
|
213
239
|
<rect width="18" height="18" x="3" y="3" rx="2" />
|
|
214
240
|
<path d="M9 3v18" />
|