From 8a257ec00a76d3dd90f0106fba1e56215588efae Mon Sep 17 00:00:00 2001 From: Parth Sareen Date: Tue, 17 Feb 2026 13:27:25 -0800 Subject: [PATCH] docs: make integrations more discoverable (#14301) * docs: add Pi integration page * docs: flatten integration sidebar with expanded subheadings * docs: add OpenClaw and Claude Code to quickstart --- docs/docs.json | 17 ++++++----- docs/integrations/index.mdx | 1 + docs/integrations/pi.mdx | 57 +++++++++++++++++++++++++++++++++++++ docs/quickstart.mdx | 10 ++++++- 4 files changed, 77 insertions(+), 8 deletions(-) create mode 100644 docs/integrations/pi.mdx diff --git a/docs/docs.json b/docs/docs.json index 7153a2e35..3f8b5c1a8 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -106,20 +106,23 @@ "group": "Integrations", "pages": [ "/integrations/index", + { + "group": "Assistants", + "expanded": true, + "pages": [ + "/integrations/openclaw" + ] + }, { "group": "Coding", + "expanded": true, "pages": [ "/integrations/claude-code", "/integrations/codex", "/integrations/opencode", "/integrations/droid", - "/integrations/goose" - ] - }, - { - "group": "Assistants", - "pages": [ - "/integrations/openclaw" + "/integrations/goose", + "/integrations/pi" ] }, { diff --git a/docs/integrations/index.mdx b/docs/integrations/index.mdx index d88b83b7a..5ae2fe670 100644 --- a/docs/integrations/index.mdx +++ b/docs/integrations/index.mdx @@ -13,6 +13,7 @@ Coding assistants that can read, modify, and execute code in your projects. - [OpenCode](/integrations/opencode) - [Droid](/integrations/droid) - [Goose](/integrations/goose) +- [Pi](/integrations/pi) ## Assistants diff --git a/docs/integrations/pi.mdx b/docs/integrations/pi.mdx new file mode 100644 index 000000000..fd2dadbed --- /dev/null +++ b/docs/integrations/pi.mdx @@ -0,0 +1,57 @@ +--- +title: Pi +--- + +Pi is a minimal AI agent toolkit with plugin support. + +## Install + +Install [Pi](https://github.com/badlogic/pi-mono): + +```bash +npm install -g @mariozechner/pi-coding-agent +``` + +## Usage with Ollama + +### Quick setup + +```bash +ollama launch pi +``` + +To configure without launching: + +```shell +ollama launch pi --config +``` + +### Manual setup + +Add a configuration block to `~/.pi/agent/models.json`: + +```json +{ + "providers": { + "ollama": { + "baseUrl": "http://localhost:11434/v1", + "api": "openai-completions", + "apiKey": "ollama", + "models": [ + { + "id": "qwen3-coder" + } + ] + } + } +} +``` + +Update `~/.pi/agent/settings.json` to set the default provider: + +```json +{ + "defaultProvider": "ollama", + "defaultModel": "qwen3-coder" +} +``` diff --git a/docs/quickstart.mdx b/docs/quickstart.mdx index 38b99618e..62f2f99b4 100644 --- a/docs/quickstart.mdx +++ b/docs/quickstart.mdx @@ -27,9 +27,17 @@ The menu provides quick access to: - **Launch tools** - Claude Code, Codex, OpenClaw, and more - **Additional integrations** - Available under "More..." +## Assistants + +Launch [OpenClaw](/integrations/openclaw), a personal AI with 100+ skills: + +```sh +ollama launch openclaw +``` + ## Coding -Launch coding tools with Ollama models: +Launch [Claude Code](/integrations/claude-code) and other coding tools with Ollama models: ```sh ollama launch claude