@elizaos/plugin-task-coordinator 2.0.3-beta.2
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/LICENSE +21 -0
- package/README.md +70 -0
- package/assets/hero.png +0 -0
- package/package.json +70 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Shaw Walters and elizaOS Contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# @elizaos/plugin-task-coordinator
|
|
2
|
+
|
|
3
|
+
UI workbench for managing coding-agent task threads and PTY sessions inside elizaOS.
|
|
4
|
+
|
|
5
|
+
## What it does
|
|
6
|
+
|
|
7
|
+
This plugin adds two interactive surfaces to the elizaOS dashboard:
|
|
8
|
+
|
|
9
|
+
**Task Coordinator** — lists active coding-agent sessions and task threads, shows live PTY output from running agents, and lets you stop individual sessions or all sessions at once.
|
|
10
|
+
|
|
11
|
+
**Orchestrator** — a multi-agent task orchestration workbench. Create task threads with goals and acceptance criteria, assign sub-agents (elizaOS, Claude Code, Codex, OpenCode, Pi Agent), monitor their timeline of events and messages, fork tasks, validate results, and send messages to running tasks — all from one panel.
|
|
12
|
+
|
|
13
|
+
Both surfaces are available in standard, XR, and TUI (terminal) variants.
|
|
14
|
+
|
|
15
|
+
The plugin also fills the coding-agent slot components that `@elizaos/ui` leaves empty until a slot provider registers them:
|
|
16
|
+
- A header control chip showing active agent count with a stop-all button.
|
|
17
|
+
- The per-framework settings section (model, LLM provider, approval preset, GitHub connection).
|
|
18
|
+
- The PTY console (drawer, side-panel, and full-screen variants).
|
|
19
|
+
|
|
20
|
+
## Capabilities
|
|
21
|
+
|
|
22
|
+
The Orchestrator panel supports these operations:
|
|
23
|
+
|
|
24
|
+
| Capability | Description |
|
|
25
|
+
|---|---|
|
|
26
|
+
| Status | Get current orchestrator status |
|
|
27
|
+
| List tasks | List task threads, filter by status, search, include archived |
|
|
28
|
+
| Open task | Open a task thread detail view |
|
|
29
|
+
| Create task | Create a new task with title, goal, priority, acceptance criteria |
|
|
30
|
+
| Pause / resume task | Pause or resume a single task |
|
|
31
|
+
| Pause all / resume all | Bulk pause or resume |
|
|
32
|
+
| Delete task | Remove a task thread |
|
|
33
|
+
| Fork task | Fork an existing task with a new title/goal/priority |
|
|
34
|
+
| Update task | Edit title, goal, summary, priority, acceptance criteria |
|
|
35
|
+
| Validate task | Record a validation pass/fail result with evidence |
|
|
36
|
+
| Add agent | Attach a sub-agent (framework, model, workdir, repo) to a task |
|
|
37
|
+
| Stop agent | Stop a specific sub-agent session |
|
|
38
|
+
| Send message | Send a message to a task thread |
|
|
39
|
+
|
|
40
|
+
## Requirements
|
|
41
|
+
|
|
42
|
+
- `@elizaos/core` (workspace dependency)
|
|
43
|
+
- `@elizaos/ui` (workspace dependency — provides client API, slot registry, shared types)
|
|
44
|
+
- `@elizaos/plugin-agent-orchestrator` must be running to provide task/session state; this plugin is display-only.
|
|
45
|
+
|
|
46
|
+
## Enabling
|
|
47
|
+
|
|
48
|
+
Add `@elizaos/plugin-task-coordinator` to your agent's plugin list. No env vars are required.
|
|
49
|
+
|
|
50
|
+
Per-framework coding-agent settings (model, LLM provider, approval preset) are configured through the Settings panel in the dashboard UI, not via environment variables.
|
|
51
|
+
|
|
52
|
+
## Supported agent frameworks
|
|
53
|
+
|
|
54
|
+
The settings panel manages configuration for: elizaOS, Pi Agent, OpenCode, Claude, and Codex.
|
|
55
|
+
|
|
56
|
+
## Build
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
bun run --cwd plugins/plugin-task-coordinator build
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
This runs tsup (plugin JS) + Vite (view bundle → `dist/views/bundle.js`) + tsc (type declarations).
|
|
63
|
+
|
|
64
|
+
## Tests
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
bun run --cwd plugins/plugin-task-coordinator test
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
A live end-to-end test (`test:e2e:manual`) requires the `codex` CLI to be installed and authenticated (`~/.codex/auth.json`). It is skipped automatically when those conditions are not met.
|
package/assets/hero.png
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@elizaos/plugin-task-coordinator",
|
|
3
|
+
"version": "2.0.3-beta.2",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"exports": {
|
|
7
|
+
"./package.json": "./package.json",
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"eliza-source": {
|
|
11
|
+
"types": "./src/index.ts",
|
|
12
|
+
"import": "./src/index.ts",
|
|
13
|
+
"default": "./src/index.ts"
|
|
14
|
+
},
|
|
15
|
+
"import": "./dist/index.js",
|
|
16
|
+
"default": "./dist/index.js"
|
|
17
|
+
},
|
|
18
|
+
"./*.css": "./dist/*.css",
|
|
19
|
+
"./*": {
|
|
20
|
+
"types": "./dist/*.d.ts",
|
|
21
|
+
"eliza-source": {
|
|
22
|
+
"types": "./src/*.ts",
|
|
23
|
+
"import": "./src/*.ts",
|
|
24
|
+
"default": "./src/*.ts"
|
|
25
|
+
},
|
|
26
|
+
"import": "./dist/*.js",
|
|
27
|
+
"default": "./dist/*.js"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@elizaos/core": "2.0.3-beta.2",
|
|
32
|
+
"@elizaos/plugin-calendar": "2.0.3-beta.2",
|
|
33
|
+
"@elizaos/shared": "2.0.3-beta.2",
|
|
34
|
+
"@elizaos/ui": "2.0.3-beta.2",
|
|
35
|
+
"@xterm/addon-fit": "^0.10.0",
|
|
36
|
+
"@xterm/xterm": "^5.5.0",
|
|
37
|
+
"lucide-react": "^1.0.0",
|
|
38
|
+
"marked": "^18.0.4",
|
|
39
|
+
"react": "^19.0.0",
|
|
40
|
+
"react-dom": "^19.0.0"
|
|
41
|
+
},
|
|
42
|
+
"elizaos": {
|
|
43
|
+
"app": {
|
|
44
|
+
"heroImage": "assets/hero.png"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"publishConfig": {
|
|
48
|
+
"access": "public"
|
|
49
|
+
},
|
|
50
|
+
"types": "./dist/index.d.ts",
|
|
51
|
+
"scripts": {
|
|
52
|
+
"build": "bun run build:js && bun run build:views && bun run build:types",
|
|
53
|
+
"clean": "rm -rf dist",
|
|
54
|
+
"build:js": "tsup --config ../tsup.plugin-packages.shared.ts",
|
|
55
|
+
"build:views": "bunx --bun vite build --config vite.config.views.ts",
|
|
56
|
+
"build:types": "tsc --noCheck -p tsconfig.build.json",
|
|
57
|
+
"test": "vitest run --config vitest.config.ts",
|
|
58
|
+
"test:unit": "vitest run --config vitest.config.ts",
|
|
59
|
+
"test:e2e:manual": "vitest run --config vitest.live.config.ts"
|
|
60
|
+
},
|
|
61
|
+
"files": [
|
|
62
|
+
"assets",
|
|
63
|
+
"dist"
|
|
64
|
+
],
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"tsup": "^8.5.1",
|
|
67
|
+
"vite": "^8.0.0"
|
|
68
|
+
},
|
|
69
|
+
"gitHead": "82fe0f44215954c2417328203f5bd6510985c1fc"
|
|
70
|
+
}
|