FAQ
claude-to-agy is a Claude Code plugin with 1 hand-picked skill for development work, indexed on Flowy. Install it with the command on its page. It includes claude-to-agy. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
$ npx -y skills add rauls-kjarners/claude-to-agy --agent claude-code
Repo: rauls-kjarners/claude-to-agy
A lightweight MCP bridge that lets Claude Code delegate heavy tasks to the Antigravity CLI (agy) - saving context window and tokens for what matters.
Registers a delegate_to_agy MCP tool that Claude automatically uses when it encounters:
git log, git diff, grepClaude sends a prompt + file paths โ the bridge runs agy CLI โ returns the result.
agy CLI installed and authenticatedNote: The command below uses
uvxto run the server without manual installation. If you don't haveuvinstalled, you can substituteuvxwithnpx -yorpipx run.
# 1. Register the MCP server globally via uvx
claude mcp add -s user claude-to-agy uvx claude-to-agy
# 2. Download the delegation rules into your current project
curl -o CLAUDE.md https://raw.githubusercontent.com/rauls-kjarners/claude-to-agy/main/CLAUDE.md
That's it. Claude will now automatically delegate heavy tasks to Antigravity CLI in any project that has the CLAUDE.md file.
Tip: To enable globally without copying
CLAUDE.mdper project, add the rules to~/.claude/CLAUDE.mdinstead.
This project also includes a SKILL.md file, which is the standard format for reusable Claude Code skills. If your setup supports skills, you can use it instead of manually copying CLAUDE.md:
claude skill add https://raw.githubusercontent.com/rauls-kjarners/claude-to-agy/main/SKILL.md
Note: You still need the MCP server registered (step 1 above). The skill provides the rules, MCP provides the tool.
All settings are optional environment variables:
| Variable | Default | Description |
|---|---|---|
AGY_CONNECT_TIMEOUT | 60 | Seconds to start the agy process |
AGY_TOTAL_TIMEOUT | 1200 | Hard timeout for entire execution |
User โ Claude Code โ MCP bridge (FastMCP) โ agy CLI โ Gemini API
โ โ โ
CLAUDE.md instructs Claude when to delegatedelegate_to_agy(prompt, cwd, files?) via MCPbridge.py prepends file paths to the promptagy --dangerously-skip-permissions --add-dir <cwd> -p "<prompt>"# Linting & Formatting
uv run ruff check .
uv run ruff format .
# Type Checking
uv run pyright
# Tests
uv run pytest
# Pre-commit Hooks (Run before committing)
uv run pre-commit install
MIT
.github/
workflows/
ci.yml
codeql.yml
publish-pypi.yml
publish-testpypi.yml
.gitignore
.pre-commit-config.yaml
CLAUDE.md
LICENSE
noxfile.py
pyproject.toml
README.md
SKILL.md
src/
claude_to_agy/
__init__.py
bridge.py
tests/
claude_to_agy/
test_bridge.py
uv.lockยฉ 2026 Flowy ยท Free and open source
Built for Claude Code ยท Not affiliated with Anthropic