Skip to content

Commit a09e090

Browse files
committed
docs: update use cases
Signed-off-by: Chojan Shang <chojan.shang@vesoft.com>
1 parent 6d52021 commit a09e090

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

docs/quickstart.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ Prefer to drive agents directly from Python? The `spawn_agent_process` helper wi
7373
import asyncio
7474
import sys
7575
from pathlib import Path
76+
from typing import Any
7677

7778
from acp import spawn_agent_process, text_block
7879
from acp.interfaces import Client
@@ -81,7 +82,7 @@ from acp.interfaces import Client
8182
class SimpleClient(Client):
8283
async def request_permission(
8384
self, options, session_id, tool_call, **kwargs: Any
84-
)
85+
):
8586
return {"outcome": {"outcome": "cancelled"}}
8687

8788
async def session_update(self, session_id, update, **kwargs):

docs/use-cases.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,15 @@ This page mirrors the quick-read style of the README/index: skim the tables, cop
77
| Project | What it showcases |
88
| --- | --- |
99
| [MoonshotAI/kimi-cli](https://github.com/MoonshotAI/kimi-cli) | A CLI-first ACP+MCP agent that helps with software dev and terminal workflows. Highlights streaming updates, permission prompts, and tool call UX. |
10+
| [MiniMax-AI/Mini-Agent](https://github.com/MiniMax-AI/Mini-Agent) | A minimal yet professional single agent demo project that showcases the core execution pipeline and production-grade features of agents. |
11+
| [OpenHands/OpenHands-CLI](https://github.com/OpenHands/OpenHands-CLI) | A lightweight, modern CLI to interact with the OpenHands agent. |
12+
| [evalstate/fast-agent](https://github.com/evalstate/fast-agent) | Define, Prompt and Test MCP enabled Agents and Workflows |
1013

1114
## Clients
1215

1316
| Project | What it showcases |
1417
| --- | --- |
15-
| [jimwhite/agent-client-kernel](https://github.com/jimwhite/agent-client-kernel) | A Jupyter kernel that speaks ACP so notebooks can chat with external agents. Great reference if you’re embedding ACP in notebook tooling. |
18+
| [wiki3-ai/agent-client-kernel](https://github.com/wiki3-ai/agent-client-kernel) | A Jupyter kernel that speaks ACP so notebooks can chat with external agents. Great reference if you’re embedding ACP in notebook tooling. |
1619
| [OhadRubin/simple-acp-client](https://github.com/OhadRubin/simple-acp-client) | A Claude Agent SDK–style Python client that wraps ACP executables with a friendly API. Use it as a starting point for bespoke clients. |
1720

1821
## Add your integration

0 commit comments

Comments
 (0)