Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Bilal140202/the-lord-of-the-skills --skill codeitlikemiley__antigravity-sdk-rustgit clone --depth 1 https://github.com/Bilal140202/the-lord-of-the-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/codeitlikemiley__antigravity-sdk-rust)<a href="https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/codeitlikemiley__antigravity-sdk-rust"><img src="https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/codeitlikemiley__antigravity-sdk-rust/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/codeitlikemiley__antigravity-sdk-rust"><img src="https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/codeitlikemiley__antigravity-sdk-rust.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00060 | $0.01907 |
| Opus 5 | $0.00030 | $0.00954 |
| Sonnet 5 | $0.00012 | $0.00381 |
| Haiku 4.5 | $0.00006 | $0.00191 |
Grade A, and why
google-antigravity-sdk-rust scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 95 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Google Antigravity Rust SDK
This skill provides comprehensive instructions, architectural guidelines, and reference examples for building autonomous AI agents in Rust using the Google Antigravity SDK.
Installation & Setup
Ensure the following prerequisites are met before building or running agents:
- Cargo Configuration: Include the SDK dependency in your
Cargo.toml:[dependencies] antigravity-sdk-rust = { path = "path/to/antigravity-sdk-rust" } tokio = { version = "1", features = ["full"] } - API Credentials: Set the
GEMINI_API_KEYenvironment variable or supply it programmatically viaGeminiConfig:- Obtain API keys from Google AI Studio: https://aistudio.google.com/app/api-keys.
- Subprocess Harness: Ensure the
localharnessbinary is accessible either on your systemPATHor configured viaAgentConfig::binary_path.
WebAssembly (wasm32-wasip1) Target Guidelines
When designing and deploying agents to WebAssembly targets such as wasm32-wasip1 (e.g., inside Spin or standard WASI runtimes):
- Compilation Check: Always verify clean target compilation:
cargo check --target wasm32-wasip1 - Connection Protocol: Be aware that process spawning is not supported inside WebAssembly sandboxes. Instead of native subprocess IPC, use the direct network socket strategy (
WasmConnectionStrategy/WasmConnection) to connect to a host-sidelocalharnessWebSocket server. - Core Async Traits: Do NOT use the
#[async_trait]attribute macro. The SDK uses native async traits (stable since Rust 1.75 / Rust 2024). Standard traits likeConnection,Hook,Tool, andTriggerare implemented as native async traits (usingimpl Future + Sendreturns for trait-levelSendbounds). For dynamic dispatch and runtime storage (e.g.Arc<dyn DynHook>), the SDK provides companion object-safe traits (DynHook,DynTool,DynTrigger) which are automatically implemented via blanket implementations for any type implementing the base trait. - Mock Test Suite Guidelines: To test connection, event loops, and tool extractions under simulated WebSocket messaging, run:
cargo test wasm::tests- Writing Mock Tests: Mock tests should spin up a local WebSocket listener, bind to port
0to allocate a free TCP port dynamically, record that port, configureWasmConnectionStrategyto point to it, and mock standard JSON frames (StepUpdate,TrajectoryStateUpdate, etc.) to verify client state transitions.
- Writing Mock Tests: Mock tests should spin up a local WebSocket listener, bind to port
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 95 lines · 60 tokens per session scan A 3aea5e0d055b
google-antigravity-sdk-rust is a skill published in the GitHub repository Bilal140202/the-lord-of-the-skills (4 stars, last pushed 6d ago), licensed MIT. It adds 60 tokens to every session and 1,907 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
first-plan-lens-rust
Stack lens para Rust. Use durante Discovery quando Cargo.toml for detectado. Cobre binários, libs, async runtimes (tokio/async-std), error handling, web frameworks (axum, actix-web, rocket).
rust-patterns
Rust: ownership, lifetimes, async (Tokio), Result/anyhow/thiserror, traits, unsafe. Triggers: Rust, borrow checker, lifetime, Tokio, cargo, trait, impl, Result, unsafe, clippy.
rust-engineer
Acquire expert Rust developer specialisation in rust systems programming, memory safety, and zero-cost abstractions. Masters ownership patterns, async programming, and performance optimisation for mission-critical applications.
rust-rules
Rust coding rules: style, patterns, security, testing. Triggers: .rs, Cargo.toml, Cargo.lock, Tokio, Axum, Serde, clippy, cargo test.
rust-development
You MUST activate this skill when working on Rust projects.
desktop-backend-tauri
Tauri 2.x Rust command patterns, state management, error handling, events, channels, testing.