一键导入
dsa-review
Review recent spike/work for data structures or organizing models that would materially simplify the code.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Review recent spike/work for data structures or organizing models that would materially simplify the code.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | dsa-review |
| description | Review recent spike/work for data structures or organizing models that would materially simplify the code. |
Review the work we have just been doing and look specifically for cleanup opportunities where a better data structure or organizing model would make the code simpler, safer, or easier to extend.
Focus on whether the current code is carrying accidental complexity that could be reduced by something like:
Do not force abstraction. Prefer boring code if the current shape is already clear, local, and unlikely to grow. Be especially skeptical of abstractions that add indirection without removing branches, duplicated rules, invalid states, or lifecycle risk.
Evaluate:
If there is a clear, low-risk, cleanup that fits the current task scope, make it and run the relevant checks. If the cleanup is larger, speculative, or would distinct from the current goal, do not implement it; instead, return a concise recommendation with the proposed shape and why it is worth or not worth doing.
Return:
implement, recommend, or skip.none.