Skip to content

Commit f8df885

Browse files
authored
docs: fix all the broken links after the repo migration (#25)
Signed-off-by: Keming <[email protected]>
1 parent 11b09d4 commit f8df885

File tree

5 files changed

+23
-23
lines changed

5 files changed

+23
-23
lines changed

CONTRIBUTING.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing to `agent-client-protocol-python`
1+
# Contributing to `agentclientprotocol/python-sdk`
22

33
Contributions are welcome, and they are greatly appreciated!
44
Every little bit helps, and credit will always be given.
@@ -9,7 +9,7 @@ You can contribute in many ways:
99

1010
## Report Bugs
1111

12-
Report bugs at https://github.com/psiace/agent-client-protocol-python/issues
12+
Report bugs at https://github.com/agentclientprotocol/python-sdk/issues
1313

1414
If you are reporting a bug, please include:
1515

@@ -29,11 +29,11 @@ Anything tagged with "enhancement" and "help wanted" is open to whoever wants to
2929

3030
## Write Documentation
3131

32-
agent-client-protocol-python could always use more documentation, whether as part of the official docs, in docstrings, or even on the web in blog posts, articles, and such.
32+
This project could always use more documentation, whether as part of the official docs, in docstrings, or even on the web in blog posts, articles, and such.
3333

3434
## Submit Feedback
3535

36-
The best way to send feedback is to file an issue at https://github.com/psiace/agent-client-protocol-python/issues.
36+
The best way to send feedback is to file an issue at https://github.com/agentclientprotocol/python-sdk/issues.
3737

3838
If you are proposing a new feature:
3939

@@ -44,22 +44,22 @@ If you are proposing a new feature:
4444

4545
# Get Started!
4646

47-
Ready to contribute? Here's how to set up `agent-client-protocol-python` for local development.
47+
Ready to contribute? Here's how to set up the project for local development.
4848
Please note this documentation assumes you already have `uv` and `Git` installed and ready to go.
4949

50-
1. Fork the `agent-client-protocol-python` repo on GitHub.
50+
1. Fork the `agentclientprotocol/python-sdk` repo on GitHub.
5151

5252
2. Clone your fork locally:
5353

5454
```bash
5555
cd <directory_in_which_repo_should_be_created>
56-
git clone [email protected]:YOUR_NAME/agent-client-protocol-python.git
56+
git clone [email protected]:YOUR_NAME/python-sdk.git
5757
```
5858

5959
3. Now we need to install the environment. Navigate into the directory
6060

6161
```bash
62-
cd agent-client-protocol-python
62+
cd python-sdk
6363
```
6464

6565
Then, install and activate the environment with:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ uv add agent-client-protocol
3434
```
3535
2. Wire it into your client (e.g. Zed → Agents panel) so stdio is connected; the SDK handles JSON-RPC framing and lifecycle messages.
3636

37-
Prefer a step-by-step walkthrough? Read the [Quickstart guide](docs/quickstart.md) or the hosted docs: https://psiace.github.io/agent-client-protocol-python/.
37+
Prefer a step-by-step walkthrough? Read the [Quickstart guide](docs/quickstart.md) or the hosted docs: https://agentclientprotocol.github.io/python-sdk/.
3838

3939
### Launching from Python
4040

@@ -162,7 +162,7 @@ Read more in [docs/contrib.md](docs/contrib.md).
162162

163163
## Documentation
164164

165-
- Project docs (MkDocs): https://psiace.github.io/agent-client-protocol-python/
165+
- Project docs (MkDocs): https://agentclientprotocol.github.io/python-sdk/
166166
- Local sources: `docs/`
167167
- [Quickstart](docs/quickstart.md)
168168
- [Contrib helpers](docs/contrib.md)

docs/quickstart.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Add an Agent Server entry in `settings.json` (Zed → Settings → Agents panel)
3737
"Echo Agent (Python)": {
3838
"command": "/abs/path/to/python",
3939
"args": [
40-
"/abs/path/to/agent-client-protocol-python/examples/echo_agent.py"
40+
"/abs/path/to/agentclientprotocol/python-sdk/examples/echo_agent.py"
4141
]
4242
}
4343
}
@@ -103,10 +103,10 @@ class MyAgent(Agent):
103103

104104
Hook it up with `AgentSideConnection` inside an async entrypoint and wire it to your client. Refer to:
105105

106-
- [`examples/echo_agent.py`](https://github.com/psiace/agent-client-protocol-python/blob/main/examples/echo_agent.py) for the smallest streaming agent
107-
- [`examples/agent.py`](https://github.com/psiace/agent-client-protocol-python/blob/main/examples/agent.py) for an implementation that negotiates capabilities and streams richer updates
108-
- [`examples/duet.py`](https://github.com/psiace/agent-client-protocol-python/blob/main/examples/duet.py) to see `spawn_agent_process` in action alongside the interactive client
109-
- [`examples/gemini.py`](https://github.com/psiace/agent-client-protocol-python/blob/main/examples/gemini.py) to drive the Gemini CLI (`--experimental-acp`) directly from Python
106+
- [`examples/echo_agent.py`](https://github.com/agentclientprotocol/python-sdk/blob/main/examples/echo_agent.py) for the smallest streaming agent
107+
- [`examples/agent.py`](https://github.com/agentclientprotocol/python-sdk/blob/main/examples/agent.py) for an implementation that negotiates capabilities and streams richer updates
108+
- [`examples/duet.py`](https://github.com/agentclientprotocol/python-sdk/blob/main/examples/duet.py) to see `spawn_agent_process` in action alongside the interactive client
109+
- [`examples/gemini.py`](https://github.com/agentclientprotocol/python-sdk/blob/main/examples/gemini.py) to drive the Gemini CLI (`--experimental-acp`) directly from Python
110110

111111
Need builders for common payloads? `acp.helpers` mirrors the Go/TS helper APIs:
112112

mkdocs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
site_name: Agent Client Protocol - Python SDK
2-
repo_url: https://github.com/psiace/agent-client-protocol-python
3-
site_url: https://psiace.github.io/agent-client-protocol-python
2+
repo_url: https://github.com/agentclientprotocol/python-sdk
3+
site_url: https://agentclientprotocol.github.io/python-sdk
44
site_description: A Python implement of Agent Client Protocol (ACP, by Zed Industries)
55
site_author: Chojan Shang
66
edit_uri: edit/main/docs/
7-
repo_name: psiace/agent-client-protocol-python
7+
repo_name: agentclientprotocol/python-sdk
88
copyright: Maintained by <a href="https://github.com/psiace">psiace</a>.
99

1010
nav:
@@ -43,9 +43,9 @@ theme:
4343
extra:
4444
social:
4545
- icon: fontawesome/brands/github
46-
link: https://github.com/psiace/agent-client-protocol-python
46+
link: https://github.com/agentclientprotocol/python-sdk
4747
- icon: fontawesome/brands/python
48-
link: https://pypi.org/project/agent-client-protocol-python
48+
link: https://pypi.org/project/agent-client-protocol
4949

5050
markdown_extensions:
5151
- toc:

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ dependencies = [
2323

2424

2525
[project.urls]
26-
Homepage = "https://psiace.github.io/agent-client-protocol-python/"
27-
Repository = "https://github.com/psiace/agent-client-protocol-python"
28-
Documentation = "https://psiace.github.io/agent-client-protocol-python/"
26+
Homepage = "https://agentclientprotocol.github.io/python-sdk/"
27+
Repository = "https://github.com/agentclientprotocol/python-sdk"
28+
Documentation = "https://agentclientprotocol.github.io/python-sdk/"
2929

3030
[dependency-groups]
3131
dev = [

0 commit comments

Comments
 (0)