원클릭으로
cove
cove에는 liuzhixin405에서 수집한 skills 12개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.
이 저장소의 skills
Karpathy-inspired guidelines: Think before coding, Simplicity first, Surgical changes, Goal-driven execution
Use when you have a written implementation plan to execute in a separate session with review checkpoints
Write an actionable markdown plan before implementation. Bite-sized tasks, exact paths, complete code.
Write clear Conventional Commits. Imperative subject, explain why not what, one logical change per commit.
Optimize based on measurement, never guesswork. Profile first, fix the real bottleneck, verify the win.
Refactor code without changing behavior. Small steps, green tests after every change, no mixing with feature work.
Review PRs on GitHub: read diffs, leave inline comments, approve or request changes.
GitHub PR lifecycle: branch, commit, open PR, monitor CI, merge.
Pre-commit verification: security scan, quality gates, auto-fix before committing.
Throwaway experiments to validate an idea before building. Disposable by design.
4-phase root cause debugging: understand bugs before fixing. Never guess at fixes.
TDD: enforce RED-GREEN-REFACTOR cycle. Tests before code, always.