newmark-agent 0.4.6 → 0.4.7
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/assets/app-icon-dark.svg +6 -0
- package/dist/assets/app-icon-dark.svg +6 -0
- package/dist/cli-commands.js +2 -1
- package/dist/cli-discovery.js +2 -0
- package/dist/conversation-utility-host.bundle.cjs +291 -149
- package/dist/core/agent.d.ts +38 -4
- package/dist/core/agent.js +231 -49
- package/dist/core/agentKernelRunner.d.ts +3 -0
- package/dist/core/agentKernelRunner.js +49 -83
- package/dist/core/config.js +1 -1
- package/dist/core/installUpdate.js +11 -8
- package/dist/core/mobilePairing.d.ts +1 -0
- package/dist/core/mobilePairing.js +15 -1
- package/dist/core/subagent.d.ts +10 -3
- package/dist/core/subagent.js +23 -8
- package/dist/core/toolPolicy.js +11 -3
- package/dist/launcher.js +14 -11
- package/dist/main.js +15 -3
- package/dist/providers/chat-completions.adapter.js +6 -2
- package/dist/providers/responses.adapter.js +1 -0
- package/dist/server.d.ts +1 -0
- package/dist/server.js +543 -17
- package/dist/toolchain/registry-seeder.js +3 -1
- package/dist/tools/index.js +11 -5
- package/dist/tools/nativeTools.js +1 -1
- package/dist/ui/index.html +88 -101
- package/dist/wsl-agent-host.bundle.cjs +291 -149
- package/package.json +3 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "newmark-agent",
|
|
3
3
|
"productName": "Newmark Agent",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.7",
|
|
5
5
|
"description": "Newmark Agent — Portable AI coding agent with rich GUI and CLI (TypeScript)",
|
|
6
6
|
"homepage": "https://github.com/positer/Newmark-Agent",
|
|
7
7
|
"repository": {
|
|
@@ -79,6 +79,7 @@
|
|
|
79
79
|
"test:visual-preferences": "npm run build && node dist/tests/visualPreferencesVerify.js",
|
|
80
80
|
"test:browser-use": "npm run build && node dist/tests/browserUseVerify.js",
|
|
81
81
|
"test:tool-process": "npm run build && node dist/tests/toolProcessVerify.js",
|
|
82
|
+
"test:real-tool-concurrency": "npm run build && node dist/tests/realProviderToolConcurrencyStress.js",
|
|
82
83
|
"test:startup-prewarm": "npm run build && node dist/tests/startupPrewarmVerify.js",
|
|
83
84
|
"test:browser-use-electron": "npm run build && electron dist/tests/browserUseElectronVerify.js",
|
|
84
85
|
"test:dev009": "npm run build && node dist/tests/dev009Verify.js && node dist/tests/runtimeIsolationVerify.js && node dist/tests/guideWorkRunVerify.js && node dist/tests/guideUiReconcileVerify.js && node dist/tests/queueAttachmentIsolationVerify.js && node dist/tests/workspaceMenuVerify.js && node dist/tests/userImagePersistenceVerify.js && node dist/tests/visualPreferencesVerify.js && node dist/tests/browserUseVerify.js && node dist/tests/toolProcessVerify.js && node dist/tests/startupPrewarmVerify.js && node dist/tests/pdfPreviewServerVerify.js && node dist/tests/editorLifecycleVerify.js && node dist/tests/computerUsePerformanceVerify.js && electron dist/tests/browserUseElectronVerify.js",
|
|
@@ -119,6 +120,7 @@
|
|
|
119
120
|
"release:ui-model-auto-context-smoke": "node scripts/release-ui-model-auto-context-smoke.cjs",
|
|
120
121
|
"release:ui-gemma-removal-smoke": "node scripts/release-ui-gemma-removal-smoke.cjs",
|
|
121
122
|
"release:ui-icon-smoke": "node scripts/release-ui-icon-smoke.cjs",
|
|
123
|
+
"release:ui-render-performance-smoke": "node scripts/release-ui-render-performance-smoke.cjs",
|
|
122
124
|
"release:ui-flow-subagent-smoke": "node scripts/release-ui-flow-subagent-smoke.cjs",
|
|
123
125
|
"release:ui-media-md-smoke": "node scripts/release-ui-media-md-smoke.cjs",
|
|
124
126
|
"release:ui-native-editor-smoke": "node scripts/release-ui-native-editor-smoke.cjs",
|