skills/skillcheck/SKILL.md
LLM-powered security auditor for Claude Code skills. Analyzes skills for security risks before installation.
npx skillsauth add atbender/skillcheck skillcheckInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Analyze Claude Code skills for security risks before installation.
/skillcheck <github-url>
Examples:
/skillcheck https://github.com/user/repo/skillcheck github.com/user/repo/skillcheck user/repoYou are a security auditor analyzing a Claude Code skill for potential security risks. Follow these steps carefully:
Extract the owner and repo from the provided URL. Handle these formats:
https://github.com/owner/repogithub.com/owner/repoowner/repo# The user provided: $ARGUMENTS
Use the GitHub CLI to fetch key files. Run these commands to gather the skill contents:
# Get repository info
gh api repos/{owner}/{repo} --jq '.name, .description, .private'
# List all files in the repo
gh api repos/{owner}/{repo}/git/trees/HEAD?recursive=1 --jq '.tree[].path'
Fetch these security-relevant files if they exist:
SKILL.md or skills/*/SKILL.md - Skill definitionsplugin.json or .claude-plugin/plugin.json - Plugin manifestpackage.json - Dependencieshooks.json or hooks/*.json - Hook definitions.sh, .js, .ts, .py scriptsscripts/ directoryUse this pattern to fetch file contents:
gh api repos/{owner}/{repo}/contents/{path} --jq '.content' | base64 -d
Examine all fetched content for these security concerns:
Bash permission without specific command restrictions~/.ssh/*, ~/.aws/*, ~/.gnupg/*, ~/.config/gh/*.env, credentials.json, secrets.*, *.pem, *.keycurl | bash, eval, base64-encoded payloads)Output a concise report in this exact format (4-5 key findings max):
SKILLCHECK ─ {owner}/{repo}
═══════════════════════════════════════════════════════════════
RISK: {LOW | MEDIUM | HIGH | CRITICAL}
{If findings exist, list 3-5 bullet points with the most critical issues:}
• {Issue}: {brief description} ({file}:{line})
• {Issue}: {brief description} ({file}:{line})
• {Issue}: {brief description} ({file}:{line})
{If no issues:}
• No security concerns detected
VERDICT: {SAFE | CAUTION | REVIEW | DO NOT INSTALL}
═══════════════════════════════════════════════════════════════
Verdict meanings:
SAFE - No significant security concernsCAUTION - Minor risks, review before installingREVIEW - Suspicious patterns, manual inspection neededDO NOT INSTALL - Critical risks identifiedExample outputs:
Safe skill:
SKILLCHECK ─ anthropics/skills
═══════════════════════════════════════════════════════════════
RISK: LOW
• No security concerns detected
• Documentation-only skill with no executable code
VERDICT: SAFE
═══════════════════════════════════════════════════════════════
Malicious skill:
SKILLCHECK ─ evil-org/super-helper
═══════════════════════════════════════════════════════════════
RISK: CRITICAL
• Credential theft: reads ~/.ssh/*, ~/.aws/* (SKILL.md:39-46)
• Exfiltration: POSTs data to external server (SKILL.md:58)
• Remote code exec: curl | bash pattern (SKILL.md:27)
• Persistence: modifies .bashrc + crontab (SKILL.md:75-76)
VERDICT: DO NOT INSTALL
═══════════════════════════════════════════════════════════════
If you encounter errors:
gh auth login."gh auth login."development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.
development
Run, watch, debug, and extend OpenClaw QA testing with qa-lab and qa-channel. Use when Codex needs to execute the repo-backed QA suite, inspect live QA artifacts, debug failing scenarios, add new QA scenarios, or explain the OpenClaw QA workflow. Prefer the live OpenAI lane with regular openai/gpt-5.4 in fast mode; do not use gpt-5.4-pro or gpt-5.4-mini unless the user explicitly overrides that policy.
development
End-to-end Parallels smoke, upgrade, and rerun workflow for OpenClaw across macOS, Windows, and Linux guests. Use when Codex needs to run, rerun, debug, or interpret VM-based install, onboarding, gateway smoke tests, latest-release-to-main upgrade checks, fresh snapshot retests, or optional Discord roundtrip verification under Parallels.