forest6511

60 mods across 2 repositories, 13 stars between them.

refactor-bulk

25

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.

5 4mo ago A 25 tokens original MIT

refactor

26

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.

5 4mo ago A 55 tokens original MIT

commit-message

27

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.

5 4mo ago A 22 tokens original MIT

new-branch

28

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.

5 4mo ago A 23 tokens original MIT

pr-description

29

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.

5 4mo ago A 19 tokens original MIT

release-prep

30

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.

5 4mo ago A 19 tokens original MIT

security-deps

31

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.

5 4mo ago A 24 tokens original MIT

security-iac

32

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.

5 4mo ago A 20 tokens original MIT

security-sast

33

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.

5 4mo ago A 24 tokens original MIT

security-scan-all

34

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.

5 4mo ago A 32 tokens original MIT

security-secrets

35

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.

5 4mo ago A 36 tokens original MIT

api-design

36

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.

5 4mo ago A 18 tokens original MIT

api-docs

37

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.

5 4mo ago A 27 tokens original MIT

openapi-generate

38

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.

5 4mo ago A 28 tokens original MIT

autofix-bounded

39

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.

5 4mo ago A 27 tokens original MIT

headless-template

40

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.

5 4mo ago A 21 tokens original MIT

PostToolUse

42

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.

5 4mo ago A tokens not measured original MIT

test-runner

43

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.

5 4mo ago A 24 tokens original MIT

issue-triage

44

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.

5 4mo ago A 31 tokens original MIT

visual-test

45

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.

5 4mo ago A 28 tokens original MIT

api-doc-writer

46

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.

5 4mo ago A 49 tokens original MIT

debug-skills

47

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.

5 4mo ago A 31 tokens original MIT