diff --git a/docs/02-quick-start/index.md b/docs/02-quick-start/index.md index ed995179..074386c3 100644 --- a/docs/02-quick-start/index.md +++ b/docs/02-quick-start/index.md @@ -23,7 +23,7 @@ platform during `postinstall`, so there is no extra build step for typical consu The current release line is `0.0.1-beta.x`, published under the npm `beta` dist-tag. The public surface (`initAssembly`, `withAssembly`) is stabilizing but may change between pre-releases. Pin an exact version for reproducible installs: -`npm install @agent-assembly/sdk@0.0.1-beta.5`. +`npm install @agent-assembly/sdk@0.0.1-rc.1`. ::: ## 2. Make sure a gateway is reachable diff --git a/docs/09-examples/custom-tool-policy.md b/docs/09-examples/custom-tool-policy.md index b0dd1c1c..a5696216 100644 --- a/docs/09-examples/custom-tool-policy.md +++ b/docs/09-examples/custom-tool-policy.md @@ -21,7 +21,7 @@ the policy first. ## The framework / library -None. The example depends only on `@agent-assembly/sdk` (version `0.0.1-beta.5` +None. The example depends only on `@agent-assembly/sdk` (version `0.0.1-rc.1` in its `package.json`). It runs fully offline — no gateway and no `@langchain/core`. ## How it works diff --git a/docs/09-examples/langchain-js-basic-agent.md b/docs/09-examples/langchain-js-basic-agent.md index b86a9ab6..a2ceb849 100644 --- a/docs/09-examples/langchain-js-basic-agent.md +++ b/docs/09-examples/langchain-js-basic-agent.md @@ -20,7 +20,7 @@ on every tool call the agent makes. ## The framework / library [LangChain.js](https://js.langchain.com)-style agent. The example depends only on -`@agent-assembly/sdk` (version `0.0.1-beta.5`); it deliberately avoids +`@agent-assembly/sdk` (version `0.0.1-rc.1`); it deliberately avoids `@langchain/core` so it runs fully offline in CI with no API keys. ## How it works diff --git a/docs/09-examples/langgraph-js.md b/docs/09-examples/langgraph-js.md index 1681b747..79fe38ba 100644 --- a/docs/09-examples/langgraph-js.md +++ b/docs/09-examples/langgraph-js.md @@ -21,7 +21,7 @@ originates — including from inside a graph node. ## The framework / library A hand-rolled [LangGraph.js](https://langchain-ai.github.io/langgraphjs/)-style graph. -The example depends only on `@agent-assembly/sdk` (version `0.0.1-beta.5`). +The example depends only on `@agent-assembly/sdk` (version `0.0.1-rc.1`). :::note Why a hand-rolled graph instead of `@langchain/langgraph` The real `@langchain/langgraph` package transitively installs `@langchain/core`. These diff --git a/docs/09-examples/mastra.md b/docs/09-examples/mastra.md index f9878990..09630dbd 100644 --- a/docs/09-examples/mastra.md +++ b/docs/09-examples/mastra.md @@ -22,7 +22,7 @@ wrapping their `execute` through `withAssembly`. [Mastra](https://mastra.ai) — the real `@mastra/core` package (version `^1.0.0` in `package.json`), plus `zod` (`^3.25.76`) for the tool schemas and -`@agent-assembly/sdk` (version `0.0.1-beta.5`). It runs fully offline — no provider +`@agent-assembly/sdk` (version `0.0.1-rc.1`). It runs fully offline — no provider key and no live LLM. ## How it works diff --git a/docs/09-examples/openai-node-tool-policy.md b/docs/09-examples/openai-node-tool-policy.md index ad57619f..7dfc542f 100644 --- a/docs/09-examples/openai-node-tool-policy.md +++ b/docs/09-examples/openai-node-tool-policy.md @@ -21,7 +21,7 @@ dispatched through `withAssembly`, so every dispatch is policy-checked before it ## The framework / library OpenAI function-calling format (tool schemas), used without a live OpenAI client. -The example depends only on `@agent-assembly/sdk` (version `0.0.1-beta.5`) and runs +The example depends only on `@agent-assembly/sdk` (version `0.0.1-rc.1`) and runs fully offline — no gateway and no `@langchain/core`. ## How it works diff --git a/docs/09-examples/setup.md b/docs/09-examples/setup.md index 8085e5b3..ea5b0945 100644 --- a/docs/09-examples/setup.md +++ b/docs/09-examples/setup.md @@ -16,7 +16,7 @@ can focus on what each example actually demonstrates. - **pnpm** — install via `npm install -g pnpm`. Every example pins `@agent-assembly/sdk` (the [`node-sdk`](https://github.com/ai-agent-assembly/node-sdk) -package, version `0.0.1-beta.5` at the time of writing) as its only required +package, version `0.0.1-rc.1` at the time of writing) as its only required dependency. The framework-specific examples add one extra package each (`@mastra/core` for Mastra, `ai` for the Vercel AI SDK). diff --git a/docs/09-examples/vercel-ai.md b/docs/09-examples/vercel-ai.md index 9bb0ce26..84da61e3 100644 --- a/docs/09-examples/vercel-ai.md +++ b/docs/09-examples/vercel-ai.md @@ -22,7 +22,7 @@ top by wrapping the tool map. [Vercel AI SDK](https://sdk.vercel.ai) — the real `ai` package (version `^6.0.0` in `package.json`), plus `zod` (`^3.25.76`) for input schemas and `@agent-assembly/sdk` -(version `0.0.1-beta.5`). It runs fully offline — no provider key and no live LLM. +(version `0.0.1-rc.1`). It runs fully offline — no provider key and no live LLM. ## How it works diff --git a/package.json b/package.json index bf923cbe..ed5a1525 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@agent-assembly/sdk", - "version": "0.0.1-beta.5", + "version": "0.0.1-rc.1", "description": "TypeScript SDK for Agent Assembly", "license": "Apache-2.0", "type": "module",