techdebt
Installation
SKILL.md
Technical Debt Finder
Identify and fix technical debt in the codebase.
What to Look For
Code Duplication
- Functions with similar logic that could be consolidated
- Copy-pasted code blocks
- Repeated patterns that should be abstracted
Dead Code
- Unused imports
- Unused functions or classes
- Commented-out code blocks
- Unreachable code paths
Related skills
More from meleantonio/chernycode
testing
Testing conventions using pytest. Use when writing tests, creating fixtures, or running test suites.
1git-workflow
Git workflow and commit conventions. Use when committing code, creating branches, or making pull requests.
1llm-development
LLM and ML development best practices with LangChain and transformers. Use when building AI/ML applications.
1code-simplifier
Simplify and clean up code after changes are complete. Reduces complexity, improves readability, and ensures consistency.
1code-style
Python code style and formatting standards using Ruff. Use when writing or reviewing Python code.
1commit-push-pr
Commit changes, push to remote, and create a pull request. Use for completing features or fixes ready for review.
1