← スキル一覧に戻る

agentic-architecture
by cityfish91159
⭐ 0🍴 0📅 2026年1月24日
SKILL.md
name: agentic_architecture description: Enforces high-level architectural thinking, separation of concerns, and scalability checks before coding. allowed-tools: Read, Edit
Agentic Architecture Protocol
1. Think Before You Code
Before implementing any feature that spans multiple files:
- Analyze Data Flow: Where does data come from? Where does it go?
- Define Interfaces: creating
types/*.tsis often the best first step. - Check Boundaries: Ensure API logic stays in
api/, UI incomponents/, and business logic inservices/orhooks/.
2. Scalability & Performance Checks
- Database:
- Are we fetching 1000 items to filter 10? (Use DB filters instead).
- Is RLS (Row Level Security) compatible with this query?
- Frontend:
- Are we causing unnecessary re-renders? (Use
React.memo,useCallbackappropriately). - Is this component becoming a "God Component"? (Break it down).
- Are we causing unnecessary re-renders? (Use
3. The "Three-Tier" Rule
For any non-trivial feature, verify you have these three layers:
- Data Layer: Types + API/Service (e.g.,
user.types.ts,userService.ts) - State Layer: Hook or Store (e.g.,
useUser.ts) - View Layer: Components (e.g.,
UserProfile.tsx)
4. Architecture Checklist
- Have I defined the types first?
- Is the business logic separated from the UI?
- Did I consider how this scales to 10,000 users/items?
- Is the database schema validated (if changing DB)?
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です