From d29738bd891778a24fd00f0696b402cf3123f2da Mon Sep 17 00:00:00 2001 From: xarmian Date: Sat, 28 Mar 2026 04:00:31 +0000 Subject: [PATCH] Update README for multi-agent support and fix release workflow - README: update agent integration section to show pad install with all supported tools - README: add pad install step to Quick Start - Release workflow: add web build placeholder before go test to prevent embed failure --- .github/workflows/release.yml | 3 +++ README.md | 16 +++++++++++----- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dd440b18..d27690a3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,6 +27,9 @@ jobs: cache: "npm" cache-dependency-path: web/package-lock.json + - name: Create web build placeholder for tests + run: mkdir -p web/build && echo "placeholder" > web/build/.gitkeep + - name: Run tests run: go test ./... diff --git a/README.md b/README.md index bf6f8134..ff945ab2 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ One binary. Local-first. No accounts. Pad gives you a web UI, a CLI, and an AI a **For you:** A clean web interface to organize tasks, ideas, phases, docs, and custom collections — with a rich editor, board views, wiki-links, and full-text search. -**For your AI agent:** A `/pad` skill that lets Claude Code manage your project through natural language — create tasks, check status, follow conventions, and plan phases. +**For your AI agent:** A `/pad` skill that lets your AI coding tool manage your project through natural language — create tasks, check status, follow conventions, and plan phases. Works with Claude Code, Cursor, Windsurf, Codex, GitHub Copilot, Amazon Q, and JetBrains Junie. @@ -33,6 +33,9 @@ cp pad /usr/local/bin/ cd ~/projects/myapp pad init "My App" +# Install the /pad skill for your AI tools +pad install + # Create your first task pad create task "Set up CI pipeline" --priority high @@ -110,12 +113,15 @@ The CLI auto-detects your workspace by walking up the directory tree for a `.pad ### Agent Integration -Pad includes a `/pad` skill for [Claude Code](https://docs.anthropic.com/en/docs/claude-code). Install it and your agent becomes a project partner: +Pad ships a `/pad` skill that works with any AI coding tool. Install it and your agent becomes a project partner: ```bash -# Install the skill -pad skills install # Project-level (.claude/skills/) -pad skills install --global # Global (~/.claude/skills/) +pad install # Auto-detect your tools and install +pad install claude # Claude Code +pad install cursor # Cursor (also covers Codex & Windsurf) +pad install copilot # GitHub Copilot +pad install amazon-q # Amazon Q +pad install junie # JetBrains Junie ``` Then just talk to your project: