parallel-codex-tui 0.1.3 → 0.1.4
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/.parallel-codex/config.example.toml +90 -3
- package/README.md +240 -21
- package/dist/bootstrap.js +37 -17
- package/dist/cli-args.js +34 -3
- package/dist/cli-help.js +20 -0
- package/dist/cli-startup-recovery.js +70 -0
- package/dist/cli-workspace-picker.js +330 -0
- package/dist/cli-workspace-transition.js +33 -0
- package/dist/cli-workspace.js +7 -71
- package/dist/cli.js +221 -23
- package/dist/core/collaboration-timeline.js +261 -0
- package/dist/core/config-errors.js +14 -0
- package/dist/core/config.js +154 -24
- package/dist/core/file-store.js +119 -6
- package/dist/core/lease-finalization.js +22 -0
- package/dist/core/paths.js +7 -0
- package/dist/core/process-identity.js +48 -0
- package/dist/core/process-mutation-turn.js +128 -0
- package/dist/core/process-ownership.js +276 -0
- package/dist/core/process-tree.js +90 -0
- package/dist/core/router-audit.js +155 -0
- package/dist/core/router-redaction.js +31 -0
- package/dist/core/router.js +462 -35
- package/dist/core/session-index.js +188 -37
- package/dist/core/session-manager.js +1086 -40
- package/dist/core/task-state-machine.js +17 -0
- package/dist/core/workspace-commit-recovery.js +118 -0
- package/dist/core/workspace.js +19 -11
- package/dist/doctor.js +343 -23
- package/dist/domain/schemas.js +127 -6
- package/dist/orchestrator/collaboration-channel.js +255 -4
- package/dist/orchestrator/feature-plan.js +70 -0
- package/dist/orchestrator/judge-artifacts.js +236 -0
- package/dist/orchestrator/orchestrator.js +1749 -202
- package/dist/orchestrator/prompts.js +126 -2
- package/dist/orchestrator/supervisor-summary.js +56 -2
- package/dist/orchestrator/workspace-sandbox.js +911 -0
- package/dist/tui/App.js +2830 -153
- package/dist/tui/AppShell.js +188 -23
- package/dist/tui/CollaborationTimelineView.js +327 -0
- package/dist/tui/FeatureBoardView.js +227 -0
- package/dist/tui/InputBar.js +514 -57
- package/dist/tui/RouterDiagnosticsView.js +469 -0
- package/dist/tui/StatusBar.js +610 -57
- package/dist/tui/TaskSessionsView.js +207 -0
- package/dist/tui/TerminalOutput.js +53 -9
- package/dist/tui/WorkerOutputView.js +1403 -161
- package/dist/tui/WorkerOverviewView.js +250 -0
- package/dist/tui/chat-history.js +25 -0
- package/dist/tui/chat-input.js +67 -19
- package/dist/tui/chat-paste.js +76 -0
- package/dist/tui/display-width.js +41 -3
- package/dist/tui/incremental-text-file.js +101 -0
- package/dist/tui/keyboard.js +46 -0
- package/dist/tui/markdown-text.js +14 -0
- package/dist/tui/raw-input-decoder.js +3 -0
- package/dist/tui/scrolling.js +2 -1
- package/dist/tui/status-line.js +318 -11
- package/dist/tui/task-memory.js +13 -1
- package/dist/tui/task-result.js +105 -0
- package/dist/tui/terminal-screen.js +13 -1
- package/dist/tui/theme-contrast.js +144 -0
- package/dist/tui/theme-preview.js +109 -0
- package/dist/tui/theme.js +158 -0
- package/dist/version.js +1 -1
- package/dist/workers/capabilities.js +212 -0
- package/dist/workers/live-probe.js +176 -0
- package/dist/workers/mock-adapter.js +39 -6
- package/dist/workers/native-attach.js +78 -3
- package/dist/workers/process-adapter.js +570 -77
- package/dist/workers/registry.js +4 -2
- package/package.json +5 -2
package/dist/workers/registry.js
CHANGED
|
@@ -9,7 +9,8 @@ export function createWorkerRegistry(config) {
|
|
|
9
9
|
timeoutMs: config.workers.codex.timeoutMs,
|
|
10
10
|
idleTimeoutMs: config.workers.codex.idleTimeoutMs,
|
|
11
11
|
firstOutputTimeoutMs: config.workers.codex.firstOutputTimeoutMs,
|
|
12
|
-
model: config.workers.codex.model
|
|
12
|
+
model: config.workers.codex.model,
|
|
13
|
+
capabilities: config.workers.codex.capabilities
|
|
13
14
|
})
|
|
14
15
|
],
|
|
15
16
|
[
|
|
@@ -18,7 +19,8 @@ export function createWorkerRegistry(config) {
|
|
|
18
19
|
timeoutMs: config.workers.claude.timeoutMs,
|
|
19
20
|
idleTimeoutMs: config.workers.claude.idleTimeoutMs,
|
|
20
21
|
firstOutputTimeoutMs: config.workers.claude.firstOutputTimeoutMs,
|
|
21
|
-
model: config.workers.claude.model
|
|
22
|
+
model: config.workers.claude.model,
|
|
23
|
+
capabilities: config.workers.claude.capabilities
|
|
22
24
|
})
|
|
23
25
|
]
|
|
24
26
|
]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "parallel-codex-tui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "A TypeScript TUI wrapper for routed parallel coding with Codex and Claude workers.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"agent-orchestration"
|
|
25
25
|
],
|
|
26
26
|
"engines": {
|
|
27
|
-
"node": ">=
|
|
27
|
+
"node": ">=24.15.0"
|
|
28
28
|
},
|
|
29
29
|
"bin": {
|
|
30
30
|
"parallel-codex-tui": "dist/cli.js"
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"build": "tsc -p tsconfig.json",
|
|
41
41
|
"postbuild": "node -e \"require('node:fs').chmodSync('dist/cli.js', 0o755)\"",
|
|
42
42
|
"prepack": "npm run build",
|
|
43
|
+
"verify:package": "node scripts/verify-package.mjs",
|
|
43
44
|
"test": "vitest run",
|
|
44
45
|
"test:watch": "vitest",
|
|
45
46
|
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
|
|
@@ -48,8 +49,10 @@
|
|
|
48
49
|
"dependencies": {
|
|
49
50
|
"@iarna/toml": "^2.2.5",
|
|
50
51
|
"@xterm/headless": "^6.0.0",
|
|
52
|
+
"chalk": "^5.3.0",
|
|
51
53
|
"ink": "^5.0.1",
|
|
52
54
|
"ink-text-input": "^6.0.0",
|
|
55
|
+
"marked": "^18.0.6",
|
|
53
56
|
"node-pty": "^1.1.0",
|
|
54
57
|
"react": "^18.3.1",
|
|
55
58
|
"zod": "^3.25.0"
|