Agent
A read-only code-review agent that examines changes on the current Git branch and returns a structured JSON report.
Agent
A read-only code-review agent that examines changes on the current Git branch and returns a structured JSON report.
Agent
A read-only helper that summarizes the context of a completed coding task. It identifies the goal, constraints, symptoms, and root cause or key decision, in Chinese.
Agent
A read-only agent that checks whether docs/solutions/ already contains a note overlapping with the current engineering task. It reports whether to create a new note or update an existing one.
Agent
A read-only helper that extracts reusable solutions from completed coding tasks. It returns the final approach, why it worked, how to verify it, and how to reuse it, in Chinese.
Skill Claude CodeCodex
A documentation-refactoring guide for AGENTS.md, a file that gives coding agents instructions for working in a repository. It reorganizes the guide into a short root file and linked detail documents, in Chinese.
Skill Claude CodeCodex
A guide for shortening AGENTS.md, the repository instruction file read by coding agents. It focuses on keeping essential project rules while removing details agents can discover from the code.
Skill Claude CodeCodex
┌─────────────────┐ │ 组件 A │ │ (描述) │ └────────┬────────┘ │ ▼ ┌─────────────────┐ │ 组件 B │ └─────────────────┘.
Skill Claude CodeCodex
A workflow for turning completed coding work into a reusable solution note. It captures the problem, context, final approach, verification, and reuse guidance in a Markdown file under docs/solutions/.
Skill Claude CodeCodex
A code-review workflow that checks changes against both repository coding rules and the original task requirements. It compares changes from a specified Git starting point and reports the two reviews side by side.
Skill Claude CodeCodex
A design guide for organizing code around small interfaces that hide substantial behavior. It defines shared terms for modules, implementations, adapters, seams, testability, and the benefits of keeping changes localized.
Skill Claude CodeCodex
A design workflow for defining the important concepts, terms, relationships, and rules in a business area. It records agreed decisions in files such as CONTEXT.md and architecture decision records (written notes explaining important technical choices).
Skill Claude CodeCodex
A tool that examines staged Git changes and creates a Chinese commit message using Conventional Commits, a shared format such as feat, fix, or docs followed by a short description.
Skill Claude CodeCodex
A guided requirements interview for product managers who understand the business but are not technical. It runs a grilling session to turn their answers into information developers can use.
Skill Claude CodeCodex
An interview-style skill that asks detailed questions to improve a plan or design.
Skill Claude CodeCodex
A guided grilling session that also uses domain modeling: defining the business concepts, terms, relationships, and rules behind a system.
Skill Claude CodeCodex
A structured questioning guide for testing a plan, decision, or idea. It asks one question at a time and follows each answer through the relevant decision branches.
Skill Claude CodeCodex
A handover document that records enough of the current conversation for another coding agent to continue the work. It saves the document in the operating system's temporary folder instead of the project.
Skill Claude CodeCodex
An implementation workflow that turns a product specification or set of work tickets into code, using a related test matrix as a reference. A test matrix is a list of planned checks for the work.
Skill Claude CodeCodex
A workflow for implementing work described in a specification or task list. It combines regular checks with test-driven development (writing a failing test, making it pass, then improving the code) and code review.
Skill Claude CodeCodex
A codebase review that looks for opportunities to reshape modules so their complexity is concentrated behind clear interfaces. A module is a focused part of a program, and an interface is the boundary other code uses to interact with it.
Skill Claude CodeCodex
A repository setup skill that configures where project issues are stored and which labels are used for sorting and triage. An issue tracker is a place for recording and managing work items, such as GitHub Issues or local Markdown files.
Skill Claude CodeCodex
A throwaway prototype built to answer one design question quickly. It can test whether a logic or state model feels right, or show several possible versions of a user interface.
Skill Claude CodeCodex
A setup guide for configuring engineering skills around an issue tracker, triage labels, and project documentation.
Skill Claude CodeCodex
A test-driven development workflow, commonly called TDD, where you write a failing test, add the smallest code that makes it pass, and then repeat. Tests check behavior through a public interface rather than private implementation details.