Skip to content

Commit d8f053d

Browse files
authored
Add fast-agent to the Agents list (#351)
* update capitalization, naming, use fast-agent.ai site * docs: normalize fast-agent naming
1 parent feec748 commit d8f053d

5 files changed

Lines changed: 12 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Repo: https://github.com/openclaw/acpx
1010

1111
- Agents/built-ins: bump the default Claude ACP adapter range to `@agentclientprotocol/claude-agent-acp@^0.37.0`. Thanks @trumpyla.
1212
- Runtime/embedding: surface cost, token usage breakdowns, and advertised command metadata on runtime status/events. Thanks @DaniAkash.
13-
- Agents/built-ins: add `fast-agent` as a built-in EvalState fast-agent ACP adapter via `uvx fast-agent-mcp acp`.
13+
- Agents/built-ins: add `fast-agent` as a built-in fast-agent ACP adapter via `uvx fast-agent-mcp acp`.
1414

1515
### Breaking
1616

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ Built-ins:
351351
| `cursor` | native (`cursor-agent acp`) | [Cursor CLI](https://cursor.com/docs/cli/acp) |
352352
| `copilot` | native (`copilot --acp --stdio`) | [GitHub Copilot CLI](https://docs.github.com/copilot/how-tos/copilot-chat/use-copilot-chat-in-the-command-line) |
353353
| `droid` | native (`droid exec --output-format acp`) | [Factory Droid](https://www.factory.ai) |
354-
| `fast-agent` | `uvx fast-agent-mcp acp` | [EvalState fast-agent](https://github.com/evalstate/fast-agent) |
354+
| `fast-agent` | `uvx fast-agent-mcp acp` | [fast-agent](https://fast-agent.ai) |
355355
| `iflow` | native (`iflow --experimental-acp`) | [iFlow CLI](https://github.com/iflow-ai/iflow-cli) |
356356
| `kilocode` | `npx -y @kilocode/cli acp` | [Kilocode](https://kilocode.ai) |
357357
| `kimi` | native (`kimi acp`) | [Kimi CLI](https://github.com/MoonshotAI/kimi-cli) |

agents/FastAgent.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
- Built-in name: `fast-agent`
44
- Default command: `uvx fast-agent-mcp acp`
5-
- Upstream: https://github.com/evalstate/fast-agent
5+
- Upstream: https://fast-agent.ai/acp
66

7-
`acpx fast-agent` starts EvalState fast-agent through its ACP entrypoint. It requires `uvx` on `PATH`.
7+
`acpx fast-agent` starts fast-agent through its ACP entrypoint. It requires `uvx` on `PATH`.
88

99
Configure model/provider settings through fast-agent environment variables, fast-agent configuration, or an `acpx` agent override with additional `fast-agent-mcp acp` arguments.

agents/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Harness-specific docs in this directory:
2626
- [Claude](Claude.md): built-in `claude -> npx -y @agentclientprotocol/claude-agent-acp`
2727
- [Copilot](Copilot.md): built-in `copilot -> copilot --acp --stdio`
2828
- [Droid](Droid.md): built-in `droid -> droid exec --output-format acp` with `factory-droid` and `factorydroid` aliases
29-
- [FastAgent](FastAgent.md): built-in `fast-agent -> uvx fast-agent-mcp acp`
29+
- [fast-agent](FastAgent.md): built-in `fast-agent -> uvx fast-agent-mcp acp`
3030
- [Cursor](Cursor.md): built-in `cursor -> cursor-agent acp`
3131
- [Gemini](Gemini.md): built-in `gemini -> gemini --acp`
3232
- [iFlow](Iflow.md): built-in `iflow -> iflow --experimental-acp`

docs/agents.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The default agent for top-level commands like `acpx exec …` and `acpx prompt
1919
| `cursor` | `cursor-agent acp` | [Cursor CLI](https://cursor.com/docs/cli/acp) |
2020
| `copilot` | `copilot --acp --stdio` | [GitHub Copilot CLI](https://docs.github.com/copilot/how-tos/copilot-chat/use-copilot-chat-in-the-command-line) |
2121
| `droid` | `droid exec --output-format acp` | [Factory Droid](https://www.factory.ai) |
22-
| `fast-agent` | `uvx fast-agent-mcp acp` | [EvalState fast-agent](https://github.com/evalstate/fast-agent) |
22+
| `fast-agent` | `uvx fast-agent-mcp acp` | [fast-agent](https://fast-agent.ai/) |
2323
| `iflow` | `iflow --experimental-acp` | [iFlow CLI](https://github.com/iflow-ai/iflow-cli) |
2424
| `kilocode` | `npx -y @kilocode/cli acp` | [Kilocode](https://kilocode.ai) |
2525
| `kimi` | `kimi acp` | [Kimi CLI](https://github.com/MoonshotAI/kimi-cli) |
@@ -124,12 +124,15 @@ If your Cursor install exposes ACP as `agent acp` instead of `cursor-agent acp`,
124124
- Default command: `droid exec --output-format acp`
125125
- Upstream: [factory.ai](https://www.factory.ai)
126126

127-
### Fast Agent
127+
### fast-agent
128128

129129
- Built-in name: `fast-agent`
130130
- Default command: `uvx fast-agent-mcp acp`
131-
- Upstream: [EvalState fast-agent](https://github.com/evalstate/fast-agent)
132-
- Requires `uvx` on `PATH`. Configure fast-agent model/provider settings through environment variables, fast-agent configuration, or an `acpx` agent override with additional `fast-agent-mcp acp` arguments.
131+
- Upstream: https://fast-agent.ai/acp
132+
133+
`acpx fast-agent` starts fast-agent through its ACP entrypoint. It requires `uvx` on `PATH`.
134+
135+
Configure model/provider settings through fast-agent environment variables, fast-agent configuration, or an `acpx` agent override with additional `fast-agent-mcp acp` arguments.
133136

134137
### Qoder
135138

0 commit comments

Comments
 (0)