← スキル一覧に戻る

nx-workspace-architecture
by juristr
Full stack demo repo for Nx
⭐ 0🍴 1📅 2026年1月20日
SKILL.md
name: nx-workspace-architecture description: Guide structuring new features in Nx workspaces. Use when user asks about creating libraries, organizing code, or where to place new features. allowed-tools: Bash, Glob, Grep, Read
Nx Workspace Architecture
Core Principles
- Domain over Technical - organize by business domains (products, orders, checkout), not technical types (components, services)
- Thin App Shell - apps are deployment containers; business logic lives in libs
- Explicit Boundaries - use Nx projects to enforce separation, not just folders
Library Types
| Prefix | Purpose | Can Import |
|---|---|---|
feat-* | Smart components, pages, business logic | feat, ui, data-access, util |
ui-* | Presentational/dumb components | ui, util |
data-access | API calls, state management | data-access, util |
util | Pure functions, helpers, types | util only |
Folder Structure
packages/
├── {domain}/ # e.g. products, orders, checkout
│ ├── data-access/
│ ├── feat-{name}/
│ ├── ui-{name}/
│ └── util/
└── shared/ # cross-domain utilities
Tagging Strategy
Add to project.json:
scope:{domain}- vertical boundary (products, orders, shared)type:{library-type}- horizontal layer (feature, ui, data-access, util)
Decision Flow
When user wants to add new functionality:
- Identify domain - which business area does it belong to?
- Determine library type:
- Has routing/pages? →
feat-* - Purely visual component? →
ui-* - API/state logic? →
data-access - Pure utilities? →
util
- Has routing/pages? →
- Check existing libs - can it extend an existing library?
- Create new lib only if needed for clear separation
When to Split Libraries
Split when you observe:
- Frequent cross-library changes for single features
- Circular dependencies emerging
- Unclear ownership between teams
- Single lib growing too large (>20 files is a smell)
Generator Commands
Use the nx-generators skill.
スコア
総合スコア
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
レビュー
💬
レビュー機能は近日公開予定です