Skip to content

Commit e532b53

Browse files
committed
chore: update all repository URLs from symposium-dev to agentclientprotocol
- Update repository URLs in all Cargo.toml files - Update book.toml git repository and edit URLs - Update documentation links in source code - Update workflow repository owner checks - Update git remote origin URL Completes the migration to the agentclientprotocol organization.
1 parent 2998e23 commit e532b53

14 files changed

Lines changed: 37 additions & 23 deletions

File tree

.github/workflows/release-plz.yml

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
jobs:
99
release-plz-release:
1010
name: Release-plz release
11+
environment: release # Optional: for enhanced security
1112
runs-on: ubuntu-latest
1213
if: ${{ github.repository_owner == 'agentclientprotocol' }}
1314
permissions:
@@ -16,20 +17,32 @@ jobs:
1617
steps:
1718
- &checkout
1819
name: Checkout repository
19-
uses: actions/checkout@v5
20+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
2021
with:
2122
fetch-depth: 0
22-
persist-credentials: true
23-
token: ${{ secrets.RELEASE_PLZ_TOKEN }}
23+
persist-credentials: false
2424
- &install-rust
2525
name: Install Rust toolchain
26-
uses: dtolnay/rust-toolchain@stable
26+
uses: dtolnay/rust-toolchain@efa25f7f19611383d5b0ccf2d1c8914531636bf9
27+
with:
28+
toolchain: stable
29+
- &generate-token
30+
# Generating a GitHub token, so that PRs and tags created by
31+
# the release-plz-action can trigger actions workflows.
32+
name: Generate GitHub token
33+
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859
34+
id: generate-token
35+
with:
36+
# GitHub App ID secret name
37+
app-id: ${{ secrets.RELEASE_PLZ_APP_ID }}
38+
# GitHub App private key secret name
39+
private-key: ${{ secrets.RELEASE_PLZ_APP_PRIVATE_KEY }}
2740
- name: Run release-plz
28-
uses: release-plz/action@v0.5
41+
uses: release-plz/action@1528104d2ca23787631a1c1f022abb64b34c1e11
2942
with:
3043
command: release
3144
env:
32-
GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }}
45+
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}
3346

3447
release-plz-pr:
3548
name: Release-plz PR
@@ -44,9 +57,10 @@ jobs:
4457
steps:
4558
- *checkout
4659
- *install-rust
60+
- *generate-token
4761
- name: Run release-plz
48-
uses: release-plz/action@v0.5
62+
uses: release-plz/action@1528104d2ca23787631a1c1f022abb64b34c1e11
4963
with:
5064
command: release-pr
5165
env:
52-
GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }}
66+
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}

book.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ command = "mdbook-mermaid"
1010

1111
[output.html]
1212
additional-js = ["mermaid.min.js", "mermaid-init.js"]
13-
git-repository-url = "https://github.com/symposium-dev/symposium-acp"
14-
edit-url-template = "https://github.com/symposium-dev/symposium-acp/edit/main/{path}"
13+
git-repository-url = "https://github.com/agentclientprotocol/symposium-acp"
14+
edit-url-template = "https://github.com/agentclientprotocol/symposium-acp/edit/main/{path}"

src/sacp-conductor/.github/workflows/release-plz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
release-plz-release:
1010
name: Release-plz release
1111
runs-on: ubuntu-latest
12-
if: ${{ github.repository_owner == 'symposium-dev' }}
12+
if: ${{ github.repository_owner == 'agentclientprotocol' }}
1313
permissions:
1414
contents: write
1515
id-token: write
@@ -34,7 +34,7 @@ jobs:
3434
release-plz-pr:
3535
name: Release-plz PR
3636
runs-on: ubuntu-latest
37-
if: ${{ github.repository_owner == 'symposium-dev' }}
37+
if: ${{ github.repository_owner == 'agentclientprotocol' }}
3838
permissions:
3939
pull-requests: write
4040
contents: write

src/sacp-conductor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "11.0.0"
44
edition = "2024"
55
description = "Conductor for orchestrating SACP proxy chains"
66
license = "MIT OR Apache-2.0"
7-
repository = "https://github.com/symposium-dev/symposium-acp"
7+
repository = "https://github.com/agentclientprotocol/symposium-acp"
88
keywords = ["acp", "agent", "conductor", "ai"]
99
categories = ["development-tools"]
1010

src/sacp-cookbook/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "11.0.0"
44
edition = "2024"
55
description = "Cookbook of common patterns for building ACP components"
66
license = "MIT OR Apache-2.0"
7-
repository = "https://github.com/symposium-dev/symposium-acp"
7+
repository = "https://github.com/agentclientprotocol/symposium-acp"
88
keywords = ["acp", "agent", "proxy", "mcp", "cookbook"]
99
categories = ["development-tools"]
1010

src/sacp-cookbook/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -851,5 +851,5 @@ pub mod running_proxies_with_conductor {
851851
//!
852852
//! [`sacp-conductor`]: https://crates.io/crates/sacp-conductor
853853
//! [`SuccessorMessage`]: sacp::schema::SuccessorMessage
854-
//! [`sacp-conductor` tests]: https://github.com/symposium-dev/symposium-acp/tree/main/src/sacp-conductor/tests
854+
//! [`sacp-conductor` tests]: https://github.com/agentclientprotocol/symposium-acp/tree/main/src/sacp-conductor/tests
855855
}

src/sacp-rmcp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "11.0.0"
44
edition = "2024"
55
description = "rmcp integration for SACP proxy components"
66
license = "MIT OR Apache-2.0"
7-
repository = "https://github.com/symposium-dev/symposium-acp"
7+
repository = "https://github.com/agentclientprotocol/symposium-acp"
88
keywords = ["acp", "agent", "proxy", "mcp", "rmcp"]
99
categories = ["development-tools"]
1010

src/sacp-tokio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "11.0.0"
44
edition = "2024"
55
description = "Tokio-based utilities for SACP (Symposium's extensions to ACP)"
66
license = "MIT OR Apache-2.0"
7-
repository = "https://github.com/symposium-dev/symposium-acp"
7+
repository = "https://github.com/agentclientprotocol/symposium-acp"
88
keywords = ["acp", "agent", "protocol", "ai", "tokio"]
99
categories = ["development-tools"]
1010

src/sacp-trace-viewer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "11.0.0"
44
edition = "2024"
55
description = "Interactive sequence diagram viewer for SACP trace files"
66
license = "MIT OR Apache-2.0"
7-
repository = "https://github.com/symposium-dev/symposium-acp"
7+
repository = "https://github.com/agentclientprotocol/symposium-acp"
88
keywords = ["acp", "trace", "debugging", "visualization"]
99
categories = ["development-tools::debugging"]
1010

src/sacp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "11.0.0"
44
edition = "2024"
55
description = "Core protocol types and traits for SACP (Symposium's extensions to ACP)"
66
license = "MIT OR Apache-2.0"
7-
repository = "https://github.com/symposium-dev/symposium-acp"
7+
repository = "https://github.com/agentclientprotocol/symposium-acp"
88
keywords = ["acp", "agent", "protocol", "ai"]
99
categories = ["development-tools"]
1010

0 commit comments

Comments
 (0)