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
4 changes: 2 additions & 2 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ jobs:
run: python -m twine check --strict dist/*

- name: Smoke test the built wheel
# The dependency-free core promise, checked on the artifact itself: the
# wheel installs into a bare venv and imports with zero dependencies.
# The vendor-SDK-free core promise, checked on the artifact itself: the
# wheel installs into a bare venv with only its declared core dependencies.
run: |
python -m venv /tmp/smoke
/tmp/smoke/bin/pip install --quiet dist/*.whl
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## 0.5.0 - 2026-07-11

### Added

Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ If you want all first-party runtimes available, install the `all` extra:
pip install "agent-runtime-kit[all]"
```

Install the dependency-free core when you only need the public models, fake
Install the vendor-SDK-free core when you only need the public models, fake
runtime, registry, diagnostics types, or you plan to add provider SDKs later:

```bash
Expand Down Expand Up @@ -179,5 +179,4 @@ built-in runtime populates it yet, so it is always an empty tuple today.
- [API stability](https://github.com/ebarti/agent-runtime-kit/blob/main/docs/api-stability.md)
- [Live smoke tests](https://github.com/ebarti/agent-runtime-kit/blob/main/docs/live-smoke.md)
- [Deadlines and cancellation](https://github.com/ebarti/agent-runtime-kit/blob/main/docs/task-control.md)
- [Mestre migration notes](https://github.com/ebarti/agent-runtime-kit/blob/main/docs/mestre-migration.md)
- [SDK evolution agent](https://github.com/ebarti/agent-runtime-kit/blob/main/docs/sdk-evolution-agent.md)
2 changes: 1 addition & 1 deletion docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Install all first-party runtime adapters:
pip install "agent-runtime-kit[all]"
```

Or install only the dependency-free core:
Or install only the vendor-SDK-free core:

```bash
pip install agent-runtime-kit
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "agent-runtime-kit"
version = "0.4.0"
version = "0.5.0"
description = "One typed runtime API for Claude, Codex, and Antigravity agent SDKs."
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -107,7 +107,6 @@ include = [
"docs/api-stability.md",
"docs/capability-matrix.md",
"docs/live-smoke.md",
"docs/mestre-migration.md",
"docs/providers.md",
"docs/quickstart.md",
"docs/sdk-evolution-agent-design.md",
Expand Down
2 changes: 1 addition & 1 deletion src/agent_runtime_kit/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def create_default_registry(
include_fake: bool = True,
extra_factories: Iterable[tuple[AgentRuntimeKind | str, RuntimeFactory]] = (),
) -> RuntimeRegistry:
"""Create a registry with built-in dependency-free runtimes."""
"""Create a registry with built-in runtimes that need no provider SDK extras."""

registry = RuntimeRegistry()
if include_fake:
Expand Down
121 changes: 59 additions & 62 deletions uv.lock

Large diffs are not rendered by default.

Loading