Skip to content

Commit dfb2b51

Browse files
authored
Merge pull request #287 from ai-agent-assembly/v0.0.1/AAASM-4923/config/metadata_convert
[AAASM-4923] 📝 (docs): Align python-sdk metadata to canonical
2 parents a64f59c + c6ed587 commit dfb2b51

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

.claude/CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ this order: explicit args → env (`AAASM_GATEWAY_URL` / `AAASM_API_KEY`) →
119119

120120
## Project policy
121121

122-
- **JIRA:** project AAASM; set **Component** (`customfield_10041`) to
122+
- **JIRA:** project AAASM; set the native **Components** field to
123123
`ai-agent-assembly/python-sdk`; Team (`customfield_10001`) = Pioneer.
124124
Epic → Story → Subtask (one Subtask ≈ one commit) + a `Verify …` subtask per Story.
125125
- **Self-hosted deployment is out of scope** product-wide — don't propose

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ directly:
318318
| [python-sdk](https://github.com/ai-agent-assembly/python-sdk) | **This repo** — the Python SDK. |
319319
| [node-sdk](https://github.com/ai-agent-assembly/node-sdk) · [go-sdk](https://github.com/ai-agent-assembly/go-sdk) | Sibling SDKs for TypeScript/Node and Go. |
320320
| [homebrew-tap](https://github.com/ai-agent-assembly/homebrew-tap) | Homebrew tap for installing the `aasm` runtime CLI. |
321-
| [agent-assembly-examples](https://github.com/ai-agent-assembly/examples) | Runnable examples — learn by running small, framework-specific Python (and Node/Go) samples covering policy enforcement, approvals, audit, trace, and runtime workflows. |
321+
| [examples](https://github.com/ai-agent-assembly/examples) | Runnable examples — learn by running small, framework-specific Python (and Node/Go) samples covering policy enforcement, approvals, audit, trace, and runtime workflows. |
322322

323323
The protocol specification and gateway behaviour the SDK targets live in the core runtime
324324
monorepo; see its [README](https://github.com/ai-agent-assembly/agent-assembly#readme) for the

docs/examples/framework-support.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ entry points. On exit, all hooks are removed in reverse order.
3636
Each framework below ships an adapter under `agent_assembly/adapters/`. The
3737
**Runnable example** column reflects whether a complete, validated example exists today —
3838
either inline in this guide or as a curated script in the central
39-
[`agent-assembly-examples`](https://github.com/ai-agent-assembly/examples/tree/master/python)
39+
[`examples`](https://github.com/ai-agent-assembly/examples/tree/master/python)
4040
repository.
4141

4242
| Framework | Adapter | Runnable example |
@@ -104,7 +104,7 @@ directory for additional in-repo runnable scripts and their status.
104104
## More runnable examples
105105

106106
Curated, end-to-end examples for each framework live in the central
107-
[`agent-assembly-examples`](https://github.com/ai-agent-assembly/examples/tree/master/python)
107+
[`examples`](https://github.com/ai-agent-assembly/examples/tree/master/python)
108108
repository. Each directory is a self-contained, cloneable project. This section documents each
109109
one in detail — start with [Preparing the runtime environment](preparing-the-runtime-environment.md),
110110
then follow the per-framework page:

docs/examples/index.md

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

33
End-to-end, runnable examples that govern real AI agent frameworks with Agent Assembly. Each
44
example is a self-contained project in the
5-
[`agent-assembly-examples`](https://github.com/ai-agent-assembly/examples/tree/master/python)
5+
[`examples`](https://github.com/ai-agent-assembly/examples/tree/master/python)
66
repository, and each page below walks through what it demonstrates, how the `init_assembly()`
77
adapter flow wires the framework, an annotated code walkthrough, and the expected output.
88

docs/examples/preparing-the-runtime-environment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Preparing the runtime environment
22

33
Every page in this section walks through a self-contained, cloneable example from the
4-
[`agent-assembly-examples`](https://github.com/ai-agent-assembly/examples/tree/master/python)
4+
[`examples`](https://github.com/ai-agent-assembly/examples/tree/master/python)
55
repository. The examples share the same prerequisites and the same run shape, so this page
66
collects everything you need **once** — each per-framework page then only lists what is
77
specific to that example.
@@ -42,7 +42,7 @@ directory:
4242

4343
```bash
4444
git clone https://github.com/ai-agent-assembly/examples.git
45-
cd agent-assembly-examples/python
45+
cd examples/python
4646
```
4747

4848
Each subdirectory under `python/` is a standalone project with its own `README.md`,

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ all = ["agent-assembly[runtime]"]
7878
aasm = "agent_assembly.cli.main:main"
7979

8080
[project.urls]
81-
Homepage = "https://github.com/AI-agent-assembly/python-sdk"
82-
Repository = "https://github.com/AI-agent-assembly/python-sdk"
81+
Homepage = "https://github.com/ai-agent-assembly/python-sdk"
82+
Repository = "https://github.com/ai-agent-assembly/python-sdk"
8383

8484
[dependency-groups]
8585
dev = [

0 commit comments

Comments
 (0)