From joesys-skills
Use when the user invokes /antigravity to delegate a prompt to Google Antigravity CLI (agy), or /antigravity resume to continue a previous Antigravity session. SKIP if the user wants you to answer directly — this skill exists to consult Antigravity, not to substitute your own answer.
How this skill is triggered — by the user, by Claude, or both
Slash command
/joesys-skills:antigravityThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Delegate prompts to Google's Antigravity CLI (`agy`) and critically evaluate the output.
Delegate prompts to Google's Antigravity CLI (agy) and critically evaluate the output.
This skill MUST NOT:
shared/model-defaults.md; the skill itself never writes either./ai-council's job.Before dispatching, MUST:
shared/model-defaults.md § Antigravity for the current required flags. Never hardcode values./antigravity resume with no prompt, use AskUserQuestion to ask what they want to follow up on.Read shared/skill-context.md for the full protocol. Load .claude/skill-context/preferences.md if it exists. MUST NOT invoke /preferences on first contact — delegation is a pass-through and should not be interrupted by interviews. Shared communication-style preferences shape the critical-evaluation phase only.
Parse /antigravity arguments for overrides:
Use the temp-file-and-pipe pattern from shared/delegation-common.md § Prompt Delivery (use 600000ms timeout on the Bash tool). Substitute <AGY_CMD> with the current invocation from shared/model-defaults.md § Antigravity.
PROMPT_FILE=$(mktemp /tmp/antigravity-prompt-XXXXXX.txt)
cat > "$PROMPT_FILE" << 'PROMPT_EOF'
<USER_PROMPT>
PROMPT_EOF
cat "$PROMPT_FILE" | <AGY_CMD>
rm -f "$PROMPT_FILE"
The adapter always reads the prompt from stdin — do not pass -p (the adapter appends it). The same stdin-pipe pattern is used for session resume.
MUST present Antigravity's full response verbatim — clearly labeled as Antigravity's response — before any assessment. No truncation, no summarization, no interleaving your own commentary.
Critically evaluate the output (see Critical Evaluation below).
Provide a brief summary: "Here's what Antigravity said, here's what I think."
Inform the user: "You can resume this session with /antigravity resume."
When the user invokes /antigravity resume:
AskUserQuestion to ask what they want to follow up on./antigravity resume <PROMPT> — resume the latest session. Deliver the follow-up
prompt via the same temp-file-and-stdin pattern as the initial dispatch:
cat "$PROMPT_FILE" | python scripts/agy_adapter.py -c
/antigravity resume <ID> <PROMPT> — resume a specific session by conversation ID:
cat "$PROMPT_FILE" | python scripts/agy_adapter.py --conversation <ID>
Read shared/delegation-common.md and apply to Antigravity.
npx claudepluginhub joesys/joesys-skills --plugin joesys-skillsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.