Skip to content

Commit 1e129ed

Browse files
authored
chore: Remove examples/ directory and repository migration chores (#120)
1 parent 9f8bc02 commit 1e129ed

38 files changed

+40
-1907
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ body:
2727
id: terms
2828
attributes:
2929
label: Code of Conduct
30-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/google/A2A?tab=coc-ov-file#readme)
30+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/google-a2a/A2A?tab=coc-ov-file#readme)
3131
options:
3232
- label: I agree to follow this project's Code of Conduct
3333
required: true

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ body:
3535
id: terms
3636
attributes:
3737
label: Code of Conduct
38-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/google/a2a-python?tab=coc-ov-file#readme)
38+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/google-a2a/a2a-python?tab=coc-ov-file#readme)
3939
options:
4040
- label: I agree to follow this project's Code of Conduct
4141
required: true

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Thank you for opening a Pull Request!
44
Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
55

6-
- [ ] Follow the [`CONTRIBUTING` Guide](https://github.com/google/a2a-python/blob/main/CONTRIBUTING.md).
6+
- [ ] Follow the [`CONTRIBUTING` Guide](https://github.com/google-a2a/a2a-python/blob/main/CONTRIBUTING.md).
77
- [ ] Make your Pull Request title in the <https://www.conventionalcommits.org/> specification.
88
- [ ] Ensure the tests and linter pass (Run `nox -s format` from the repository root to format)
99
- [ ] Appropriate docs were updated (if necessary)

.github/workflows/linter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
# if on repo to avoid failing runs on forks
3030
if: |
31-
github.repository == 'google/a2a-python'
31+
github.repository == 'google-a2a/a2a-python'
3232
3333
##################
3434
# Load all steps #

.github/workflows/spelling.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
# if on repo to avoid failing runs on forks
2626
if: |
27-
github.repository == 'google/a2a-python'
27+
github.repository == 'google-a2a/a2a-python'
2828
&& (contains(github.event_name, 'pull_request') || github.event_name == 'push')
2929
concurrency:
3030
group: spelling-${{ github.event.pull_request.number || github.ref }}

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
runs-on: ubuntu-latest
1616

17-
if: github.repository == 'google/a2a-python'
17+
if: github.repository == 'google-a2a/a2a-python'
1818

1919
strategy:
2020
matrix:

.github/workflows/update-a2a-types.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: |
4141
set -euo pipefail # Exit immediately if a command exits with a non-zero status
4242
43-
REMOTE_URL="https://raw.githubusercontent.com/google/A2A/refs/heads/main/specification/json/a2a.json"
43+
REMOTE_URL="https://raw.githubusercontent.com/google-a2a/A2A/refs/heads/main/specification/json/a2a.json"
4444
GENERATED_FILE="${{ steps.vars.outputs.GENERATED_FILE }}"
4545
4646
echo "Running datamodel-codegen..."
@@ -67,10 +67,10 @@ jobs:
6767
token: ${{ secrets.A2A_BOT_PAT }}
6868
committer: "a2a-bot <[email protected]>"
6969
author: "a2a-bot <[email protected]>"
70-
commit-message: "chore: 🤖Auto-update A2A types from google/A2A@${{ github.event.client_payload.sha }}"
71-
title: "chore: 🤖 Auto-update A2A types from google/A2A"
70+
commit-message: "chore: 🤖Auto-update A2A types from google-a2a/A2A@${{ github.event.client_payload.sha }}"
71+
title: "chore: 🤖 Auto-update A2A types from google-a2a/A2A"
7272
body: |
73-
This PR updates `src/a2a/types.py` based on the latest `specification/json/a2a.json` from [google/A2A](https://github.com/google/A2A/commit/${{ github.event.client_payload.sha }}).
73+
This PR updates `src/a2a/types.py` based on the latest `specification/json/a2a.json` from [google-a2a/A2A](https://github.com/google-a2a/A2A/commit/${{ github.event.client_payload.sha }}).
7474
branch: "auto-update-a2a-types-${{ github.event.client_payload.sha }}"
7575
base: main
7676
labels: |

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
# Changelog
22

3-
## [0.2.4](https://github.com/google/a2a-python/compare/v0.2.3...v0.2.4) (2025-05-22)
3+
## [0.2.4](https://github.com/google-a2a/a2a-python/compare/v0.2.3...v0.2.4) (2025-05-22)
44

55

66
### Features
77

8-
* Update to support python 3.10 ([#85](https://github.com/google/a2a-python/issues/85)) ([fd9c3b5](https://github.com/google/a2a-python/commit/fd9c3b5b0bbef509789a701171d95f690c84750b))
8+
* Update to support python 3.10 ([#85](https://github.com/google-a2a/a2a-python/issues/85)) ([fd9c3b5](https://github.com/google-a2a/a2a-python/commit/fd9c3b5b0bbef509789a701171d95f690c84750b))
99

1010

1111
### Bug Fixes
1212

13-
* Throw exception for task_id mismatches ([#70](https://github.com/google/a2a-python/issues/70)) ([a9781b5](https://github.com/google/a2a-python/commit/a9781b589075280bfaaab5742d8b950916c9de74))
13+
* Throw exception for task_id mismatches ([#70](https://github.com/google-a2a/a2a-python/issues/70)) ([a9781b5](https://github.com/google-a2a/a2a-python/commit/a9781b589075280bfaaab5742d8b950916c9de74))
1414

15-
## [0.2.3](https://github.com/google/a2a-python/compare/v0.2.2...v0.2.3) (2025-05-20)
15+
## [0.2.3](https://github.com/google-a2a/a2a-python/compare/v0.2.2...v0.2.3) (2025-05-20)
1616

1717

1818
### Features
1919

20-
* Add request context builder with referenceTasks ([#56](https://github.com/google/a2a-python/issues/56)) ([f20bfe7](https://github.com/google/a2a-python/commit/f20bfe74b8cc854c9c29720b2ea3859aff8f509e))
20+
* Add request context builder with referenceTasks ([#56](https://github.com/google-a2a/a2a-python/issues/56)) ([f20bfe7](https://github.com/google-a2a/a2a-python/commit/f20bfe74b8cc854c9c29720b2ea3859aff8f509e))
2121

22-
## [0.2.2](https://github.com/google/a2a-python/compare/v0.2.1...v0.2.2) (2025-05-20)
22+
## [0.2.2](https://github.com/google-a2a/a2a-python/compare/v0.2.1...v0.2.2) (2025-05-20)
2323

2424

2525
### Documentation
2626

27-
* Write/Update Docstrings for Classes/Methods ([#59](https://github.com/google/a2a-python/issues/59)) ([9f773ef](https://github.com/google/a2a-python/commit/9f773eff4dddc4eec723d519d0050f21b9ccc042))
27+
* Write/Update Docstrings for Classes/Methods ([#59](https://github.com/google-a2a/a2a-python/issues/59)) ([9f773ef](https://github.com/google-a2a/a2a-python/commit/9f773eff4dddc4eec723d519d0050f21b9ccc042))

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<html>
1010
<h2 align="center">
11-
<img src="https://raw.githubusercontent.com/google/A2A/refs/heads/main/docs/assets/a2a-logo-black.svg" width="256" alt="A2A Logo"/>
11+
<img src="https://raw.githubusercontent.com/google-a2a/A2A/refs/heads/main/docs/assets/a2a-logo-black.svg" width="256" alt="A2A Logo"/>
1212
</h2>
1313
<h3 align="center">A Python library that helps run agentic applications as A2AServers following the <a href="https://google.github.io/A2A">Agent2Agent (A2A) Protocol</a>.</h3>
1414
</html>
@@ -42,12 +42,13 @@ pip install a2a-sdk
4242

4343
## Examples
4444

45-
### [Helloworld Example](https://github.com/google/a2a-python/tree/main/examples/helloworld)
45+
### [Helloworld Example](https://github.com/google/a2a-samples/tree/main/samples/helloworld)
4646

4747
1. Run Remote Agent
4848

4949
```bash
50-
cd examples/helloworld
50+
git clone https://github.com/google-a2a/a2a-samples.git
51+
cd samples/helloworld
5152
uv run .
5253
```
5354

@@ -57,12 +58,12 @@ pip install a2a-sdk
5758
uv run test_client.py
5859
```
5960

60-
You can also find more examples [here](https://github.com/google/A2A/tree/main/samples/python/agents)
61+
You can also find more examples [here](https://github.com/google-a2a/A2A/tree/main/samples/python/agents)
6162

6263
## License
6364

64-
This project is licensed under the terms of the [Apache 2.0 License](https://raw.githubusercontent.com/google/a2a-python/refs/heads/main/LICENSE).
65+
This project is licensed under the terms of the [Apache 2.0 License](https://raw.githubusercontent.com/google-a2a/a2a-python/refs/heads/main/LICENSE).
6566

6667
## Contributing
6768

68-
See [CONTRIBUTING.md](https://github.com/google/a2a-python/blob/main/CONTRIBUTING.md) for contribution guidelines.
69+
See [CONTRIBUTING.md](https://github.com/google-a2a/a2a-python/blob/main/CONTRIBUTING.md) for contribution guidelines.

development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
```bash
66
uv run datamodel-codegen \
7-
--url https://raw.githubusercontent.com/google/A2A/refs/heads/main/specification/json/a2a.json \
7+
--url https://raw.githubusercontent.com/google-a2a/A2A/refs/heads/main/specification/json/a2a.json \
88
--input-file-type jsonschema \
99
--output ./src/a2a/types.py \
1010
--target-python-version 3.10 \

examples/google_adk/__init__.py

Whitespace-only changes.

examples/google_adk/birthday_planner/README.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

examples/google_adk/birthday_planner/__init__.py

Whitespace-only changes.

examples/google_adk/birthday_planner/__main__.py

Lines changed: 0 additions & 76 deletions
This file was deleted.

0 commit comments

Comments
 (0)