Browse Skills
9063 skills found
grey-haven-evaluation.md
15
1
export
grey-haven-evaluation
2
from
"greyhaven-ai/claude-code-config"
from
"greyhaven-ai/claude-code-config"
3
Evaluate LLM outputs with multi-dimensional rubrics, handle non-determinism, and implement LLM-as-judge patterns. Essential for production LLM systems. Use when testing prompts, validating outputs, comparing models, or when user mentions 'evaluation', 'testing LLM', 'rubric', 'LLM-as-judge', 'output quality', 'prompt testing', or 'model comparison'.
2026-01-21
CI/CD Optimization.md
15
1
export
CI/CD Optimization
2
from
"yaleh/meta-cc"
from
"yaleh/meta-cc"
3
Comprehensive CI/CD pipeline methodology with quality gates, release automation, smoke testing, observability, and performance tracking. Use when setting up CI/CD from scratch, build time over 5 minutes, no automated quality gates, manual release process, lack of pipeline observability, or broken releases reaching production. Provides 5 quality gate categories (coverage threshold 75-80%, lint blocking, CHANGELOG validation, build verification, test pass rate), release automation with conventional commits and automatic CHANGELOG generation, 25 smoke tests across execution/consistency/structure categories, CI observability with metrics tracking and regression detection, performance optimization including native-only testing for Go cross-compilation. Validated in meta-cc with 91.7% pattern validation rate (11/12 patterns), 2.5-3.5x estimated speedup, GitHub Actions native with 70-80% transferability to GitLab CI and Jenkins.
2025-12-13
browsing-with-playwright.md
15
1
export
browsing-with-playwright
2
from
"panaversity/claude-code-skills-lab"
from
"panaversity/claude-code-skills-lab"
3
Browser automation using Playwright MCP. Navigate websites, fill forms, click elements, take screenshots, and extract data. Use for web browsing, form submission, web scraping, or UI testing. NOT for static content (use curl/wget).
2026-01-05
redteam.md
15
1
export
redteam
2
from
"Everplay-Tech/pewpew"
from
"Everplay-Tech/pewpew"
3
Adversarial analysis. Use rt: to think like an attacker and find vulnerabilities, exploits, and weaknesses. Security mindset on demand.
2026-01-05
grey-haven-pr-template.md
15
1
export
grey-haven-pr-template
2
from
"greyhaven-ai/claude-code-config"
from
"greyhaven-ai/claude-code-config"
3
Generate pull request descriptions following Grey Haven Studio standards with clear summary, motivation, implementation details, testing strategy, and comprehensive checklist. Use when creating or reviewing pull requests.
2026-01-21
grey-haven-security-analysis.md
15
1
export
grey-haven-security-analysis
2
from
"greyhaven-ai/claude-code-config"
from
"greyhaven-ai/claude-code-config"
3
Comprehensive security analysis with vulnerability detection, OWASP Top 10 compliance, penetration testing simulation, and remediation. Use when conducting security audits, pre-deployment security checks, investigating vulnerabilities, or performing compliance assessments.
2026-01-21
create-unit-test.md
15
1
export
create-unit-test
2
from
"AnySoftKeyboard/janus"
from
"AnySoftKeyboard/janus"
3
Create and run unit tests following the project's architecture and guidelines (Robolectric, naming, location).
2026-01-13
rust.md
14
1
export
rust
2
from
"vdemeester/home"
from
"vdemeester/home"
3
Rust development best practices and patterns. USE WHEN writing Rust code, designing Rust projects, working with Cargo, testing, or Rust package development.
2026-01-05
systematicdebugging.md
14
1
export
systematicdebugging
2
from
"vdemeester/home"
from
"vdemeester/home"
3
Evidence-based debugging methodology emphasizing observation over assumptions following the scientific method. USE WHEN user reports a bug OR system behavior is unexpected OR troubleshooting issues OR investigating errors OR debugging failures. Follows observe, hypothesize, test, verify cycle with disciplined evidence gathering.
2026-01-05
python.md
14
1
export
python
2
from
"vdemeester/home"
from
"vdemeester/home"
3
Python development best practices and modern tooling with uv. USE WHEN writing Python code, managing dependencies, testing, type checking, or working with Python projects.
2026-01-05
writingplans.md
14
1
export
writingplans
2
from
"vdemeester/home"
from
"vdemeester/home"
3
Creates comprehensive implementation plans with bite-sized tasks before touching code. USE WHEN user wants detailed implementation plan OR has spec/requirements for multi-step task OR needs to break down complex feature OR before starting significant coding work. Documents file paths, code examples, testing, and verification steps assuming engineer has minimal codebase context.
2026-01-05
analyze-wast.md
14
1
export
analyze-wast
2
from
"Milky2018/wasmoon"
from
"Milky2018/wasmoon"
3
Analyze WebAssembly test (WAST) files to debug compilation issues and create regression tests. Use when the user asks to debug or analyze WAST test failures, investigate compilation bugs in wasmoon, or when encountering test failures in spec/*.wast files. Triggers include "analyze wast", "debug wast", "wast bug", or references to specific .wast test files.
2026-01-21
cc-chrome-devtools-mcp-skill.md
14
1
export
cc-chrome-devtools-mcp-skill
2
from
"justfinethanku/cc_chrome_devtools_mcp_skill"
from
"justfinethanku/cc_chrome_devtools_mcp_skill"
3
Comprehensive Chrome DevTools automation for performance testing, Core Web Vitals measurement (INP, LCP, CLS), network monitoring, accessibility validation, responsive testing, and browser automation. Uses Chrome DevTools Protocol via MCP to provide professional-grade web application testing, debugging, and analysis capabilities including performance tracing, HAR export, device emulation, and multi-page workflows.
2026-01-14
golang.md
14
1
export
golang
2
from
"vdemeester/home"
from
"vdemeester/home"
3
Go development best practices and patterns. USE WHEN writing Go code, designing Go projects, working with Go tools, testing, or Go package development.
2026-01-05
testdrivendevelopment.md
14
1
export
testdrivendevelopment
2
from
"vdemeester/home"
from
"vdemeester/home"
3
Disciplined TDD workflow enforcing red-green-refactor cycle and the "iron law" of no production code without failing tests first. USE WHEN user wants to write tests first OR implement new feature with TDD OR fix bugs with test coverage OR explicitly requests TDD approach. Enforces systematic test-first development with verification at each step.
2026-01-05
fix-bug.md
14
1
export
fix-bug
2
from
"Milky2018/wasmoon"
from
"Milky2018/wasmoon"
3
Systematic bug fixing workflow with regression tests and PR creation. Use when the user asks to "fix a bug", "debug an issue", "resolve a problem", or provides error messages/failing tests to fix. Handles reproduction, root cause analysis, test creation, fix implementation, and PR submission.
2026-01-21
maestro-workflow.md
14
1
export
maestro-workflow
2
from
"sionic-ai/sionic-maestro-skills"
from
"sionic-ai/sionic-maestro-skills"
3
Multi-LLM orchestration implementing the 5-stage coding workflow: Example Analysis → Hypothesis → Implementation → Debug Loop → Recursive Improvement.
Based on "Towards a Science of Scaling Agent Systems" (Kim et al., 2025): - Centralized Consult architecture (Claude orchestrates, others advise) - Measured coordination (avoid MAS overhead in tool-heavy stages) - Tests-first selection (Poetiq pattern, not voting)
Use when: Debugging complex issues, analyzing unfamiliar code, refactoring, or any task that benefits from diverse LLM perspectives with verification.
2026-01-14
emacslisp.md
14
1
export
emacslisp
2
from
"vdemeester/home"
from
"vdemeester/home"
3
Emacs Lisp development with modern tooling and best practices. USE WHEN writing Emacs configuration, developing packages, testing, linting, publishing to MELPA/ELPA, or working with Emacs Lisp code.
2026-01-05
control-mapping.md
14
1
export
control-mapping
2
from
"ethanolivertroy/fedramp-docs-mcp"
from
"ethanolivertroy/fedramp-docs-mcp"
3
Maps NIST controls to FedRAMP requirements and documents. Use when helping with control implementation, compliance mapping, security baseline alignment, or understanding control requirements.
2026-01-14
usinggitworktrees.md
14
1
export
usinggitworktrees
2
from
"vdemeester/home"
from
"vdemeester/home"
3
Creates isolated git worktrees with smart directory selection and safety verification for parallel development. USE WHEN starting feature work that needs isolation from current workspace OR before executing implementation plans OR working on multiple branches simultaneously OR need clean test environment. Creates isolated workspaces sharing the same repository.
2026-01-05
ln-312-task-replanner.md
13
1
export
ln-312-task-replanner
2
from
"levnikolaevich/claude-code-skills"
from
"levnikolaevich/claude-code-skills"
3
Updates ALL task types (implementation/refactoring/test). Compares IDEAL plan vs existing tasks, categorizes KEEP/UPDATE/OBSOLETE/CREATE, applies changes in Linear and kanban.
2026-01-21
crack-7z-hash.md
13
1
export
crack-7z-hash
2
from
"letta-ai/skills"
from
"letta-ai/skills"
3
This skill provides guidance for cracking 7z archive password hashes. It should be used when tasks involve extracting hashes from password-protected 7z archives, selecting appropriate cracking tools, and recovering passwords through dictionary or brute-force attacks. Applicable to password recovery, security testing, and CTF challenges involving encrypted 7z files.
2026-01-21
ln-360-codebase-auditor.md
13
1
export
ln-360-codebase-auditor
2
from
"levnikolaevich/claude-code-skills"
from
"levnikolaevich/claude-code-skills"
3
Coordinates 9 specialized audit workers (security, build, architecture, code quality, dependencies, dead code, observability, concurrency, lifecycle). Researches best practices, delegates parallel audits, aggregates results into single Linear task in Epic 0.
2026-01-21
ipsw.md
13
1
export
ipsw
2
from
"blacktop/ipsw-skill"
from
"blacktop/ipsw-skill"
3
Apple firmware and binary reverse engineering with the ipsw CLI tool. Use when analyzing iOS/macOS binaries, disassembling functions in dyld_shared_cache, dumping Objective-C headers from private frameworks, downloading IPSWs or kernelcaches, extracting entitlements, analyzing Mach-O files, or researching Apple security. Triggers on requests involving Apple RE, iOS internals, kernel analysis, KEXT extraction, or vulnerability research on Apple platforms.
2026-01-09