원클릭으로
delegate
Use when you want to delegate a coding task to Antigravity CLI — it executes the task and returns results for review
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when you want to delegate a coding task to Antigravity CLI — it executes the task and returns results for review
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when you want to cancel a running Antigravity task
Use when you want to review code changes made by Antigravity — standard review for bugs, or adversarial review to challenge implementation choices
Use when you want to check if Antigravity CLI is installed and ready, or when troubleshooting the plugin
Use when you want to check the status of an Antigravity task — see progress, phase, results, or list all jobs
| name | delegate |
| description | Use when you want to delegate a coding task to Antigravity CLI — it executes the task and returns results for review |
Send a coding task to Antigravity CLI for execution. Antigravity runs in a separate process, completes the task, and returns results automatically. After completion, you should review the changes.
Assess task complexity to pick model:
agy_list_models to see available options (models are dynamic and change over time)Delegate the task by calling agy_delegate:
task (required): the coding task descriptionmodel: full Antigravity model name string (e.g., "Gemini 3.5 Flash (Low)")write: set to true (default) to allow file writes, false for read-only analysis (uses prompt injection + permission prompts as fallback since agy has no enforced read-only mode)background: set to true to run in background and return immediatelydangerouslySkipPermissions: set to true to let Antigravity write without confirmation (default: false)resume: set to true to continue the last Antigravity session (adds --continue)resumeSession: pass a conversation ID to resume a specific Antigravity session (adds --conversation <id>)timeout: set a custom timeout duration (e.g., "5m0s", "10m0s"), mapped to --print-timeout (default: 5m0s)Present results to the user when the task completes.
Suggest review: After a completed task, tell the user:
"Task completed. Run
/agy:reviewto review the changes, or/agy:review --adversarialfor a deeper review."
When the user wants to continue a previous Antigravity session:
agy_delegate with resume=trueagy_delegate with resumeSession="abc123"agy_delegate without resume flags (new session)| Task Type | Effort Level | Example Model Pattern |
|---|---|---|
| Typo fix, simple bug | Low | *(Low) suffix |
| Feature implementation | Medium | *(Medium) suffix |
| Complex refactor | High | *(High) suffix |
Use agy_list_models to see the actual available models — they change over time.
resume=trueresumeSession="..."agy_delegate defaults to foreground mode — it waits for Antigravity to finish and returns results immediately.background=true and check progress with /agy:status.agy -p. Be specific about what you want done.--add-dir automatically).