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 CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,4 +152,4 @@ pages by hand.

When you push your branch, the `publish-docs.yml` workflow builds the site and
deploys to the `gh-pages` branch on push to `master`. The published site is at
**https://ai-agent-assembly.github.io/node-sdk/**.
**https://docs.agent-assembly.com/node-sdk/**.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ selects ESM or CJS automatically based on how the consumer imports it.
`initAssembly()` registers the LangChain callback handler and auto-wraps the configured
tools, so each is checked against gateway policy before invocation. For more frameworks
and the lower-level `withAssembly()` wrapper, see the **Examples** guide on the
[documentation site](https://ai-agent-assembly.github.io/node-sdk/).
[documentation site](https://docs.agent-assembly.com/node-sdk/).

## Supported Node.js versions

Expand All @@ -129,11 +129,11 @@ binding requires Node 18.18 or newer.
each framework's optional peer dependency, supported version range, and current status
(including the [known Vercel AI SDK caveat](https://lightning-dust-mite.atlassian.net/browse/AAASM-3532)) —
is the **authoritative** reference and lives on the docs site:
[Framework compatibility](https://ai-agent-assembly.github.io/node-sdk/compatibility-versioning/compatibility).
[Framework compatibility](https://docs.agent-assembly.com/node-sdk/compatibility-versioning/compatibility).

For the product-wide, cross-SDK index/hub that links every language SDK's matrix, see the
core documentation:
[Framework compatibility index](https://ai-agent-assembly.github.io/agent-assembly/stable/reference/framework-compatibility.html)
[Framework compatibility index](https://docs.agent-assembly.com/core/stable/reference/framework-compatibility.html)
(the `/stable/` link goes live at GA).

## How it works
Expand Down Expand Up @@ -163,7 +163,7 @@ call is checked against policy before it runs.

Type-only exports (`AssemblyConfig`, `AssemblyContext`, `AssemblyMode`, `EnforcementMode`,
`ToolMap`, `GatewayClient`, the `Gateway*` governance types, and friends) are documented in
the [API reference](https://ai-agent-assembly.github.io/node-sdk/api-reference).
the [API reference](https://docs.agent-assembly.com/node-sdk/api-reference).

## Governing tools offline

Expand Down Expand Up @@ -237,7 +237,7 @@ tests/ # unit + architecture tests
```

For how these layers fit together, see the
[Architecture guide](https://ai-agent-assembly.github.io/node-sdk/core-concepts/architecture).
[Architecture guide](https://docs.agent-assembly.com/node-sdk/core-concepts/architecture).

## Building the native binding

Expand Down Expand Up @@ -284,7 +284,7 @@ CI verifies the published shape with:

Full guides, architecture deep-dives, and the complete API reference are published at:

**https://ai-agent-assembly.github.io/node-sdk/**
**https://docs.agent-assembly.com/node-sdk/**

The site is built from the `docs/` (content) and `website/` (Docusaurus app) directories
and is re-published on every push to `master` via the `publish-docs.yml` workflow.
Expand All @@ -298,7 +298,7 @@ across all SDKs.
| Project | What it is |
| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [agent-assembly](https://github.com/ai-agent-assembly/agent-assembly) | Core Rust runtime — gateway, policy engine, proxy, eBPF, CLI (`aasm`). The protocol specification lives here. |
| [Documentation site](https://ai-agent-assembly.github.io/agent-assembly-docs/) | Canonical, cross-repo documentation for the whole platform. |
| [Documentation site](https://docs.agent-assembly.com/) | Canonical, cross-repo documentation for the whole platform. |
| [python-sdk](https://github.com/ai-agent-assembly/python-sdk) | Sibling SDK for Python. |
| [go-sdk](https://github.com/ai-agent-assembly/go-sdk) | Sibling SDK for Go. |
| [agent-assembly-examples](https://github.com/ai-agent-assembly/agent-assembly-examples) | Runnable examples — learn by running small, framework-specific Node.js/TypeScript (and Python/Go) samples for policy enforcement, approvals, audit, trace, and runtime workflows. |
Expand Down
4 changes: 2 additions & 2 deletions docs/01-introduction/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ fit, read **[Core Concepts](../03-core-concepts/index.md)**.

- [agent-assembly](https://github.com/ai-agent-assembly/agent-assembly) — the core Rust
runtime and the home of the protocol specification. Its
[documentation site](https://ai-agent-assembly.github.io/agent-assembly/) is the best
[documentation site](https://docs.agent-assembly.com/core/) is the best
place to understand the gateway, the policy engine, and the three interception layers
this SDK plugs into.
- [Canonical documentation hub](https://ai-agent-assembly.github.io/agent-assembly-docs/)
- [Canonical documentation hub](https://docs.agent-assembly.com/)
— cross-repo platform documentation and the core↔SDK compatibility matrix.
- [Organization profile](https://github.com/ai-agent-assembly) — every Agent Assembly
repository and its status.
4 changes: 2 additions & 2 deletions docs/03-core-concepts/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ so the gateway evaluates each call before it executes.
The gateway, the policy engine, and the audit trail live in the core runtime. For the
platform-level picture — how the gateway renders decisions and how this SDK relates to
the sidecar-proxy and eBPF layers — see the core
[Architecture](https://ai-agent-assembly.github.io/agent-assembly/latest/architecture/) and
[Security Model](https://ai-agent-assembly.github.io/agent-assembly/latest/security/overview.html) docs.
[Architecture](https://docs.agent-assembly.com/core/latest/architecture/) and
[Security Model](https://docs.agent-assembly.com/core/latest/security/overview.html) docs.

## The napi-rs native FFI

Expand Down
2 changes: 1 addition & 1 deletion docs/05-configuration/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ time. See [Troubleshooting](../08-troubleshooting/index.md) for the recovery pat

The `aasm` binary and the gateway it starts are part of the core runtime. For the full
list of gateway subcommands and flags, see the core
[CLI Reference](https://ai-agent-assembly.github.io/agent-assembly/latest/cli/overview.html).
[CLI Reference](https://docs.agent-assembly.com/core/latest/cli/overview.html).

## `AssemblyConfig` fields

Expand Down
4 changes: 2 additions & 2 deletions docs/07-compatibility-versioning/compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ above reflects the intended support floor once that bug is fixed.
This page is the **authoritative** reference for the Node SDK's framework support. The
product-wide, cross-SDK **index/hub** that points at each language SDK's matrix lives in
the core documentation:
[Framework compatibility](https://ai-agent-assembly.github.io/agent-assembly/stable/reference/framework-compatibility.html)
[Framework compatibility](https://docs.agent-assembly.com/core/stable/reference/framework-compatibility.html)
(the `/stable/` link goes live at GA).

## Package manager
Expand Down Expand Up @@ -89,5 +89,5 @@ Practical guidance:

The cross-repo **core ↔ SDK compatibility matrix** — which SDK versions pair with which
core runtime releases across all language SDKs — is published on the
[Agent Assembly documentation hub](https://ai-agent-assembly.github.io/agent-assembly-docs/).
[Agent Assembly documentation hub](https://docs.agent-assembly.com/).
Consult it when running a standalone gateway you upgrade independently of the SDK.
2 changes: 1 addition & 1 deletion website/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Documentation site for `@agent-assembly/sdk`

This directory contains the Docusaurus 3 application that builds the public documentation
site at <https://ai-agent-assembly.github.io/node-sdk/>.
site at <https://docs.agent-assembly.com/node-sdk/>.

Markdown content lives **outside this directory**, at `../docs/`. The Docusaurus app reads
it via `docs.path: '../docs'`. The TypeDoc-generated API reference is regenerated by
Expand Down
16 changes: 8 additions & 8 deletions website/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,19 +247,19 @@ const config: Config = {
items: [
{
label: "Docs Hub",
href: "https://ai-agent-assembly.github.io/agent-assembly-docs/",
href: "https://docs.agent-assembly.com/",
},
{
label: "Python SDK",
href: "https://ai-agent-assembly.github.io/python-sdk/",
href: "https://docs.agent-assembly.com/python-sdk/",
},
{
label: "Node SDK",
href: "https://ai-agent-assembly.github.io/node-sdk/",
href: "https://docs.agent-assembly.com/node-sdk/",
},
{
label: "Go SDK",
href: "https://ai-agent-assembly.github.io/go-sdk/",
href: "https://docs.agent-assembly.com/go-sdk/",
},
],
},
Expand Down Expand Up @@ -300,19 +300,19 @@ const config: Config = {
items: [
{
label: "Docs Hub",
href: "https://ai-agent-assembly.github.io/agent-assembly-docs/",
href: "https://docs.agent-assembly.com/",
},
{
label: "Python SDK",
href: "https://ai-agent-assembly.github.io/python-sdk/",
href: "https://docs.agent-assembly.com/python-sdk/",
},
{
label: "Node SDK",
href: "https://ai-agent-assembly.github.io/node-sdk/",
href: "https://docs.agent-assembly.com/node-sdk/",
},
{
label: "Go SDK",
href: "https://ai-agent-assembly.github.io/go-sdk/",
href: "https://docs.agent-assembly.com/go-sdk/",
},
],
},
Expand Down
Loading