·refactoring-patterns
</>

refactoring-patterns

proffesor-for-testing/agentic-qe

应用安全的重构模式来改进代码结构而不改变行为。在清理代码、减少技术债务或提高可维护性时使用。

15安装·1热度·@proffesor-for-testing

安装

$npx skills add https://github.com/proffesor-for-testing/agentic-qe --skill refactoring-patterns

SKILL.md

| Long method (>20 lines) | Extract Method | | Large class | Extract Class | | Long parameter list (>3) | Introduce Parameter Object | | Duplicated code | Extract Method/Class | | Complex conditional | Decompose Conditional | | Magic numbers | Named Constants | | Nested loops | Replace Loop with Pipeline |

| Extract Method | 50-line function | 5 small functions | | Extract Class | Class doing 5 things | 5 single-purpose classes | | Parameter Object | fn(a,b,c,d,e,f) | fn(options) | | Replace Conditional | if (type === 'a') {...} | Polymorphism | | Pipeline | Nested loops | .filter().map().reduce() |

| Without tests | No safety net | Write tests first | | Big bang | Rewrite everything | Small incremental steps | | For perfection | Endless tweaking | Good enough, move on | | Premature abstraction | Pattern not clear yet | Wait for Rule of Three | | During feature work | Mixed changes | Separate commits |

查看原文

可引用信息

为搜索与 AI 引用准备的稳定字段与命令。

安装命令
npx skills add https://github.com/proffesor-for-testing/agentic-qe --skill refactoring-patterns
分类
</>开发工具
认证
收录时间
2026-02-01
更新时间
2026-02-18

快速解答

什么是 refactoring-patterns?

应用安全的重构模式来改进代码结构而不改变行为。在清理代码、减少技术债务或提高可维护性时使用。 来源:proffesor-for-testing/agentic-qe。

如何安装 refactoring-patterns?

打开你的终端或命令行工具(如 Terminal、iTerm、Windows Terminal 等) 复制并运行以下命令:npx skills add https://github.com/proffesor-for-testing/agentic-qe --skill refactoring-patterns 安装完成后,技能将自动配置到你的 AI 编程环境中,可以在 Claude Code 或 Cursor 中使用

这个 Skill 的源码在哪?

https://github.com/proffesor-for-testing/agentic-qe