Ask antigravity
Skill Yumeno/add_antigravitycli/.agents/skills/ask-antigravity
Antigravity CLIに設計判断、バグ調査、実装方針などのセカンドオピニオンを求める。ユーザーが「Antigravityに聞いて」「ask-antigravity」など、Antigravity CLIへの問い合わせを明示した場合に使う。ファイルやdiffを渡す場合はask-antigravity-with-contextを使う。From its SKILL.md
npx -y skills add Yumeno/add_antigravitycli --skill ask-antigravityAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.6 KB, 426 tokens by cl100k_base, as published. Nobody here has run it
Antigravity CLIに質問する
ユーザーの質問を改変せず、wrapperへ渡す。現在の作業ディレクトリを前提にせず、この SKILL.md のディレクトリ直下の scripts/ を絶対パスへ解決する。
手順
- 質問が空なら内容を確認する。
- OSに合うwrapperを、シェル演算子や出力リダイレクトを組み合わせず、単独のコマンドとして実行する。
- Windowsでは次を使う。
powershell -ExecutionPolicy Bypass -NoProfile -File "<解決したscripts>\antigravity-wrapper.ps1" -Prompt "質問"
- Linux/macOSでは次を使う。
bash "<解決したscripts>/antigravity-wrapper.sh" --prompt "質問"
- wrapperが返す失敗sentinelをAntigravityの回答として扱わず、呼び出し失敗として提示する。
- 成功時は回答を「Antigravity CLIの回答」として引用し、必要なら自身の見解との差分を短く補足する。
wrapperはAntigravity CLIのboolean --sandbox を常に有効化する。sandboxへmode値を渡そうとしない。
モデルをユーザーが指定した場合だけ -Model / --model を追加する。モデル名を推測しない。
What ships with it: 2 files
22.8 KB alongside SKILL.md, 2 of them executable
scripts/
- antigravity-wrapper.ps1runs12.8 KB
- antigravity-wrapper.shruns10.0 KB