ワンクリックで
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.