Skip to content
Closed
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
18 changes: 12 additions & 6 deletions docs/guides/container-base-image.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,19 @@ which `agent-assembly` SDK release gets baked in.
| *unset* (default) | Installs the **latest stable** SDK release; if no stable release exists yet, the **latest pre-release**. |
| set to a version | Installs **exactly** that version β€” e.g. `SDK_VERSION=0.0.1b5`. |

```bash
# Default β€” let the image resolve the newest appropriate SDK release:
docker build -t my-agent .
=== "Default"

# Pin an exact SDK version for a fully reproducible build:
docker build --build-arg SDK_VERSION=0.0.1b5 -t my-agent .
```
```bash
# Let the image resolve the newest appropriate SDK release:
docker build -t my-agent .
```

=== "Pinned version"

```bash
# Pin an exact SDK version for a fully reproducible build:
docker build --build-arg SDK_VERSION=0.0.1b5 -t my-agent .
```

!!! tip "Published images already pin the SDK"
The images published to GHCR are built with `SDK_VERSION` pinned to a specific SDK
Expand Down
10 changes: 10 additions & 0 deletions docs/stylesheets/aaasm-brand.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,13 @@
overflow-x: auto;
}
}

/* AAASM-4560: content-tab titles (pymdownx.tabbed, alternate_style) default to the
full body size, which reads as heavy for short labels like "pip"/"uv"/"Default".
Render them a step smaller and tighter than body text so the tab strip stays a
quiet control, not a heading. Scoped to the tab labels only β€” tab *content* keeps
body sizing. */
.md-typeset .tabbed-set > .tabbed-labels > label {
font-size: 0.68rem;
letter-spacing: -0.005em;
}
15 changes: 11 additions & 4 deletions docs/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,17 @@ still works.

To enable it:

```bash
pip install --pre 'agent-assembly[runtime]' # bundled platform wheel, or
uv tool run maturin develop --manifest-path native/aa-ffi-python/Cargo.toml --release # build locally (needs Rust)
```
=== "pip"

```bash
pip install --pre 'agent-assembly[runtime]' # bundled platform wheel
```

=== "uv"

```bash
uv tool run maturin develop --manifest-path native/aa-ffi-python/Cargo.toml --release # build locally (needs Rust)
```

## Still stuck?

Expand Down