AI SummaryThis booster integrates Pi (an external coding agent) with Claude Code, enabling developers to compare task execution across two AI systems and toggle between them. It's useful for teams wanting to benchmark or hybrid-test different AI coding approaches.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "pi" skill in my project. Please run this command in my terminal: # Install skill into the correct directory (2 files) mkdir -p .claude/skills/pi && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/pi/SKILL.md "https://raw.githubusercontent.com/majiayu000/claude-skill-registry-data/main/data/pi/SKILL.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/pi/metadata.json "https://raw.githubusercontent.com/majiayu000/claude-skill-registry-data/main/data/pi/metadata.json" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Route tasks to Pi for comparison testing. Toggle Pi mode or run specific commands through Pi.
Usage
| Command | Effect | |---------|--------| | /pi | Open Pi in a new terminal (no preset task) | | /pi on | Enable Pi mode - prefer Pi for building tasks | | /pi off | Disable Pi mode - back to Claude Code | | /pi /daily-plan | Run a specific skill through Pi with full context | | /pi "build me a tool that..." | Run a custom task through Pi | ---
How It Works
When you run /pi <command>: • Skill Detection: If the command is a skill (starts with /), read its SKILL.md • Context Gathering: Collect user profile, pillars, today's date, vault path • Terminal Launch: Open a new Terminal.app window with Pi • Context Injection: Pi receives the full skill instructions + context This ensures a fair comparison - Pi gets the same instructions Claude Code would get. ---
Pi Integration
Run tasks through Pi (Mario Zechner's self-extending coding agent) to compare with Claude Code.
`/pi` (No Arguments)
Open Pi in a new terminal window in the vault directory. macOS (default): `bash osascript -e 'tell application "Terminal" do script "cd \"'$VAULT_PATH'\" && pi" activate end tell' ` If in tmux: `bash tmux split-window -h "cd \"$VAULT_PATH\" && pi" ` Output to user: ` ✓ Pi opened in new Terminal window You can now interact with Pi directly. When done, Cmd+Tab back here. ` ---
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster