Files
antigravity-skills-reference/skills/007/scripts/requirements.txt
ProgramadorBrasil 61ec71c5c7 feat: add 52 specialized AI agent skills (#217)
New skills covering 10 categories:

**Security & Audit**: 007 (STRIDE/PASTA/OWASP), cred-omega (secrets management)
**AI Personas**: Karpathy, Hinton, Sutskever, LeCun (4 sub-skills), Altman, Musk, Gates, Jobs, Buffett
**Multi-agent Orchestration**: agent-orchestrator, task-intelligence, multi-advisor
**Code Analysis**: matematico-tao (Terence Tao-inspired mathematical code analysis)
**Social & Messaging**: Instagram Graph API, Telegram Bot, WhatsApp Cloud API, social-orchestrator
**Image Generation**: AI Studio (Gemini), Stability AI, ComfyUI Gateway, image-studio router
**Brazilian Domain**: 6 auction specialist modules, 2 legal advisors, auctioneers data scraper
**Product & Growth**: design, invention, monetization, analytics, growth engine
**DevOps & LLM Ops**: Docker/CI-CD/AWS, RAG/embeddings/fine-tuning
**Skill Governance**: installer, sentinel auditor, context management

Each skill includes:
- Standardized YAML frontmatter (name, description, risk, source, tags, tools)
- Structured sections (Overview, When to Use, How it Works, Best Practices)
- Python scripts and reference documentation where applicable
- Cross-platform compatibility (Claude Code, Antigravity, Cursor, Gemini CLI, Codex CLI)

Co-authored-by: ProgramadorBrasil <214873561+ProgramadorBrasil@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-07 10:04:07 +01:00

27 lines
1.1 KiB
Plaintext

# 007 Security Skill - Dependencies
# ==================================
#
# The 007 scanners, analyzers, and reporting tools are designed to work
# entirely with the Python standard library (stdlib). This means:
#
# - No pip install required for basic scanning and auditing
# - Works out of the box on any Python 3.10+ installation
# - Zero supply-chain risk from third-party dependencies
# - Portable across Windows, Linux, and macOS
#
# Modules used from stdlib:
# - re (regex-based pattern detection)
# - json (audit logs, reports, config files)
# - pathlib (cross-platform path handling)
# - logging (structured console output)
# - datetime (timestamps for audit trail)
# - ast (Python AST analysis for deeper code inspection)
# - os / os.path (filesystem traversal fallback)
# - sys (CLI argument handling)
# - hashlib (file hashing for change detection)
# - argparse (CLI interface for all scripts)
# - textwrap (report formatting)
# - collections (counters, defaultdicts for aggregation)
#
# No external dependencies required.