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 agentmods add skills/rafaelghif/antigravity-agents/securitynpx skills add rafaelghif/antigravity-agents --skill securitygit clone --depth 1 https://github.com/rafaelghif/antigravity-agentsWrote 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/rafaelghif/antigravity-agents/security)<a href="https://agentmods.dev/skills/rafaelghif/antigravity-agents/security"><img src="https://agentmods.dev/badge/skills/rafaelghif/antigravity-agents/security.svg" alt="Measured on agentmods" 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.00030 | $0.00624 |
| Opus 5 | $0.00015 | $0.00312 |
| Sonnet 5 | $0.00006 | $0.00125 |
| Haiku 4.5 | $0.00003 | $0.00062 |
Grade B, and why
security scanned grade B with 1 finding 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 today.
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.
Recursive force deletemediumDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
6. **Shell Isolation (Terminal-First Security)**: You are FORBIDDEN from executing global installs (`npm i -g`, `sudo`), modifying SSH keys, or running destructive recursive commands (`rm -rf /`). All shell execution MUS Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.
What it actually says
<CRITICAL_DIRECTIVE> Execute strict AppSec procedural audits and mandate ZERO-TOLERANCE for dummy authentication or authorization logic. </CRITICAL_DIRECTIVE>
<ENTERPRISE_STANDARDS>
- ZERO Dummy Auth: You are strictly FORBIDDEN from using hardcoded roles (e.g.,
if user.role == 'admin') or dummy data. You MUST implement industrial-standard Policy-Based Access Control (PBAC), Attribute-Based Access Control (ABAC), or a robust RBAC system backed by actual database relations. - Industrial Cryptography: NEVER use mock hashes or plain-text passwords. You MUST integrate production-grade cryptography (e.g., Argon2id, bcrypt, or framework-native secure hashers) and fully implement JWT/Session validation.
- Strict Schema Fidelity: DO NOT hallucinate User, Role, or Permission tables. You MUST use
grep_searchto verify the exact database schema or Prisma/TypeORM/SQL models before writing authorization logic. </ENTERPRISE_STANDARDS>
<PROCEDURAL_WORKFLOW>
- Automated Scanning: Execute
gitleaks detectorsemgrep scanon your diffs before concluding the security audit. Do not rely solely on visual inspection. If tools are unavailable, explicitly note this in your report. - Secret Scanning & Git Hygiene: Ensure all credentials, tokens, and private keys are strictly referenced via environment variables. Run
python3 scripts/git_hygiene_guard.py --checkto ensure zero untracked secrets or dirty stashes. - Boundary Audit: If you added a new input vector (API endpoint, CLI argument), verify that a strict validation schema sits at the immediate boundary.
- Execution Context: If modifying Dockerfiles or CI workflows, verify that execution privileges are explicitly dropped (
USER nonroot). - Dependency Audit: Ensure all added packages or base images use strict version pinning (or
sha256digests). - Shell Isolation (Terminal-First Security): You are FORBIDDEN from executing global installs (
npm i -g,sudo), modifying SSH keys, or running destructive recursive commands (rm -rf /). All shell execution MUST be isolated to the project workspace. - Verification & Audit Report: Run
python3 scripts/verify.py --executeand output a<security_audit>block confirming these checks are complete. </PROCEDURAL_WORKFLOW>
<L9_STANDARDS>
- Zero Trust: Always sanitize and validate input payloads. Never trust client-side validation.
- Secrets Management: Never hardcode credentials. Always use environment variables or secret managers.
- OWASP Top 10: Protect against SQL Injection, XSS, CSRF, and IDOR by default. </L9_STANDARDS>
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.
- today Changed a5bd51c654e3
- 6d ago First seen · 32 lines · 30 tokens per session scan B c1397f9db18f
security is a skill published in the GitHub repository rafaelghif/antigravity-agents (5 stars, last pushed today), licensed MIT. It adds 30 tokens to every session and 624 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
cicd
Automated CI/CD pipeline scaffolding, multi-job quality gates, Dependabot smart auto-merge, and CD release workflows for projects in PARA workspace.
deployment-patterns
Deployment workflows, CI/CD pipeline patterns, Docker containerization, health checks, rollback strategies, and production readiness checklists for web applications. Use when setting up deployment infrastructure or planning releases.
ci-cd-and-automation
Automates CI/CD pipeline setup. Use when setting up or modifying build and deployment pipelines. Use when you need to automate quality gates, configure test runners in CI, or establish deployment strategies.
agent-workflow-automation
Agent skill for workflow-automation - invoke with $agent-workflow-automation.
agent-github-modes
Agent skill for github-modes - invoke with $agent-github-modes.
agentic-actions-auditor
Audits GitHub Actions workflows for security vulnerabilities in AI agent integrations including Claude Code Action, Gemini CLI, OpenAI Codex, and GitHub AI Inference. Detects attack vectors where attacker-controlled input reaches. AI agents running in CI/CD pipelines.