Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude/CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ this order: explicit args β†’ env (`AAASM_GATEWAY_URL` / `AAASM_API_KEY`) β†’

## Project policy

- **JIRA:** project AAASM; set **Component** (`customfield_10041`) to
- **JIRA:** project AAASM; set the native **Components** field to
`ai-agent-assembly/python-sdk`; Team (`customfield_10001`) = Pioneer.
Epic β†’ Story β†’ Subtask (one Subtask β‰ˆ one commit) + a `Verify …` subtask per Story.
- **Self-hosted deployment is out of scope** product-wide β€” don't propose
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ directly:
| [python-sdk](https://github.com/ai-agent-assembly/python-sdk) | **This repo** β€” the Python SDK. |
| [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. |
| [homebrew-tap](https://github.com/ai-agent-assembly/homebrew-tap) | Homebrew tap for installing the `aasm` runtime CLI. |
| [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. |
| [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. |

The protocol specification and gateway behaviour the SDK targets live in the core runtime
monorepo; see its [README](https://github.com/ai-agent-assembly/agent-assembly#readme) for the
Expand Down
4 changes: 2 additions & 2 deletions docs/examples/framework-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ entry points. On exit, all hooks are removed in reverse order.
Each framework below ships an adapter under `agent_assembly/adapters/`. The
**Runnable example** column reflects whether a complete, validated example exists today β€”
either inline in this guide or as a curated script in the central
[`agent-assembly-examples`](https://github.com/ai-agent-assembly/examples/tree/master/python)
[`examples`](https://github.com/ai-agent-assembly/examples/tree/master/python)
repository.

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

Curated, end-to-end examples for each framework live in the central
[`agent-assembly-examples`](https://github.com/ai-agent-assembly/examples/tree/master/python)
[`examples`](https://github.com/ai-agent-assembly/examples/tree/master/python)
repository. Each directory is a self-contained, cloneable project. This section documents each
one in detail β€” start with [Preparing the runtime environment](preparing-the-runtime-environment.md),
then follow the per-framework page:
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

Expand Down
4 changes: 2 additions & 2 deletions docs/examples/preparing-the-runtime-environment.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Preparing the runtime environment

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

```bash
git clone https://github.com/ai-agent-assembly/examples.git
cd agent-assembly-examples/python
cd examples/python
```

Each subdirectory under `python/` is a standalone project with its own `README.md`,
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ all = ["agent-assembly[runtime]"]
aasm = "agent_assembly.cli.main:main"

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

[dependency-groups]
dev = [
Expand Down
Loading