スキル一覧に戻る
benaor

separation-of-concerns

by benaor

my Claude configuration files

3🍴 0📅 2026年1月13日
GitHubで見るManusで実行

SKILL.md


Separation of Concerns

Divide a system into distinct sections, each addressing a separate concern. A concern is a set of information that affects the code.

Common Concerns to Separate

  • UI/Presentation: How things look
  • Business logic/Domain: What things do
  • Data access: Where things are stored
  • Navigation: How to move between screens
  • State management: How data flows
  • External services: Third-party integrations

Violation Signs

  • Components fetching data AND rendering AND handling business rules
  • Business logic importing React or framework-specific code
  • Database queries mixed with validation logic
  • UI components aware of API endpoint URLs
  • Navigation logic inside business rules

→ See layers-example.md for complete before/after refactoring.

Layer Dependencies

┌─────────────────────────────────────────┐
│           Presentation Layer            │
│  (Screens, Components, Hooks, ViewModels)│
└─────────────────────┬───────────────────┘
                      │ depends on
                      ▼
┌─────────────────────────────────────────┐
│             Domain Layer                │
│    (Entities, UseCases, Ports)          │
└─────────────────────┬───────────────────┘
                      │ depends on
                      ▼
┌─────────────────────────────────────────┐
│          Infrastructure Layer           │
│   (Adapters, Repositories, Services)    │
└─────────────────────────────────────────┘

Domain has NO dependencies on Presentation or Infrastructure

Quick Checks by Layer

LayerShould NOT contain
DomainReact imports, HTTP clients, AsyncStorage, navigation
PresentationDirect API calls, SQL queries, business rules
InfrastructureUI components, business decisions, routing

When Concerns Can Stay Together

  • Prototypes: Speed over architecture for throwaway code
  • Simple utilities: Pure functions without dependencies
  • Trivial components: A button that just styles and calls onPress
  • Co-location benefit: Sometimes keeping related code together aids understanding

The key question: "If I change this concern, how many unrelated things break?"

スコア

総合スコア

35/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
言語

プログラミング言語が設定されている

0/5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です