Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Route every task to the right skill by enforcing skill discovery and invocation before any action
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/antigravity-tools.md
1# Antigravity CLI (`agy`) Tool Mapping23Skills speak in actions ("dispatch a subagent", "create a todo", "read a file"). On the Antigravity CLI (`agy`) these resolve to the tools below.45| Action skills request | Antigravity CLI equivalent |6|----------------------|----------------------|7| Dispatch a subagent (`Subagent (general-purpose):` template) | `invoke_subagent` with a built-in `TypeName` — `self` for full-capability work, `research` for read-only (see [Subagent support](#subagent-support)) |8| Task tracking ("create a todo", "mark complete") | a **task artifact** — `write_to_file` with `IsArtifact: true` and `ArtifactType: "task"` (see [Task tracking](#task-tracking)). **Not** `manage_task`, which manages background processes. |910## Task tracking1112Antigravity has **no todo tool** (`manage_task` manages background13processes — `list`/`kill`/`status`/`send_input` — it is *not* a checklist). When a14skill says to create a todo list or track tasks, maintain a **task artifact**: a15markdown checklist saved with `write_to_file` (`IsArtifact: true`,16`ArtifactMetadata.ArtifactType: "task"`), edited with `replace_file_content` /17`multi_replace_file_content` as you go.1819At the start of any multi-step task, create the task artifact listing every step of20your plan. As you complete each step, edit the artifact to mark it done (`- [x]`).21If the plan changes, update the checklist. Keep it current — it is your source of22truth for what remains; once the conversation gets long, re-read it before starting23each step.24