postgres
01forest6511/claude-code-recipes-v2
MCP server Claude CodeCodexCursor +2
Minimal, token-efficient Database MCP Server for PostgreSQL, MySQL, SQL Server, SQLite, MariaDB. Runs locally from the @bytebase/dbhub npm package.
forest6511/claude-code-recipes-v2
MCP server Claude CodeCodexCursor +2
Minimal, token-efficient Database MCP Server for PostgreSQL, MySQL, SQL Server, SQLite, MariaDB. Runs locally from the @bytebase/dbhub npm package.
forest6511/claude-code-recipes-v2
Settings file Claude Code
Agent settings declaring 3 allowed tools.
forest6511/claude-code-recipes-v2
Plugin Claude Code
Internal runbook search via MCP and CLI.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
API design patterns for this codebase.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
Deep architectural analysis using extended thinking.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
Deploy the application to production.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
Internal Python coding style for this repo.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
Run a structured code review on the current file or PR diff.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A structured way to explain code using a short summary, an everyday analogy, an ASCII diagram, a step-by-step walkthrough, and common pitfalls.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A pre-pull-request checklist for checking tests, type errors, changelog entries, linked issues, and visual evidence for interface changes. A pull request is a proposed code change submitted for review.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A workflow for fixing a GitHub Issue, which is a tracked task or bug report in a code repository.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A workflow for moving a software component from one programming framework to another. It keeps the component's existing behavior and tests during the move.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A procedure for moving a software component from one framework to another while keeping its behavior and tests. It also adapts the component’s type definitions to the conventions of the new framework.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A pull request summary workflow that reads the current pull request's diff, comments, and changed-file list. It produces a short overview, classifies the change, and lists review concerns.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A release-note generator that reads Git history and file-change statistics between releases. Release notes are a summary of what changed in a software version.
forest6511/claude-code-recipes-v2
Agent Claude Code
A security-review agent that examines code using the OWASP Top 10, a widely used list of common web-application security risks.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A codebase research procedure written in Japanese for investigating a specific topic thoroughly. It searches related files, reads the relevant code, traces callers and dependencies, and records findings with file paths.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A pull-request summary for a fork, which is a separate copy of a repository. It uses the pull request’s code changes, comments, and changed-file list to produce a short review-oriented report.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A security review for a codebase or selected files. It checks for injection risks, authentication and permission problems, exposed secrets, and dependencies with known vulnerabilities.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A general code review for staged changes or specified files. It checks correctness, security, performance, readability, and whether new logic has suitable tests.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A code-review workflow that reviews a selected target, or the staged Git changes when no target is given, and drafts a pull request description. A pull request is a proposed set of changes for review before merging.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A security-focused code review for staged changes or another specified target. It checks common ways code can be attacked, such as injection, weak access controls, exposed secrets, and unsafe encryption.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A TypeScript testing workflow based on test-driven development (TDD), where tests are written before the implementation. It uses Vitest, a JavaScript and TypeScript test runner, and proceeds through failing tests, working code, and cleanup.
forest6511/claude-code-recipes-v2
Skill Claude CodeCodex
A guided implementation process using test-driven development, or TDD. TDD writes a failing test first, adds the smallest code needed to pass it, and then improves the code while keeping the test passing.