forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A directory-wide refactoring process that applies a named code pattern to matching files. Refactoring changes the code’s structure without intending to change what it does.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A directory-wide refactoring process that applies a named code pattern to matching files. Refactoring changes the code’s structure without intending to change what it does.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A code-cleanup helper that improves a program's internal structure without changing what it does. Refactoring includes tasks such as extracting functions, removing duplication, and simplifying conditions.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A helper that reads staged Git changes and suggests a Conventional Commits message. Conventional Commits use labels such as feat, fix, and docs to describe the kind of change.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A helper that turns a feature description into a Git branch name following a team’s naming rules. Git branches are separate lines of work used to develop changes safely.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A draft-writing helper that turns the current code branch's changes and commit history into a pull request description. A pull request is a proposed code change submitted for review before it is merged.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A release-preparation helper that updates a project's version and writes a structured CHANGELOG entry, a file that records changes between releases.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A dependency-security checker that scans a project's libraries for known vulnerabilities, identified by CVE numbers. It chooses a scanner for Node.js, Python, Go, or Rust and groups findings by severity.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A security scanner for infrastructure configuration files, including Terraform, CloudFormation templates, and Kubernetes manifests. It checks whether these files contain unsafe settings.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
An option-checking helper that tests whether a proposed set of choices covers the real problem. It looks for hidden assumptions, missing alternatives, and false either-or choices.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A repository-wide security check covering source code, third-party dependencies, leaked secrets, and infrastructure files such as Terraform or Kubernetes configuration.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A secret-detection check for finding API keys, passwords, and tokens in source files or Git history. Git history is the record of earlier versions and commits in a repository.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A design aid that turns requirements into a proposed REST API structure. REST APIs let software exchange data through named web endpoints and HTTP methods such as GET or POST.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A documentation generator that turns an OpenAPI schema into API reference documentation. OpenAPI is a machine-readable description of an API, and the output can be a Redocly HTML site or Markdown.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
An OpenAPI 3.1 schema generator for describing web APIs. OpenAPI is a standard document that lists an API's URLs, inputs, outputs, data models, and authentication rules.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A bounded autofix workflow that prepares a constrained command for correcting lint or type errors. It limits changes to src/ and limits the number of commits.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A template for running a coding-agent task without an interactive user, such as in continuous integration or a scheduled job.
forest6511/claude-code-recipes-v2
Plugin Claude Code
A shared internal development-support add-on for Acme teams. The details of its tools are not provided.
forest6511/claude-code-recipes-v2
Hook
Runs after a tool call finishes for Write and Edit tool calls, executing lint-check.sh. From forest6511/claude-code-recipes-v2.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
Runs the project test suite with team-standard configuration. Use when running tests or validating changes before commit.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
Triages GitHub Issues by classifying type and setting priority. Use when organizing issues, setting labels, or prioritizing backlog.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
Takes page snapshots and verifies UI changes using Playwright. Use when checking visual regression, layout issues, or UI validation.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A tool that creates REST API documentation in OpenAPI 3.1, a standard format for describing how web APIs work. It can document new or existing endpoints and check API changes in pull requests.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
Diagnoses why a Skill is not working as expected. Use when a skill fails silently, does not activate, or produces unexpected results.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
This skill does: something.