newmark-agent 0.4.5 → 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.d.ts +1 -1
- package/dist/cli-commands.js +90 -7
- package/dist/cli-discovery.js +10 -0
- package/dist/conversation-utility-host.bundle.cjs +293 -148
- 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 +3 -0
- package/dist/core/dshCompatibility.d.ts +23 -6
- package/dist/core/dshCompatibility.js +99 -1
- package/dist/core/installUpdate.d.ts +67 -0
- package/dist/core/installUpdate.js +268 -0
- package/dist/core/mobilePairing.d.ts +47 -0
- package/dist/core/mobilePairing.js +221 -0
- 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 +64 -3
- package/dist/preload.js +5 -0
- 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 +721 -3
- package/dist/toolchain/registry-seeder.js +3 -1
- package/dist/tools/index.js +11 -5
- package/dist/tools/nativeTools.js +1 -1
- package/dist/tui/src/adapters/core-runtime-adapter.js +17 -1
- package/dist/tui/src/app.js +41 -0
- package/dist/tui/src/data.js +1 -0
- package/dist/tui/src/render.js +11 -0
- package/dist/tui/src/settings-schema.js +3 -1
- package/dist/tui/src/state.js +21 -1
- package/dist/ui/index.html +530 -101
- package/dist/ui/lucide-sprite.svg +10 -0
- package/dist/wsl-agent-host.bundle.cjs +293 -148
- package/package.json +14 -8
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": {
|
|
@@ -53,16 +53,16 @@
|
|
|
53
53
|
"test:desktop": "npm run build && npm run test:desktop:built",
|
|
54
54
|
"test:deletion-safety": "npm run build && npm run test:deletion-safety:built",
|
|
55
55
|
"test:deletion-safety:built": "node scripts/deletion-safety-stress.cjs",
|
|
56
|
-
|
|
56
|
+
"test:desktop:built": "node dist/tests/verify.js && node dist/tests/thinkingTierMapCacheStressVerify.js && node dist/tests/computerUseSessionVerify.js && node dist/tests/contextSystemV2Verify.js && node dist/tests/contextSystemV2StressVerify.js && node dist/tests/providerAdapterV2Verify.js && node dist/tests/providerTimeoutRecoveryVerify.js && node dist/tests/agentRuntimeV2Verify.js && node dist/tests/toolchainExposureV2Verify.js && node dist/tests/localOcrFallbackVerify.js && node dist/tests/dev018ModeSubagentStressVerify.js && node dist/tests/conversationBranchStressVerify.js && node dist/tests/conversationArchiveConcurrencyVerify.js && node dist/tests/conversationArchiveRuntimeVerify.js && node dist/tests/dev040ComprehensiveStressVerify.js && node dist/tests/memoryPolicyVerify.js && node dist/tests/newmarkSelectVerify.js && node dist/tests/mcpManagerVerify.js && node dist/tests/dshCompatibilityVerify.js && node dist/tests/performanceOptimizationVerify.js && node scripts/compression-pressure-stress.cjs && node dist/tests/compressionFidelityVerify.js && node dist/tests/responseTrajectoryVerify.js && node dist/tests/normalChatRegressionVerify.js && node dist/tests/dev008-subagent.js && node dist/tests/dev009Verify.js && node dist/tests/runtimeIsolationVerify.js && node dist/tests/runtimePoolCapacityVerify.js && node dist/tests/guideWorkRunVerify.js && node dist/tests/modelSwitchBehaviorVerify.js && node scripts/flow-pause-stop-draft-stress.cjs && node dist/tests/guideUiReconcileVerify.js && node dist/tests/queueAttachmentIsolationVerify.js && node dist/tests/workspaceMenuVerify.js && node dist/tests/userImagePersistenceVerify.js && node dist/tests/displayImageVerify.js && node dist/tests/visualPreferencesVerify.js && node dist/tests/browserUseVerify.js && node dist/tests/toolProcessVerify.js && node dist/tests/toolProvisioningVerify.js && node dist/tests/taskToolsVerify.js && node dist/tests/contextCacheHitStressVerify.js && node dist/tests/startupPrewarmVerify.js && node dist/tests/pdfPreviewServerVerify.js && node dist/tests/editorLifecycleVerify.js && node dist/tests/terminalTakeoverVerify.js && node dist/tests/workspaceFileRouterVerify.js && node dist/tests/computerUsePerformanceVerify.js && node dist/tests/autoRouterVerify.js && node dist/tests/autoAgentIntegrationVerify.js && node dist/tests/autoRouteRatingVerify.js && node dist/tests/providerIdentityVerify.js && node dist/tests/modelValidationVerify.js && node dist/tests/modelValidationAgentIntegrationVerify.js && node scripts/deletion-safety-stress.cjs",
|
|
57
57
|
"test:conversation-branch-stress": "npm run build && node dist/tests/conversationBranchStressVerify.js",
|
|
58
58
|
"test:conversation-archive-concurrency": "npm run build && node dist/tests/conversationArchiveConcurrencyVerify.js",
|
|
59
59
|
"test:memory-policy": "npm run build && node dist/tests/memoryPolicyVerify.js",
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
60
|
+
"test:context-system-v2": "npm run build && node dist/tests/contextSystemV2Verify.js",
|
|
61
|
+
"test:context-budget": "npm run build && node dist/tests/contextBudgetVerify.js",
|
|
62
|
+
"test:context-cache-hit-stress": "npm run build && node dist/tests/contextCacheHitStressVerify.js",
|
|
63
|
+
"test:thinking-tier-map-cache-stress": "npm run build && node dist/tests/thinkingTierMapCacheStressVerify.js",
|
|
64
|
+
"test:context-compression-api": "npm run build && node dist/tests/contextCompressionApiVerify.js",
|
|
65
|
+
"test:compression-pressure": "npm run build && node scripts/compression-pressure-stress.cjs",
|
|
66
66
|
"test:context-system-v2-stress": "npm run build && node dist/tests/contextSystemV2StressVerify.js",
|
|
67
67
|
"test:provider-adapter-v2": "npm run build && node dist/tests/providerAdapterV2Verify.js",
|
|
68
68
|
"test:provider-timeout-recovery": "npm run build && node dist/tests/providerTimeoutRecoveryVerify.js",
|
|
@@ -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",
|
|
@@ -265,6 +267,8 @@
|
|
|
265
267
|
"perMachine": true,
|
|
266
268
|
"runAfterFinish": false,
|
|
267
269
|
"warningsAsErrors": false,
|
|
270
|
+
"createDesktopShortcut": "always",
|
|
271
|
+
"createStartMenuShortcut": true,
|
|
268
272
|
"artifactName": "Newmark-Agent-${version}-${arch}.${ext}"
|
|
269
273
|
}
|
|
270
274
|
},
|
|
@@ -281,6 +285,7 @@
|
|
|
281
285
|
"lucide-static": "^1.21.0",
|
|
282
286
|
"node-pty": "^1.1.0",
|
|
283
287
|
"pngjs": "^7.0.0",
|
|
288
|
+
"qrcode": "^1.5.4",
|
|
284
289
|
"resedit": "^1.7.2",
|
|
285
290
|
"tesseract.js": "6.0.1",
|
|
286
291
|
"typebox": "^1.1.38"
|
|
@@ -289,6 +294,7 @@
|
|
|
289
294
|
"@types/jsdom": "^28.0.3",
|
|
290
295
|
"@types/node": "^22.0.0",
|
|
291
296
|
"@types/pngjs": "^6.0.5",
|
|
297
|
+
"@types/qrcode": "^1.5.6",
|
|
292
298
|
"electron": "^43.1.1",
|
|
293
299
|
"electron-builder": "^26.15.3",
|
|
294
300
|
"esbuild": "^0.28.1",
|