newmark-agent 0.4.5 → 0.4.6
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 -1
- package/dist/cli-commands.js +89 -7
- package/dist/cli-discovery.js +8 -0
- package/dist/conversation-utility-host.bundle.cjs +3 -0
- 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 +265 -0
- package/dist/core/mobilePairing.d.ts +46 -0
- package/dist/core/mobilePairing.js +207 -0
- package/dist/main.js +49 -0
- package/dist/preload.js +5 -0
- package/dist/server.js +195 -3
- 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 +455 -13
- package/dist/ui/lucide-sprite.svg +10 -0
- package/dist/wsl-agent-host.bundle.cjs +3 -0
- package/package.json +12 -8
|
@@ -79,6 +79,11 @@
|
|
|
79
79
|
<path d="m15 10 5 5-5 5" />
|
|
80
80
|
<path d="M4 4v7a4 4 0 0 0 4 4h12" />
|
|
81
81
|
</symbol>
|
|
82
|
+
<symbol id="ellipsis" viewBox="0 0 24 24">
|
|
83
|
+
<circle cx="12" cy="12" r="1" />
|
|
84
|
+
<circle cx="19" cy="12" r="1" />
|
|
85
|
+
<circle cx="5" cy="12" r="1" />
|
|
86
|
+
</symbol>
|
|
82
87
|
<symbol id="file-diff" viewBox="0 0 24 24">
|
|
83
88
|
<path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
|
|
84
89
|
<path d="M9 10h6" />
|
|
@@ -187,6 +192,11 @@
|
|
|
187
192
|
<path d="M3 16v3a2 2 0 0 0 2 2h3" />
|
|
188
193
|
<path d="M16 21h3a2 2 0 0 0 2-2v-3" />
|
|
189
194
|
</symbol>
|
|
195
|
+
<symbol id="menu" viewBox="0 0 24 24">
|
|
196
|
+
<path d="M4 5h16" />
|
|
197
|
+
<path d="M4 12h16" />
|
|
198
|
+
<path d="M4 19h16" />
|
|
199
|
+
</symbol>
|
|
190
200
|
<symbol id="merge" viewBox="0 0 24 24">
|
|
191
201
|
<path d="m8 6 4-4 4 4" />
|
|
192
202
|
<path d="M12 2v10.3a4 4 0 0 1-1.172 2.872L4 22" />
|
|
@@ -328318,6 +328318,9 @@ function defaultConfig() {
|
|
|
328318
328318
|
default_input: { _description: "Default input mode", _type: "choice", _values: ["guide", "next"], value: "guide" },
|
|
328319
328319
|
auto_archive_on_close: { _description: "Auto archive on close", _type: "boolean", value: true }
|
|
328320
328320
|
},
|
|
328321
|
+
remote: {
|
|
328322
|
+
touch_enabled: { _description: "Allow mobile devices to reach this Newmark instance over Tailscale", _type: "boolean", value: true }
|
|
328323
|
+
},
|
|
328321
328324
|
models: {
|
|
328322
328325
|
providers: { _description: "LLM providers", _type: "array", value: [] },
|
|
328323
328326
|
default_model: { _description: "Default model", _type: "string", value: "" },
|
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.6",
|
|
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",
|
|
@@ -265,6 +265,8 @@
|
|
|
265
265
|
"perMachine": true,
|
|
266
266
|
"runAfterFinish": false,
|
|
267
267
|
"warningsAsErrors": false,
|
|
268
|
+
"createDesktopShortcut": "always",
|
|
269
|
+
"createStartMenuShortcut": true,
|
|
268
270
|
"artifactName": "Newmark-Agent-${version}-${arch}.${ext}"
|
|
269
271
|
}
|
|
270
272
|
},
|
|
@@ -281,6 +283,7 @@
|
|
|
281
283
|
"lucide-static": "^1.21.0",
|
|
282
284
|
"node-pty": "^1.1.0",
|
|
283
285
|
"pngjs": "^7.0.0",
|
|
286
|
+
"qrcode": "^1.5.4",
|
|
284
287
|
"resedit": "^1.7.2",
|
|
285
288
|
"tesseract.js": "6.0.1",
|
|
286
289
|
"typebox": "^1.1.38"
|
|
@@ -289,6 +292,7 @@
|
|
|
289
292
|
"@types/jsdom": "^28.0.3",
|
|
290
293
|
"@types/node": "^22.0.0",
|
|
291
294
|
"@types/pngjs": "^6.0.5",
|
|
295
|
+
"@types/qrcode": "^1.5.6",
|
|
292
296
|
"electron": "^43.1.1",
|
|
293
297
|
"electron-builder": "^26.15.3",
|
|
294
298
|
"esbuild": "^0.28.1",
|