{
  "markdown": "# StackHawk Agent Skills\n\nYour agent writes the code. Nothing checks if it's exploitable.\n\nStackHawk agent skills fix that. Install once and your coding agent can configure security scans, run them against your live app, parse the findings, and fix what it found — all in the same session.\n\n## Try It Free\n14 days free, no card required. [auth.stackhawk.com/wingman](https://auth.stackhawk.com/wingman)\n\n\n**Your AI coding agent is also your security team.**\n\nStackHawk agent skills teach your AI coding agent to find security vulnerabilities as you build, report your security posture across applications, and help you fix what it finds — all without leaving your workflow. No context switching, no tickets to another team. Your agent scans, reports, and remediates.\n\nWorks with **Claude Code**, **Codex**, **Gemini CLI**, **GitHub Copilot**, **OpenCode**, **Cursor**, and anywhere the [Agent Skills standard](https://agentskills.io) is supported.\n\n---\n\n## Four Skills, One Security Workflow\n\n### [hawkscan](./plugins/hawkscan/) — Scan & Fix\n\nEmbeds [HawkScan](https://www.stackhawk.com) DAST scanning directly into your coding loop. Your agent configures the scanner, runs it against your live app, parses the findings, and generates prioritized fix tasks — then re-scans to confirm the fix worked.\n\n```\nCode changes → Configure HawkScan → Run scan → Parse findings → Fix → Re-scan\n```\n\n**Use it when:** you're building features, finishing a PR, or setting up security testing for a new project.\n\n### [stackhawk-api](./plugins/api/) — Report & Analyze\n\nQueries the StackHawk platform API to give you a picture of your security posture across all your applications. Your agent authenticates, pulls findings data, and presents actionable summaries.\n\n```\nQuestion → Authenticate → Query API → Present Results → Suggest Next Actions\n```\n\n**Use it when:** you want to know what needs attention, what changed since the last scan, or which apps are falling behind.\n\n### [hawkscan-ci](./plugins/hawkscan-ci/) — Wire It Into CI\n\nOnce HawkScan works locally, this skill graduates it into your CI/CD pipeline. It detects your CI provider, prompts for trigger and blocking behavior, and writes or patches the workflow file. Provider-agnostic — works with GitHub Actions, GitLab, Jenkins, CircleCI, and more.\n\n```\nLocal scan works → Detect CI provider → Plan integration → Set secret (CI store or external manager) → Write workflow → Verify and report\n```\n\n**Use it when:** you have `stackhawk.yml` working locally and want every PR or scheduled build to scan automatically.\n\n### [stackhawk-data-seed](./plugins/stackhawk-data-seed/) — Seed Scan Data\n\nDrives the `hawk perch seed` flow to generate checked-in seed artifacts — SQL scripts, HTTP fixtures, gRPC stubs, and a credentials handoff file — so HawkScan has real data to reach non-trivial application paths.\n\n```\nAnalyze repo → Design seed manifest → Generate artifacts → Finalize and hand off to hawkscan\n```\n\n**Use it when:** your scan is hitting dead ends because endpoints require specific request data or auth state to reach.\n\n---\n\n## Quick Start\n\n### 1. Get your API key\n\nSign up or log in at [app.stackhawk.com](https://app.stackhawk.com), go to **Settings → API Keys**, and create a key.\n\n```bash\nexport HAWK_API_KEY=hawk.xxxxxxxxxxxx.xxxxxxxxxxxx\n```\n\n### 2. Install for your platform\n\n#### Claude Code\n\n```\n/plugin marketplace add stackhawk/agent-skills\n/plugin install wingman@stackhawk      # installs hawkscan + api + data-seed + optimize\n```\n\nAdvanced — install individually instead:\n\n```\n# /plugin install hawkscan@stackhawk\n# /plugin install stackhawk-api@stackhawk\n# /plugin install hawkscan-ci@stackhawk\n# /plugin install stackhawk-data-seed@stackhawk\n# /plugin install stackhawk-optimize@stackhawk\n```\n\n#### Codex\n\n```\n/plugin marketplace add stackhawk/agent-skills\n/plugin install hawkscan@stackhawk\n/plugin install stackhawk-api@stackhawk\n/plugin install hawkscan-ci@stackhawk\n/plugin install stackhawk-data-seed@stackhawk\n/plugin install stackhawk-optimize@stackhawk\n```\n\nIf your Codex version supports umbrella dependency auto-install, you may use `/plugin install wingman@stackhawk` instead.\n\n#### Gemini CLI\n\n```bash\ngemini extensions install https://github.com/stackhawk/agent-skills\n```\n\n#### GitHub Copilot\n\n```\ncopilot plugin marketplace add stackhawk/agent-skills-marketplace\ncopilot plugin install wingman@stackhawk\n```\n\n`wingman` bundles the four default skills (`hawkscan`, `stackhawk-api`,\n`stackhawk-data-seed`, `stackhawk-optimize`). Copilot has no plugin-dependency\nmechanism, so wingman ships these as bundled copies rather than resolving them.\n\nTo add `hawkscan-ci` on top of an existing `wingman` install (it is not a\nwingman dependency, but is separately installable):\n\n```\ncopilot plugin install hawkscan-ci@stackhawk\n```\n\nTo install skills individually **instead of** `wingman` (do not run this after\ninstalling `wingman` — it duplicates the four skills you already have):\n\n```\ncopilot plugin install hawkscan@stackhawk\ncopilot plugin install stackhawk-api@stackhawk\ncopilot plugin install hawkscan-ci@stackhawk\ncopilot plugin install stackhawk-data-seed@stackhawk\ncopilot plugin install stackhawk-optimize@stackhawk\n```\n\nPlugins install to `~/.copilot/installed-plugins/stackhawk/<plugin>/`. Confirm\nthey appear under **GitHub Copilot → Configure Skills** in VS Code.\n\nSkill names differ between the two install paths above. The `wingman` bundle\nnamespaces its copies, so they list as `hawkscan`, `stackhawk-api`,\n`stackhawk-data-seed`, and `stackhawk-optimize`. A per-plugin install reads the\nsource skill instead, so `stackhawk-api` and `stackhawk-optimize` list as `api`\nand `optimize`. Renaming the source skills would change their invocation names\non every platform, so it is deferred to a separate major release.\n\n#### OpenCode\n\nSkills are auto-discovered from `.opencode/skills/`. Clone and copy (`-L` dereferences\nthe repo's internal skill symlinks so the copies work standalone):\n\n```bash\ngit clone https://github.com/stackhawk/agent-skills.git\nmkdir -p .opencode/skills\ncp -rL agent-skills/.opencode/skills/* .opencode/skills/\n\n# Global install (all projects):\nmkdir -p ~/.config/opencode/skills\ncp -rL agent-skills/.opencode/skills/* ~/.config/opencode/skills/\n```\n\nInstalls `hawkscan`, `stackhawk-api`, `hawkscan-ci`, `stackhawk-data-seed`, and `stackhawk-optimize`.\n\n#### Cursor\n\n```bash\n# macOS / Linux\ngit clone https://github.com/stackhawk/agent-skills.git\nbash agent-skills/scripts/install.sh --platform cursor --target .\n```\n\n```powershell\n# Windows\ngit clone https://github.com/stackhawk/agent-skills.git\n.\\agent-skills\\scripts\\install.ps1 -Platform cursor\n```\n\nInstalls Cursor rules (`.cursor/rules/`), skills (`.cursor/skills/`), and the stop hook that auto-triggers a scan when you finish coding.\n\n### 3. Try it\n\n```\n> \"Scan my API for security vulnerabilities\"\n\n> \"What's my security posture across all apps?\"\n```\n\n---\n\n## What You Can Do\n\n### Scanning Workflows (hawkscan skill)\n\n| Say this... | Your agent will... |\n|-------------|---------------|\n| \"Set up HawkScan for my Express API\" | Generate a `stackhawk.yml` config based on your stack |\n| \"Scan my app for security issues\" | Validate config, run `hawk scan`, parse findings |\n| \"Turn these scan findings into fix tasks\" | Prioritize by severity, generate actionable fix guidance |\n| \"I'm finishing up this feature\" | Proactively suggest a security scan before you merge |\n| \"My HawkScan auth is failing\" | Debug your authentication configuration |\n| \"Set up HawkScan in my CI pipeline\" | Generate CI-specific config with commit tagging |\n\n### Reporting Workflows (api skill)\n\n| Say this... | Your agent will... |\n|-------------|---------------|\n| \"What's my security posture?\" | Pull untriaged findings across all apps, present as a summary table |\n| \"Show me findings for payment-api\" | Drill down: scan → alerts → findings with severity, CWE, paths |\n| \"Which apps haven't been scanned recently?\" | Flag stale apps with no scan in 30+ days |\n| \"What changed since the last scan?\" | Diff two scans, show new and resolved findings |\n\n---\n\n## Supported Configurations\n\n**API & App Types:** REST/OpenAPI, GraphQL, gRPC, SOAP, JSON-RPC, standard web apps\n\n**Authentication Patterns:** Bearer token injection, form login (username/password), cookie sessions, OAuth2/external IdP (Auth0, Okta, Cognito), external command, custom scripts\n\n**Scan Runtimes:** `hawk` CLI (recommended for local/agentic use), Docker (`stackhawk/hawkscan`)\n\n**Environments:** Local development, CI/CD (GitHub Actions, GitLab CI, Jenkins, etc.)\n\n---\n\n## How It Works\n\nThese are [Agent Skills](https://agentskills.io) — they teach AI coding agents domain-specific knowledge through structured markdown files. No runtime dependencies are installed. No code runs in the background.\n\n- **Skill files** define step-by-step workflows with decision logic (assess → configure → execute → parse → act)\n- **Reference files** provide endpoint catalogs, config patterns, and pre-built recipes loaded on demand\n- The hawkscan skill calls the `hawk` CLI or Docker to run scans\n- The api skill calls the StackHawk REST API via `curl` and `jq`\n\n### Repository Structure\n\n```\nplugins/\n├── hawkscan/                    HawkScan DAST scanning\n│   └── skills/hawkscan/\n│       ├── SKILL.md             scan workflow\n│       └── references/          CLI flags, config patterns, findings schema, Docker, install\n├── api/                         StackHawk API reporting\n│   └── skills/api/\n│       ├── SKILL.md             reporting workflow\n│       └── references/          auth flow, endpoint catalog, reporting recipes\n├── hawkscan-ci/                 CI/CD pipeline integration\n│   └── skills/hawkscan-ci/\n│       ├── SKILL.md             CI wiring workflow\n│       └── references/          execution shapes, app startup, failure semantics\n└── stackhawk-data-seed/         Scan data seeding\n    └── skills/stackhawk-data-seed/\n        └── SKILL.md             hawk perch seed workflow\nskills/                          Symlinks for Gemini/Copilot discovery\ncursor/                          Generated Cursor .mdc rules\nscripts/install.sh               Installer for Cursor and Copilot (macOS/Linux)\nscripts/install.ps1              Installer for Cursor and Copilot (Windows)\n```\n\n### Platform Support\n\n| Platform | Install Method | Skills Available |\n|----------|---------------|-----------------|\n| Claude Code | `/plugin install` | hawkscan, stackhawk-api, hawkscan-ci, stackhawk-data-seed, stackhawk-optimize |\n| Codex | `/plugin install` | hawkscan, stackhawk-api, hawkscan-ci, stackhawk-data-seed, stackhawk-optimize |\n| Gemini CLI | `gemini extensions install` | hawkscan, stackhawk-api, hawkscan-ci, stackhawk-data-seed, stackhawk-optimize |\n| GitHub Copilot | `copilot plugin install wingman@stackhawk` (or per-plugin) | hawkscan, stackhawk-api, stackhawk-data-seed, stackhawk-optimize (+ hawkscan-ci via per-plugin install) |\n| OpenCode | Copy to `.opencode/skills/` | hawkscan, stackhawk-api, hawkscan-ci, stackhawk-data-seed, stackhawk-optimize |\n| Cursor | `install.sh --platform cursor` | hawkscan, stackhawk-api, hawkscan-ci, stackhawk-data-seed, stackhawk-optimize |\n\n---\n\n## Prerequisites\n\n| Requirement | For scanning | For reporting |\n|-------------|:---:|:---:|\n| [StackHawk account](https://app.stackhawk.com) (free tier available) | Required | Required |\n| `HAWK_API_KEY` environment variable | Required | Required |\n| [`hawk` CLI](https://docs.stackhawk.com/stackhawk-cli/) or Docker | Required | — |\n| [`jq`](https://jqlang.github.io/jq/) | — | Required |\n| A running application to scan | Required | — |\n\n---\n\n## Security\n\nNever hardcode your `HAWK_API_KEY` in config files or scripts. Always use environment variables:\n\n```bash\n# Good\nexport HAWK_API_KEY=hawk.xxxxxxxxxxxx.xxxxxxxxxxxx\n\n# Bad — never do this\n# api_key: hawk.xxxxxxxxxxxx.xxxxxxxxxxxx  ← in stackhawk.yml\n```\n\nThe hawkscan skill enforces `${HAWK_API_KEY}` interpolation in all generated configs. The api skill stores tokens in shell variables only — never written to disk.\n\n---\n\n## Resources\n\n- [HawkScan Documentation](https://docs.stackhawk.com/hawkscan/)\n- [StackHawk CLI Reference](https://docs.stackhawk.com/stackhawk-cli/)\n- [StackHawk API Reference](https://apidocs.stackhawk.com)\n- [Auth Configuration Examples](https://github.com/kaakaww/hawkscan-examples)\n- [Agent Skills Specification](https://agentskills.io)\n- [StackHawk Platform](https://app.stackhawk.com)\n- [StackHawk Support](https://support.stackhawk.com)\n\n---\n\n<!-- eval-badges:start -->\n<!-- generated by publish-eval-badges.yml from v1.13.1 - do not edit by hand -->\n## Eval Results\n\nSkill eval pass rates at the latest release, broken down by skill. Each badge is one agent (tool × model); the score is the deterministic pass rate across that skill's eval prompts.\n\n### hawkscan\n\n> Configures HawkScan, runs StackHawk against your app, fixes the vulnerabilities it finds, and rescans to verify.\n\n[![hawkscan · claude-code · haiku-4-5](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fhawkscan%2Fclaude-code%2Fclaude-haiku-4-5-20251001.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml) [![hawkscan · claude-code · opus-4-7](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fhawkscan%2Fclaude-code%2Fclaude-opus-4-7.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml) [![hawkscan · claude-code · sonnet-4-6](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fhawkscan%2Fclaude-code%2Fclaude-sonnet-4-6.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml)  \n[![hawkscan · codex · gpt-5.5](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fhawkscan%2Fcodex%2Fgpt-5.5.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml) [![hawkscan · codex · o3](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fhawkscan%2Fcodex%2Fo3.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml)  \n[![hawkscan · agy · default](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fhawkscan%2Fagy%2Fdefault.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml)  \n[![hawkscan · cursor · default](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fhawkscan%2Fcursor%2Fdefault.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml)  \n\n### api\n\n> Queries the StackHawk platform API for findings, scan history, and security posture across your apps.\n\n[![api · claude-code · haiku-4-5](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fapi%2Fclaude-code%2Fclaude-haiku-4-5-20251001.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml) [![api · claude-code · opus-4-7](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fapi%2Fclaude-code%2Fclaude-opus-4-7.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml) [![api · claude-code · sonnet-4-6](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fapi%2Fclaude-code%2Fclaude-sonnet-4-6.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml)  \n[![api · codex · gpt-5.5](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fapi%2Fcodex%2Fgpt-5.5.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml) [![api · codex · o3](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fapi%2Fcodex%2Fo3.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml)  \n[![api · agy · default](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fapi%2Fagy%2Fdefault.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml)  \n[![api · cursor · default](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fapi%2Fcursor%2Fdefault.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml)  \n\n### stackhawk-data-seed\n\n> Sets up checked-in seed data so authenticated scans can reach non-trivial application paths.\n\n[![stackhawk-data-seed · claude-code · haiku-4-5](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fstackhawk-data-seed%2Fclaude-code%2Fclaude-haiku-4-5-20251001.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml) [![stackhawk-data-seed · claude-code · opus-4-7](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fstackhawk-data-seed%2Fclaude-code%2Fclaude-opus-4-7.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml) [![stackhawk-data-seed · claude-code · sonnet-4-6](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fstackhawk-data-seed%2Fclaude-code%2Fclaude-sonnet-4-6.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml)  \n[![stackhawk-data-seed · codex · gpt-5.5](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fstackhawk-data-seed%2Fcodex%2Fgpt-5.5.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml) [![stackhawk-data-seed · codex · o3](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fstackhawk-data-seed%2Fcodex%2Fo3.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml)  \n[![stackhawk-data-seed · agy · default](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fstackhawk-data-seed%2Fagy%2Fdefault.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml)  \n[![stackhawk-data-seed · cursor · default](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fstackhawk-data-seed%2Fcursor%2Fdefault.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml)  \n\n### hawkscan-ci\n\n> Wires HawkScan into your CI/CD pipeline — detects the provider and writes the workflow file.\n\n[![hawkscan-ci · claude-code · haiku-4-5](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fhawkscan-ci%2Fclaude-code%2Fclaude-haiku-4-5-20251001.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml) [![hawkscan-ci · claude-code · opus-4-7](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fhawkscan-ci%2Fclaude-code%2Fclaude-opus-4-7.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml) [![hawkscan-ci · claude-code · sonnet-4-6](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fhawkscan-ci%2Fclaude-code%2Fclaude-sonnet-4-6.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml)  \n[![hawkscan-ci · codex · gpt-5.5](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fhawkscan-ci%2Fcodex%2Fgpt-5.5.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml) [![hawkscan-ci · codex · o3](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fhawkscan-ci%2Fcodex%2Fo3.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml)  \n[![hawkscan-ci · agy · default](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fhawkscan-ci%2Fagy%2Fdefault.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml)  \n[![hawkscan-ci · cursor · default](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstackhawk%2Fagent-skills%2Fbadges%2Fhawkscan-ci%2Fcursor%2Fdefault.json)](https://github.com/stackhawk/agent-skills/actions/workflows/capture-baseline.yml)  \n\n<!-- eval-badges:end -->\n\n## Contributing\n\nThis repository is maintained by the StackHawk team. To report issues or suggest improvements, [open a GitHub issue](https://github.com/stackhawk/agent-skills/issues) or contact [support@stackhawk.com](mailto:support@stackhawk.com).\n\n## License\n\nMIT © [StackHawk](https://www.stackhawk.com)\n\n---\n",
  "bytes": 21403,
  "sha": "da001180dea9b9031d5d9954ee193b9a10e94e11a28165b1f02bad3a9ec6f584",
  "repo_slug": "stackhawk/claude-skills",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_stackhawk_claude_skills_stackhawk_skills_d9e69dbb/readme"
}