ace-swarm 2.3.0 → 2.3.1
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/README.md +12 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# ACE Swarm MCP Server
|
|
2
2
|
|
|
3
|
-
ACE Swarm is an MCP server and terminal-first CLI for durable agent orchestration.
|
|
3
|
+
ACE Swarm is an MCP server and terminal-first CLI for durable multi-agent orchestration and agent runtime infrastructure.
|
|
4
4
|
|
|
5
|
-
It
|
|
5
|
+
It exposes 90+ MCP tools that turn agent workflow coordination into a local control plane with explicit state, typed handoffs, resource locks, semantic diffs, runtime profiles, and operator tooling. No signup. No API key required for the Ollama path. One command to bootstrap.
|
|
6
6
|
|
|
7
7
|
## System Map
|
|
8
8
|
|
|
@@ -60,6 +60,8 @@ ACE Swarm
|
|
|
60
60
|
+----+-----------------------------------------------+-----------------------------------------------+
|
|
61
61
|
```
|
|
62
62
|
|
|
63
|
+
30 seconds later the workspace has 17 agent roles, 15 packaged skills, a durable state layer, and MCP client configs for Codex, VS Code, Claude Desktop, Cursor, Gemini, and Antigravity.
|
|
64
|
+
|
|
63
65
|
## Recent Releases
|
|
64
66
|
|
|
65
67
|
```text
|
|
@@ -114,7 +116,7 @@ See [CHANGELOG.md](./CHANGELOG.md) for detailed release notes.
|
|
|
114
116
|
| Bootstrap | workspace state, tasks, configs | `ace init`, `ace turnkey`, `ace mcp-config` |
|
|
115
117
|
| Agent runtime | swarm roles, model bridge, tool planning | MCP server, TUI `/agent`, packaged agent assets |
|
|
116
118
|
| Durable state | ledgers, TODOs, handoffs, status events | runtime stores under `agent-state/*` |
|
|
117
|
-
| Dispatch | queue, lock table, lease, recovery
|
|
119
|
+
| Dispatch | job queue, lock table, lease, recovery | `enqueue_job`, `dispatch_jobs`, `complete_job` |
|
|
118
120
|
| Supervision | plan amendment, handoff, Vericify, breakers | `superviseTaskPlan`, `amendTaskPlan` |
|
|
119
121
|
| Change analysis | delta scan, semantic diff, rewrite hints | `scan_workspace_delta`, `semantic_diff`, etc. |
|
|
120
122
|
| Operator UI | tabs, ACE chat bridge, telemetry, providers | `ace tui` |
|
|
@@ -222,17 +224,17 @@ See [CHANGELOG.md](./CHANGELOG.md) for detailed release notes.
|
|
|
222
224
|
|
|
223
225
|
Provider notes:
|
|
224
226
|
|
|
225
|
-
- Ollama works directly through `ace tui
|
|
226
|
-
- ACE workspaces automatically route chat tabs through the ACE model bridge,
|
|
227
|
+
- Ollama works directly through `ace tui` — a zero-cost local AI agent runtime with no API keys required.
|
|
228
|
+
- ACE workspaces automatically route chat tabs through the ACE model bridge, handling the full AI agent lifecycle from tool selection through execution, with streamed tool/result updates in the transcript.
|
|
227
229
|
- OpenAI-compatible providers use `OPENAI_API_KEY` and optional `OPENAI_BASE_URL`, or provider-scoped equivalents such as `CODEX_API_KEY` and `CODEX_BASE_URL`.
|
|
228
230
|
- `/agent` sessions can now accept follow-up input while blocked or idle, so operators can continue a run without relaunching the worker tab.
|
|
229
231
|
- VS Code Copilot model hints may appear in discovery, but the standalone TUI does not directly execute through the VS Code chat runtime without an extension-side bridge.
|
|
230
232
|
|
|
231
233
|
## Supervisor And Bridge Notes
|
|
232
234
|
|
|
233
|
-
- `ModelBridge`
|
|
234
|
-
- Supervisor helpers
|
|
235
|
-
- Hook dispatch
|
|
235
|
+
- `ModelBridge` performs a tool-planning turn before execution — selecting from the 90+ registered tools — and can amend the model-selected scope mid-run when another valid ACE tool is required.
|
|
236
|
+
- Supervisor helpers support sequential task-plan execution with amendments, typed agent handoff protocol flows with schema validation, Vericify context carry-forward for state continuity, and circuit-breaker open/close hooks for upstream failure handling.
|
|
237
|
+
- Hook dispatch emits richer role-aware ACE context across workspace lifecycle events, including Codex, Claude Code, VS Code Copilot, Cursor, Gemini, and Antigravity hook bundles.
|
|
236
238
|
|
|
237
239
|
## Bootstrap Outputs
|
|
238
240
|
|
|
@@ -256,7 +258,7 @@ Provider notes:
|
|
|
256
258
|
+-----------------------------------+------------------------------------------------------+
|
|
257
259
|
```
|
|
258
260
|
|
|
259
|
-
Local-model bootstrap:
|
|
261
|
+
Local-model bootstrap (no API key, no cloud dependency):
|
|
260
262
|
|
|
261
263
|
```bash
|
|
262
264
|
npx -y ace-swarm turnkey --project "My Project" --llm ollama --model llama3.1:8b
|
|
@@ -289,7 +291,7 @@ ace doctor --llm ollama --model llama3.1:8b
|
|
|
289
291
|
+----------------------+-----------------------------------------------------------+
|
|
290
292
|
| Swarm agents | 4: orchestrator, vos, ui, coders |
|
|
291
293
|
| Composable agents | 13: astgrep, skeptic, ops, research, spec, builder, ... |
|
|
292
|
-
| Skills |
|
|
294
|
+
| Skills | 15 packaged skills including orchestrator, codemunch, |
|
|
293
295
|
| | codesnipe, state-auditor, schema-forge, release-sentry |
|
|
294
296
|
| Tasks / templates | `todo.md`, `lessons.md`, `role_tasks.md`, |
|
|
295
297
|
| | `cli_work_split.md`, `SWARM_HANDOFF.template.json` |
|
package/package.json
CHANGED