From 8dd4c51c54f1035bc9bf6dd85fa24f2472117f3c Mon Sep 17 00:00:00 2001 From: HiranoMasaaki Date: Wed, 11 Feb 2026 00:05:06 +0900 Subject: [PATCH] Docs: Update README links to perstack.ai and replace Twitter with Discord Co-Authored-By: Claude Opus 4.6 --- README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 1b6b947e..dc26534f 100644 --- a/README.md +++ b/README.md @@ -11,16 +11,16 @@

- Documentation · - Getting Started · - Twitter + Documentation · + Getting Started · + Discord

Define AI agents as declarative **Experts** in TOML. Execute them with deterministic, event-derived tracking. Each Expert runs in its own isolated context — no shared state, no prompt bloat, full execution history. ## Quick Start -Prerequisites: [Node.js 22+](https://nodejs.org/) and an [LLM provider API key](./docs/references/providers-and-models.md). +Prerequisites: [Node.js 22+](https://nodejs.org/) and an [LLM provider API key](https://perstack.ai/docs/references/providers-and-models/). ```bash npx create-expert "Create saas-developer expert that can build a SaaS product" @@ -38,7 +38,7 @@ Run the Expert from the CLI: npx perstack start saas-developer "Build an agentic CRM with Perstack" ``` -Or use it programmatically via [runtime embedding](./docs/guides/adding-ai-to-your-app.md#runtime-embedding-optional): +Or use it programmatically via [runtime embedding](https://perstack.ai/guides/adding-ai-to-your-app/#runtime-embedding-optional): ```typescript import { run } from "@perstack/runtime" @@ -120,15 +120,15 @@ Each Expert runs in its own isolated context — no shared state, no prompt bloa ## What to Read Next **Getting started:** -1. **[Build your first Expert](./docs/guides/rapid-prototyping.md)** — 5 minutes to your first Expert -2. **[Compose Experts together](./docs/guides/taming-prompt-sprawl.md)** — break monolithic prompts into collaborating Experts -3. **[Add tools via MCP](./docs/guides/extending-with-tools.md)** — give your Experts real-world capabilities +1. **[Build your first Expert](https://perstack.ai/guides/rapid-prototyping/)** — 5 minutes to your first Expert +2. **[Compose Experts together](https://perstack.ai/guides/taming-prompt-sprawl/)** — break monolithic prompts into collaborating Experts +3. **[Add tools via MCP](https://perstack.ai/guides/extending-with-tools/)** — give your Experts real-world capabilities **Going deeper:** -- [Core Concepts](./docs/understanding-perstack/concept.md) — the architecture behind the runtime -- [Making Experts](./docs/making-experts/README.md) — complete guide to Expert definitions -- [Isolation & Safety](./docs/operating-experts/isolation-by-design.md) — production deployment patterns -- [CLI & API Reference](./docs/references/cli.md) +- [Core Concepts](https://perstack.ai/docs/understanding-perstack/concept/) — the architecture behind the runtime +- [Making Experts](https://perstack.ai/docs/making-experts/) — complete guide to Expert definitions +- [Isolation & Safety](https://perstack.ai/docs/operating-experts/isolation-by-design/) — production deployment patterns +- [CLI & API Reference](https://perstack.ai/docs/references/cli/) ## FAQ