Skill Claude CodeCodex
Use when starting to implement a task-by-task plan. Work through checkboxes in order, verify each step, commit frequently.
Skill Claude CodeCodex
Use when starting to implement a task-by-task plan. Work through checkboxes in order, verify each step, commit frequently.
Skill Claude CodeCodex
A requirements-clarification guide for situations where a request is vague, hides important assumptions, or may ask for the wrong solution.
Skill Claude CodeCodex
A structured guide for reviewing code by looking first for correctness, security, edge cases, failures, and concurrency problems.
Skill Claude CodeCodex
A guide for writing useful Git commit messages that explain what changed and why, using a consistent format.
Skill Claude CodeCodex
A methodical way to find the underlying cause of software bugs by observing what happens, forming hypotheses, and testing them. It separates finding the cause from applying and checking the fix.
Skill Claude CodeCodex
A guide to handling failures and recording useful logs in software. It explains when to pass an error upward, handle it locally, or retry it.
Skill Claude CodeCodex
A set of instructions for creating or changing reusable skills in the Lion-Skills repository. A skill is an operations guide that tells a future coding agent when and how to handle a recurring workflow.
Skill Claude CodeCodex
A guide for choosing clear names for code elements such as variables, functions, classes, files, APIs, and database fields.
Skill Claude CodeCodex
A step-by-step method for understanding an unfamiliar codebase, including its purpose, technology, structure, entry points, and main flow. A codebase is the collection of source code and related project files.
Skill Claude CodeCodex
A guide for writing a software design specification: a document that records decisions, reasons, boundaries, and how success will be checked.
Skill Claude CodeCodex
A planning method for splitting a large software requirement into small tasks that can each be completed, checked, merged, and undone on their own.
Skill Claude CodeCodex
A guide to writing tests that check what software should do rather than how its code is arranged. Tests are repeatable checks; it covers functions, external services, user interfaces, and cooperating modules.
Skill Claude CodeCodex
A verification-and-repair workflow for checking finished code with tests, type checks, or a real run of the target scenario. It treats verification as evidence that the work is complete.
Plugin Claude Code
A collection of reusable instructions for common software-development work. It covers activities such as clarifying requirements, writing specifications, planning tasks, testing, debugging, code review, and learning an unfamiliar codebase.
Plugin Claude Code
通用开发工作流 skills 套件:clarifying-questions、spec-writing、task-breakdown、testing、debugging、code-review、verify-and-fix、commit-message、onboarding-unknown-codebase、naming、error-handling、lion-writing-skills.
Skill Claude CodeCodex
Guidance for clarifying vague or assumption-heavy requests before making changes.
Skill Claude CodeCodex
A structured code-review guide that checks code for correctness, security, edge cases, concurrency problems, tests, and maintainability.
Skill Claude CodeCodex
A guide for writing clear, traceable Git commit messages using the Conventional Commits format, which labels changes such as features, bug fixes, documentation, and refactoring.
Skill Claude CodeCodex
A systematic method for finding the underlying cause of a software bug by observing the failure, forming a hypothesis, and testing it.
Skill Claude CodeCodex
A guide to handling failures and recording useful logs in software. It explains when to pass an error upward, recover, reduce functionality, or retry temporary failures.
Skill Claude CodeCodex
A guide for creating or changing reusable skills in the Lion-Skills repository. A skill is an instruction manual that helps a coding agent perform a repeated workflow consistently.
Skill Claude CodeCodex
A guide for choosing clear names for code elements such as variables, functions, classes, files, and database fields. It focuses on names that explain what something is or does.
Skill Claude CodeCodex
A method for quickly understanding an unfamiliar codebase, meaning a software project whose structure and behavior you do not yet know. It builds a project map by examining overview files, directories, and one main execution path.
Skill Claude CodeCodex
A method for writing a software specification: a document that records decisions, reasons, boundaries, and ways to judge whether implementation succeeded. It first checks whether important unknowns require user clarification or technical research.