用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/diegosouzapw/awesome-omni-skill --skill arch-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Token-efficient tracking for AI orchestration. CLI-first for status updates (~50 tokens), agent fallback for complex ops (~1KB). Use when: updating task status, querying blockers, creating progress files, validating phases.
AshAi extension guidelines for integrating AI capabilities with Ash Framework. Use when implementing vectorization/embeddings, exposing Ash actions as LLM tools, creating prompt-backed actions, or setting up MCP servers. Covers semantic search, LangChain integration, and structured outputs.
This skill should be used when solving hard questions, complex architectural problems, or debugging issues that benefit from GPT-5 Pro or GPT-5.1 thinking models with large file context. Use when standard Claude analysis needs deeper reasoning or extended context windows.
正在显示 SKILL.md
基于 SOC 职业分类
| name | arch-review |
| description | アーキテクチャレビュー。SOLID/YAGNI/DRY/KISS原則に基づき、オーバーエンジニアリングを避けた実践的な設計改善を提案する。 |
| model | claude-opus-4-5-20251101 |
オーバーエンジニアリングを避けた、実践的なアーキテクチャレビューを行います。
「動くコードは正義」 - 完璧な設計より、適切な設計を目指す。
| 原則 | 適用基準 | やり過ぎライン |
|---|---|---|
| SRP | 1クラス1責務 | 責務を細かく分けすぎてクラス爆発 |
| OCP | 拡張ポイントが明確な箇所のみ | Strategy全部入り |
| DIP | 外部依存(DB, API)の境界 | 全てにInterface |
| DRY | 3回以上の重複 | 似てるだけで共通化 |
| YAGNI | 今必要なものだけ | 将来のための抽象化 |
| KISS | 最もシンプルな解法 | 「エレガント」な解法 |
推奨度: シンプルMVC > レイヤード > ヘキサゴナル > クリーン
←─────── プロジェクト規模 ───────→
| パターン | 適用条件 | 避けるべき状況 |
|---|---|---|
| シンプルMVC | 小〜中規模、CRUD中心 | 複雑なドメインロジック |
| レイヤード | 中規模、明確な層分離が必要 | 層間の依存が単純な場合 |
| ヘキサゴナル | 外部依存が多い、テスト重視 | 外部依存が少ない |
| クリーン | 大規模、長期保守、複雑なドメイン | ほとんどのプロジェクト |
## アーキテクチャレビュー結果
### 現状評価
- パターン: [検出されたパターン]
- 規模感: [小/中/大]
- 適合度: [適切 / やや過剰 / 不足]
### 🔴 Critical(要修正)
[問題] → [修正案]
### 🟡 Warning(改善推奨)
[問題] → [修正案]
### 🟢 Good(このままでOK)
- [あえて抽象化しなくてよい箇所]
- [シンプルなままで正解な箇所]
### オーバーエンジニアリング警告
[不要な抽象化、過剰な設計パターンの指摘]
やり過ぎサイン:
interface が impl と1:1対応Factory が1種類しか生成しないStrategy が2パターンしかないRepository が findAll と findById だけこれらは「将来のため」ではなく「今の複雑さ」