newmark-agent 0.3.8 → 0.3.11
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-help.d.ts +2 -0
- package/dist/cli-help.js +22 -0
- package/dist/context/domain/types.d.ts +1 -1
- package/dist/conversation-utility-host.bundle.cjs +2060 -774
- package/dist/conversation-utility-host.js +4 -1
- package/dist/core/agent.d.ts +23 -1
- package/dist/core/agent.js +517 -37
- package/dist/core/agentKernelRunner.js +20 -3
- package/dist/core/browserControl.d.ts +8 -0
- package/dist/core/browserUsePageAdapter.d.ts +3 -0
- package/dist/core/browserUsePageAdapter.js +19 -2
- package/dist/core/compressionHistoryArchive.d.ts +28 -0
- package/dist/core/compressionHistoryArchive.js +131 -0
- package/dist/core/computerUseSession.d.ts +44 -0
- package/dist/core/computerUseSession.js +105 -0
- package/dist/core/config.js +1 -0
- package/dist/core/conversationKernel.d.ts +3 -1
- package/dist/core/conversationKernel.js +76 -7
- package/dist/core/electronBrowserUseHost.js +16 -0
- package/dist/core/electronUtilityAgentClient.js +84 -2
- package/dist/core/electronUtilityRuntimePool.js +6 -7
- package/dist/core/runtimeLifecycle.d.ts +23 -0
- package/dist/core/runtimeLifecycle.js +146 -0
- package/dist/core/types.d.ts +3 -0
- package/dist/core/utilityHostToolRouter.d.ts +7 -0
- package/dist/core/utilityHostToolRouter.js +25 -33
- package/dist/core/wslAgentRuntimePool.js +9 -10
- package/dist/launcher.js +13 -1
- package/dist/main.js +147 -18
- package/dist/preload.js +4 -2
- package/dist/tools/index.js +42 -52
- package/dist/tools/nativeTools.js +1 -1
- package/dist/ui/index.html +296 -40
- package/dist/wsl-agent-host.bundle.cjs +2063 -776
- package/dist/wsl-agent-host.js +4 -0
- package/package.json +3 -3
package/dist/cli-help.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.newmarkHelpText = newmarkHelpText;
|
|
4
|
+
const cli_commands_1 = require("./cli-commands");
|
|
5
|
+
function newmarkHelpText(version) {
|
|
6
|
+
return [
|
|
7
|
+
`Newmark Agent ${version}`,
|
|
8
|
+
'',
|
|
9
|
+
'Usage:',
|
|
10
|
+
' Newmark Agent.exe [--gui|--TUI|--cli] [--root <dir>]',
|
|
11
|
+
' Newmark.exe <command> ...',
|
|
12
|
+
' Newmark.exe flow <workflow-name> [start-pc] [--input "text"] [--root <dir>]',
|
|
13
|
+
' Newmark.exe edit <file.txt|.json|.tex|.md>',
|
|
14
|
+
'',
|
|
15
|
+
(0, cli_commands_1.cliCommandUsage)(),
|
|
16
|
+
'',
|
|
17
|
+
'Flags:',
|
|
18
|
+
' --help, -h Show this help and exit.',
|
|
19
|
+
' --version, -v Show the installed version and exit.',
|
|
20
|
+
].join('\n');
|
|
21
|
+
}
|
|
22
|
+
//# sourceMappingURL=cli-help.js.map
|
|
@@ -23,7 +23,7 @@ export interface BuildBlock {
|
|
|
23
23
|
tokenBudgetPolicyId: string;
|
|
24
24
|
metadata: Record<string, unknown>;
|
|
25
25
|
}
|
|
26
|
-
export type BuildHistoryEntryType = 'user_guide' | 'analysis_summary' | 'established_fact' | 'decision' | 'tool_observation' | 'implementation_progress' | 'verification' | 'error' | 'warning' | 'unresolved_item' | 'compression_summary' | 'amendment';
|
|
26
|
+
export type BuildHistoryEntryType = 'user_guide' | 'analysis_summary' | 'established_fact' | 'decision' | 'tool_observation' | 'implementation_progress' | 'verification' | 'error' | 'warning' | 'unresolved_item' | 'compression_summary' | 'work_overview' | 'amendment';
|
|
27
27
|
export type BuildHistorySource = 'user' | 'agent' | 'tool' | 'system' | 'subagent' | 'migration';
|
|
28
28
|
export type BuildHistoryImportance = 'low' | 'normal' | 'high' | 'critical';
|
|
29
29
|
export interface BuildHistoryEntry {
|