← スキル一覧に戻る

coding-workflow
by az9713
A learning system for Claude Code that captures insights from coding sessions and persists them for future use
⭐ 2🍴 0📅 2026年1月11日
SKILL.md
name: coding-workflow description: Best practices for coding, debugging, and refactoring. Use when reviewing code, debugging issues, refactoring, or establishing coding patterns.
Coding Workflow Best Practices
Code Review Approach
- Understand before changing: Read the code thoroughly before suggesting modifications
- Check for patterns: Look for existing patterns in the codebase and follow them
- Consider edge cases: Think about null, empty, boundary conditions
- Security awareness: Watch for injection, XSS, improper auth patterns
Debugging Strategy
- Reproduce first: Confirm the issue before attempting fixes
- Isolate the problem: Narrow down to the smallest reproducible case
- Read error messages carefully: They often contain the solution
- Check recent changes: What changed since it last worked?
- Verify assumptions: Test each assumption individually
Refactoring Guidelines
- Tests first: Ensure tests exist before refactoring
- Small steps: Make incremental changes, verify each step
- One thing at a time: Don't mix refactoring with feature changes
- Preserve behavior: Refactoring should not change functionality
Common Pitfalls
- Fixing symptoms instead of root causes
- Over-engineering simple solutions
- Ignoring existing patterns in the codebase
- Making changes without understanding context
- Skipping validation of user inputs at boundaries
Accumulated Learnings
See learnings.md for session-learned insights that supplement these guidelines.
スコア
総合スコア
55/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
○言語
プログラミング言語が設定されている
0/5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です