1a6af44a73
Copy the shannon skill from unicodeveloper/shannon into the Agent Skills repo. Add proper full AGPL-3.0 license text to respect upstream licensing. Update CLAUDE.md to document the new skill. Co-Authored-By: Paperclip <noreply@paperclip.ing>
1.7 KiB
1.7 KiB
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Overview
This is a Claude Code skills repository. Skills are reusable tools that extend Claude Code's capabilities. Each skill lives in its own top-level directory.
Skill Structure
Each skill follows this convention:
<skill-name>/SKILL.md— Required. Contains YAML frontmatter (name,description) and usage documentation. This is the entry point Claude Code reads when invoking the skill.<skill-name>/scripts/— Implementation scripts (bash). Scripts useset -euo pipefailand thedie()pattern for error handling.
Current Skills
github-app-token— Documents how to generate short-lived GitHub App installation access tokens. RequiresGITHUB_APP_ID,GITHUB_APP_INSTALLATION_ID, andGITHUB_APP_PEM_FILEenv vars. Inline commands only — no bundled scripts.playwright-ephemeral— Provisions ephemeral Playwright MCP browser sessions as Kubernetes Jobs for E2E testing. Creates a Job + Service pair in a dedicated namespace, waits for readiness, and returns the MCP endpoint URL. Requireskubectland appropriate RBAC.shannon— Autonomous AI pentester for web apps and APIs. Wraps the Docker-based Shannon pentester as a/shannonslash command. Requiresdocker,git, and an AI API key (ANTHROPIC_API_KEYor equivalent).
Key Patterns
- Scripts are pure bash with no external dependencies beyond standard Unix tools (
openssl,curl,jq,kubectl,docker). - The
die()function prints errors to stderr and exits non-zero.
No Build/Test/Lint System
There is no centralized build, test, or lint tooling. Each skill is self-contained.