원클릭으로
antigravity-cli
Operate the Antigravity CLI (agy): plugins, auth, sandbox.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Operate the Antigravity CLI (agy): plugins, auth, sandbox.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Join a Google Meet call, transcribe live captions, optionally speak in realtime, and do the followup work afterwards. Use when the user asks the agent to sit in on a meeting, take notes, summarize, respond in-call, or action items from it.
Configure, extend, or contribute to Hermes Agent.
Use when a Hermes Kanban worker wants to run Codex CLI as an isolated implementation lane while Hermes keeps ownership of task lifecycle, reconciliation, testing, and handoff.
Decomposition playbook + anti-temptation rules for an orchestrator profile routing work through Kanban. The "don't do the work yourself" rule and the basic lifecycle are auto-injected into every kanban worker's system prompt; this skill is the deeper playbook when you're specifically playing the orchestrator role.
Pitfalls, examples, and edge cases for Hermes Kanban workers. The lifecycle itself is auto-injected into every worker's system prompt as KANBAN_GUIDANCE (from agent/prompt_builder.py); this skill is what you load when you want deeper detail on specific scenarios.
Himalaya CLI: IMAP/SMTP email from terminal.
| name | antigravity-cli |
| description | Operate the Antigravity CLI (agy): plugins, auth, sandbox. |
| version | 0.1.0 |
| author | Tony Simons (asimons81), Hermes Agent |
| license | MIT |
| platforms | ["linux","macos","windows"] |
| metadata | {"hermes":{"tags":["Coding-Agent","Antigravity","CLI","Auth","Plugins","Sandbox"],"related_skills":["grok","codex","claude-code","hermes-agent"]}} |
agy)Operator guide for the Antigravity CLI, invoked as agy. Run all agy
commands through the Hermes terminal tool; inspect its config and logs with
read_file. This skill is reference + procedure — it does not wrap a network
API, so there is nothing to authenticate from Hermes itself.
agy binaryagy --print / agy -p one-shotsAntigravity has two layers — keep them distinct or the guidance will be wrong:
agy help, agy install, agy plugin,
agy update, agy changelog. Run these through the terminal tool./config, /permissions,
/skills, /agents, etc. These only exist inside a running agy TUI
session, not on the shell wrapper.agy help shows the shell wrapper surface, NOT the in-session slash commands.
agy binary on PATH. Verify through the terminal tool:
command -v agy && agy --version.Invoke every agy command through the terminal tool. Examples:
terminal(command="agy --version")
terminal(command="agy help")
terminal(command="agy plugin list")
terminal(command="agy --print 'Summarize the repo in 3 bullets'", workdir="/path/to/project")
For an interactive multi-turn TUI session, launch agy with pty=true (and
tmux for capture/monitoring), the same pattern the codex / claude-code
skills use. For one-shot smoke tests and scripted prompts, prefer
agy --print (non-interactive).
To inspect Antigravity's own files, use read_file on the paths under Core
paths below — do not cat them through the terminal.
agy~/.gemini/antigravity-cli/~/.gemini/antigravity-cli/settings.json~/.gemini/antigravity-cli/keybindings.json~/.gemini/antigravity-cli/log/cli-*.log~/.gemini/antigravity-cli/conversations/~/.gemini/antigravity-cli/brain/~/.gemini/antigravity-cli/history.jsonl~/.gemini/antigravity-cli/plugins/<plugin_name>/agy changelogagy helpagy installagy plugin / agy pluginsagy update--add-dir--continue / -c--conversation--dangerously-skip-permissions--print / -p--print-timeout--prompt--prompt-interactive / -i--sandbox--log-file--versionagy plugin --help)list, import [source], install <target>, uninstall <name>,
enable <name>, disable <name>, validate [path], link <mp> <target>,
helpagy install --help)--dir, --skip-aliases, --skip-path/resume (/switch), /rewind (/undo),
/rename <name>, /clear, /fork, /reset, /new/config, /settings, /permissions, /model,
/keybindings, /statusline, /tasks, /skills, /mcp, /open <path>,
/usage, /logout, /agents@ path autocomplete, esc esc clears the prompt (when
not streaming), ! runs a terminal command directly, ? opens helpsettings.json)allowNonWorkspaceAccesscolorSchemepermissions.allowtrustedWorkspacesrequest-review, always-proceed, strict, proceed-in-sandbox.
enableTerminalSandbox is a boolean in settings.json; default false.--sandbox, --dangerously-skip-permissions) can
supersede persistent settings for the current session./logout removes saved credentials.~/.gemini/antigravity-cli/plugins/<plugin_name>/.agy plugin list returning no imported plugins is a valid empty state.agy help shows wrapper commands, not interactive slash commands.agy --version is the safe non-interactive version check; agy version is
interactive and can fail without a real TTY.~/.gemini/antigravity-cli/log/cli-*.log
(read with read_file).~/.gemini/antigravity-cli/bin/agentapi is a thin wrapper to agy agentapi..antigravitycli
project marker.Confirm the install is real and usable, all through the terminal tool (read
files with read_file):
terminal(command="command -v agy")terminal(command="agy --version")terminal(command="agy help")terminal(command="agy plugin list")read_file on ~/.gemini/antigravity-cli/settings.jsonread_file on the latest ~/.gemini/antigravity-cli/log/cli-*.logread_file on ~/.gemini/antigravity-cli/keybindings.jsonreferences/cli-docs.md — condensed notes from the getting-started, usage,
and features docs.