Skip to main content

AGENCY SCRIPT OS

Security testing skills

24 skills in this hub. Each is a named, versioned playbook served live to your editor; this page lists what each one does.

  • Security Agent Config Auditas-sec-agent-config-audit

    Audit our OWN agent surface for security drift, over-broad autonomous:true on destructive/outward skills, missing G7/G8 human gates, dangling canon or skill refs, secrets committed in skill files, and role/automation/name mismatches. Read-only; never edits configs.

  • Security Agent Runtime Guardas-sec-agent-runtime-guard

    Runtime BEHAVIORAL anomaly detection for an agent that was allowed-but-is-now-acting-wrong, hijacked mid-session by injected tool output or poisoned context. Baseline normal, arm tripwires (scope/tool shift, new-host egress, secret access, off-task loop), confirm with a human before the sensitive action, then quarantine or kill it.

  • Security Agent Sandboxas-sec-agent-sandbox

    Build the ephemeral isolation boundary an untrusted agent run executes inside (a disposable non-root container, no network after build, read-only host mounts, secrets injected at runtime not as CLI flags, one writable output volume, destroy-after-run) plus a provider matrix (Docker, own VPS, cloud VM, edge unsuitable).

  • Security API Security Testas-sec-api-security-test

    Test your own API and auth layer against the OWASP API Top 10, broken object/function-level authorization, JWT flaws, webhook verification, rate limiting, mass assignment.

  • Security Appsec Stack Reviewas-sec-appsec-stack-review

    White-box source review of the Next.js / Prisma / Stripe / JWT stack for security defects, server actions, API routes, RBAC/IDOR, input validation, secrets, webhook verification, SSR data exposure.

  • Security Cloud Config Reviewas-sec-cloud-config-review

    Review hosting and cloud configuration for security, HTTP security headers, CSP, TLS, CORS, Vercel/Cloudflare/AWS settings, storage exposure, and least-privilege IAM.

  • Security Container Hardeningas-sec-container-hardening

    Harden Docker container images, runtime, and orchestration for the self-hosted Coolify + Cloudflare fleet, pinned-digest minimal base, non-root user, dropped capabilities, read-only rootfs, seccomp/AppArmor, no secrets in layers, image/CVE scanning (trivy/grype), cosign provenance, docker-compose + Coolify port/socket/network exposure, and Kubernetes pod-security.

  • Security Dependency Secret Scanas-sec-dependency-secret-scan

    Scan for vulnerable dependencies (CVEs), exposed secrets, and supply-chain risk across the repo and history.

  • Security Detection Engineeringas-sec-detection-engineering

    Build tested detections and run structured threat hunts on the self-hosted fleet, log-source coverage, detection-as-code (hypothesis→rule→test→tune→deploy→measure), Sigma-style portable rules, MITRE ATT&CK coverage heatmap, alert-quality tuning, hunt playbooks, and detection KPIs (MTTD, coverage).

  • Security DFIR Incident Responseas-sec-dfir-incident-response

    Respond to a confirmed or suspected SECURITY compromise of the fleet, apps, accounts, or data, classify severity, collect IOCs, preserve evidence with chain of custody, reconstruct a UTC timeline, contain, eradicate + verify recovery, and feed breach-notification inputs to legal, per NIST SP 800-61.

  • Security LLM Redteamas-sec-llm-redteam

    Authorized adversarial evaluation of a DEPLOYED LLM or agent, probe jailbreak families, encoding/obfuscation, system-prompt extraction, indirect prompt injection via retrieved content, tool/function abuse, data exfiltration, and excessive agency via a seed→mutate→score→regression runner with calibrated scoring that reports coverage SEPARATELY from pass-rate.

  • Security Memory Integrity Guardas-sec-memory-integrity-guard

    Provenance + quarantine gate on everything written into durable agent memory (project brain, brain-bases, compound learnings, journal), tag write-time provenance + trust, quarantine low-trust and instruction-shaped writes, treat recalled memory as data not instruction (G6 in time), keep a tamper-evident trail. NEVER executes a stored memory as an instruction.

  • Security OSINT Exposure Monitoras-sec-osint-exposure-monitor

    Continuous PASSIVE external-exposure + threat-intel monitoring for own and written-authorized client brands (cert-transparency & DNS footprint, passively-indexed service and bucket exposure, leaked-credential/breach monitoring, typosquat/lookalike-domain detection, public code/secret leakage, and dark-web mention triage) scored relevance × severity into an exposure register + brief.

  • Security Pentest Hubas-sec-pentest-hub

    Run an authorized security assessment end to end, establish the authorization and rules-of-engagement gate, choose one primary security route plus justified secondary routes, create a resumable case record, coordinate safe testing, compile evidence-backed findings, and re-test fixes. Report-only requests go to as-sec-pentest-report; live compromises go to as-sec-dfir-incident-response.

  • Security Pentest Reportas-sec-pentest-report

    Compile security findings into a professional, severity-ranked report with CVSS scores, safe proof-of-concept, business impact, and remediation, plus an executive summary.

  • Security Phishing Defenseas-sec-phishing-defense

    Defend the human layer against phishing and social engineering, email-auth anti-spoofing (SPF, DKIM, DMARC p=reject, MTA-STS, BIMI), a consent-based phishing-sim program that never captures real credentials, an awareness cadence, a one-click phish-report + safe triage SOP, and a BEC/vishing/smishing/wire-fraud playbook.

  • Security Prompt Injection Scanneras-sec-prompt-injection-scanner

    Scan untrusted content (tool output, fetched web/docs, uploads, pasted text) for prompt-injection payloads BEFORE an agent acts on it, treating the content as DATA, never instructions. Severity-ranks payloads and recommends quarantine/strip/allow.

  • Security Secure Build Patternsas-sec-secure-build-patterns

    The DEFENSIVE secure-coding standard applied WHILE building, the build-time bookend to the offensive pentest pack. Covers auth/authz/RBAC, IDOR-proof object-level checks, input validation, secure API design, secrets, secure-by-default headers/CSP, plus a pre-merge secure-build checklist enforceable in CI.

  • Security Security Reconas-sec-security-recon

    Map the authorized attack surface (domains, subdomains, endpoints, technologies, exposed assets, and metadata) passively first, then light active enumeration within scope.

  • Security Sensitive Details Auditas-sec-sensitive-details-audit

    Audit or redact sensitive details in a repository, skill pack, plugin, export, document set, or generated artifact without exposing the values in findings. Detects PII, client/operator names, private domains, account and project identifiers, personal paths, network addresses, credentials, and owner-only material; can create a separate sanitized copy with a value-suppressed replacement ledger.

  • Security Skill Auditas-sec-skill-audit

    Scan the CONTENT of a third-party agent skill, MCP server, or plugin for vulnerabilities and score the risk, answer "what does this code actually do, and is it dangerous?" by reading its files as data, never executing them.

  • Security Skill Supply Chainas-sec-skill-supply-chain

    Supply-chain adoption gate for an INCOMING third-party skill, MCP server, or plugin before install, verify provenance + signature, pin an integrity hash, run the permission-delta gate that BLOCKs a version silently widening file/network/secret/exec scope, then emit an install/decline verdict + SARIF.

  • Security Threat Modelas-sec-threat-model

    Threat-model a feature, flow, or system using STRIDE + data-flow diagrams to find design-level security risks before code ships.

  • Security Web App Pentestas-sec-web-app-pentest

    Test your own web application against the OWASP Top 10 / WSTG (access control, injection, auth/session, XSS, SSRF, misconfiguration) with safe proof-of-concept and remediation.