catpilotai

10 mods across 1 repository, 2 stars between them.

catpilotai/catpilot-ai-guardrails

Skill Claude CodeCodex

Catpilot's universal AI-coding-agent security baseline. Always-on guardrails across nine components: cloud CLI mutations, database state changes, local CLI destruction, Docker container builds, hardcoded secrets, secrets management, supply-chain integrity, PII / test-data hygiene, and language-agnostic secure-coding…

2 2mo ago E 110 tokens original MIT

cloud-cli-safety

02

catpilotai/catpilot-ai-guardrails

Skill Claude CodeCodex

Require query-before-modify, full-command display, explicit confirmation, and rollback preparation before any cloud CLI invocation that mutates infrastructure. Covers Azure (az), AWS (aws), GCP (gcloud, gsutil), Kubernetes (kubectl, helm), and Terraform/IaC (terraform). Born from a real production incident where a…

2 2mo ago A 92 tokens original MIT

database-safety

03

catpilotai/catpilot-ai-guardrails

Skill Claude CodeCodex

Require preview-before-modify, row-count disclosure, transactional execution, and rollback preparation before any SQL or ORM operation that mutates data or schema. Block destructive statements without a WHERE clause, schema drops without confirmation, prod migrations without dry-run, and raw string interpolation into…

2 2mo ago A 75 tokens original MIT

docker-safety

04

catpilotai/catpilot-ai-guardrails

Skill Claude CodeCodex

Block container runtime escape paths, root-by-default images, build-time secrets baked into layers, and supply-chain risks from floating base tags before they reach a registry or a host. Require non-root USER, digest-pinned base images, BuildKit secret mounts (never ENV/ARG for secrets), --no-install-recommends +…

2 2mo ago D 114 tokens original MIT

language-baseline

05

catpilotai/catpilot-ai-guardrails

Skill Claude CodeCodex

Block the language-agnostic classes of injection and arbitrary-code-execution failures — SQL via string concatenation, command injection via shell-true subprocess calls, XSS via innerHTML/document.write, path traversal via unvalidated filenames, insecure deserialization (pickle, unsafe yaml.load, PHP unserialize, Java…

2 2mo ago B 115 tokens original MIT

local-cli-safety

06

catpilotai/catpilot-ai-guardrails

Skill Claude CodeCodex

Block irreversible filesystem operations, history-destroying git commands on shared branches, network exposure to non-loopback interfaces, world-readable credential paths, and credential exfiltration patterns before they run on a developer or CI machine. Covers rm/find -delete/dd/chmod -R, git push --force/reset…

2 2mo ago F 126 tokens original MIT

pii-and-test-data

07

catpilotai/catpilot-ai-guardrails

Skill Claude CodeCodex

Block real customer data from appearing in test fixtures, code comments, documentation, debug output, or shared transcripts. Require synthetic generators (faker, @faker-js/faker, provider test cards), reserved test ranges (555 phone numbers, @example.com emails, RFC 5737 IPs), and redaction of PII/PHI/PCI from logs…

2 2mo ago A 97 tokens original MIT

secret-blocking

08

catpilotai/catpilot-ai-guardrails

Skill Claude CodeCodex

Detects and blocks hardcoded secrets — API keys, tokens, private keys, and database connection strings — before they are written to disk, committed to git, or echoed to logs. Covers 40+ patterns across Stripe, AWS, GitHub, GitLab, OpenAI, Anthropic, Slack, Google, SendGrid, Mailgun, Square, Twilio, and generic…

2 2mo ago A 101 tokens original MIT

secrets-management

09

catpilotai/catpilot-ai-guardrails

Skill Claude CodeCodex

Govern how secrets are stored, scoped, distributed, rotated, and surfaced to running code — never committed .env files, never echoed in CI logs, never embedded in URLs or error messages, never shared across environments. Complements secret-blocking (which detects hardcoded patterns at write time) by enforcing the…

2 2mo ago C 103 tokens original MIT

supply-chain

10

catpilotai/catpilot-ai-guardrails

Skill Claude CodeCodex

Block typosquats, unpinned dependencies, floating GitHub Actions tags, curl | bash installs, unverified agent skills/MCP servers, and post-install scripts from unknown publishers before they reach a developer machine, a CI runner, or a production image. Require lockfile-based installs, SHA-pinned third-party actions…

2 2mo ago C 99 tokens original MIT