feat: add OpenProse plugin skills

This commit is contained in:
Peter Steinberger
2026-01-23 00:49:32 +00:00
parent db0235a26a
commit 51a9053387
102 changed files with 23315 additions and 5 deletions

View File

@@ -0,0 +1,20 @@
# Refactor Code
# Systematic refactoring workflow
# Assess current state
session "Analyze the target code and identify code smells: duplication, long functions, unclear naming, tight coupling."
# Plan refactoring
session "Create a refactoring plan. List specific changes in order of priority, starting with the safest changes."
# Ensure test coverage
session "Check test coverage for the code being refactored. Add any missing tests before making changes."
# Execute refactoring
session "Implement the first refactoring from your plan. Make a single focused change."
# Verify behavior
session "Run tests to verify the refactoring preserved behavior. If tests fail, investigate and fix."
# Document changes
session "Update any documentation affected by the refactoring. Add comments explaining non-obvious design decisions."