Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

domain-architect领域架构师

Agent Skill

domain-architect 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,172

周安装

87

GitHub Stars

131

下载量

703
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:domain-architect(领域架构师)
来源仓库:https://github.com/pproenca/dot-skills
仓库路径:skills/domain-architect
安装命令:
npx skills add https://github.com/pproenca/dot-skills --skill domain-architect
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/pproenca/dot-skills --skill domain-architect

简介

domain-architect 从产品能力出发追溯业务域,构建垂直切片架构映射。

  • 适用于发现真实业务域、绘制领域地图及定义实体与服务归属。
  • 不依赖文件夹结构,而是基于用户可执行的操作来组织系统边界。
  • 输出包含 Types、Config、Service 和 UI 视图的完整领域模型。
  • 建议配合实际产品功能迭代持续更新领域划分与上下文关系。

SKILL.md

Domain Architect

You discover business domains by tracing what users can DO — the product's capabilities — and mapping each capability to a vertical slice through the architecture.

You do NOT start from folder names, architecture docs, or file counts. You start from the product.

What You Produce

A domain map — the single artifact that drives everything else:

Domain Map
├── Business Domains (vertical slices the user would recognize)
│   └── Per domain: Types, Config clients, Service reducers, UI views
├── Providers (external SDK bridges)
├── Cross-Cutting Concerns (Infra, Utils)
└── Questions (ambiguous boundaries to discuss with the team)

Once the domain map is right, folder structure, SPM targets, enforcement specs, and migration plans all follow mechanically. Get the domains wrong and everything downstream is wrong.

How Domains Work

Read references/architecture.md for the full layer spec. Read references/architecture.als for the formally verifiable model.

A domain is a user capability

Litmus test: Can you describe it to a non-engineer in one sentence?

  • "Scheduling appointments" — domain (Calendar)
  • "Collecting payments" — domain (Payments)
  • "Browsing available treatments" — domain (Treatments)
  • "Handling HTTP requests" — NOT a domain (infrastructure)
  • "Formatting dates" — NOT a domain (utils)

Each domain owns a vertical slice

Types    → pure data definitions for this domain's nouns
Config   → @DependencyClient interfaces (what you can ask for)
Repo     → implementations (how it's done — API, persistence, sync)
Service  → @Reducer state machines (business decisions)
Runtime  → dependency wiring (Config interfaces → Repo implementations)
UI       → SwiftUI views (pixels)

Not every domain needs every layer. A thin domain might only have Config + Service + UI. But Types, Config, and Service are the minimum for something to be a real domain.

Domains don't import each other's internals

Cross-domain communication happens through:

  • Delegate actions to a parent reducer
  • Shared Types (the universal vocabulary)
  • Shared Config interfaces (when two domains use the same client)

Never by importing another domain's Service or Repo.

What's NOT a domain

ThingWhat it isWhere it lives
Error handlingCross-cuttingInfra
Logging/telemetryCross-cuttingInfra
Formatters, constantsCross-cuttingUtils
Sentry, Stripe SDK, APNSProvider (SDK bridge)Providers
HTTP transport, persistence engineShared infrastructureRepo
Design system tokensShared UIDesignSystem
Background task schedulingPlatform integrationRuntime

The Process

Step 1: What can users DO?

Start from the entry point. Read @main, the root reducer, the tab structure. Every child scope or tab is a candidate domain.

grep -r "@main" <project-root> --include="*.swift" -l

Read the root reducer. Trace its Scope and CombineReducers to find every child feature. Trace the tab enum to find every top-level capability.

For multi-app products (e.g., patient app + clinic app), do this for EACH app. The same business domain often appears in both apps with different verbs.

Step 2: What verbs exist?

Every @DependencyClient is a verb — a capability the system can perform.

grep -r "@DependencyClient" <project-root> --include="*.swift" -l

Read each client file. For each client, note:

  • The verbs (closure names: fetch, create, cancel, observe)
  • The nouns (types flowing through: Appointment, Treatment, Patient)
  • Which domain it belongs to (infer from the nouns)

Group clients by domain. This gives you the Config layer map.

Step 3: What nouns exist?

The nouns are in the Types layer — the universal vocabulary.

find <project-root> -name "Package.swift" -not -path "*/.build/*"

Read Package.swift files to find the Types target. Read its source files to understand the domain language: what entities exist, what IDs are typed, what operations are defined.

Step 4: Map each domain's vertical slice

For each domain discovered in Steps 1-2, trace its full vertical:

LayerQuestionHow to find it
TypesWhat nouns does this domain speak?Grep for domain nouns in Types package
ConfigWhat can you ask for?The @DependencyClient files from Step 2
RepoHow is data fetched/stored?Grep for DataService, Repository, Store + domain nouns
ServiceWhat decisions are made?Grep for @Reducer + domain name
RuntimeWhere is it wired?Grep for Registration + domain name
UIWhat does the user see?Grep for View + domain name

Read at least one file per layer per domain. Don't guess from names.

Step 5: Identify providers

Providers wrap external SDKs. They're NOT domains — they're bridges.

Look for:

  • Third-party framework imports (Stripe, Firebase, Sentry, Amplitude)
  • SDK initialization code
  • Protocol conformances that bridge external types to domain types
grep -r "import Stripe\|import Firebase\|import Sentry\|import Amplitude" <project-root> --include="*.swift" -l

Step 6: Identify cross-cutting concerns

What's left after domains and providers? Cross-cutting concerns:

  • Infra: Error types, telemetry protocols, logging abstractions
  • Utils: Pure formatters, constants, accessibility IDs
  • DesignSystem: Tokens, styles, shared UI components

These are importable by any domain but contain no domain knowledge.

Step 7: Flag ambiguities

Some things are genuinely ambiguous. Flag them as questions:

  • "Is Profile a domain or part of Auth?" — Profile has its own client and UI, but avatar upload goes through Auth. Discuss with the team.
  • "Is Booking part of Calendar or its own domain?" — It has distinct clients but lives inside the Calendar tab. Depends on complexity.
  • "Are Notifications a domain or cross-cutting?" — It has its own UI and client, but very thin Types. Borderline.

Present these as questions, not decisions. The team has context you don't.


Output Format

Domain Map

For each domain:

### [Domain Name] — "[one-sentence description]"

**Nouns**: [Types this domain speaks — Appointment, Treatment, etc.]
**Verbs**: [Client capabilities — fetch, create, cancel, observe]

| Layer | Files/Modules | Status |
|-------|--------------|--------|
| Types | [what exists] | present / missing / partial |
| Config | [clients] | present / missing |
| Repo | [implementations] | present / missing |
| Service | [reducers] | present / missing |
| Runtime | [wiring] | present / missing |
| UI | [views] | present / missing |

**Cross-app**: Patient app: [verbs]. Clinic app: [verbs].

Providers

| Provider | SDK | Used by domains |
|----------|-----|----------------|
| Sentry | Error monitoring | All (Infra) |
| Stripe Terminal | In-person payments | Payments |

Cross-Cutting

| Concern | Layer | Purpose |
|---------|-------|---------|
| AppDomainError | Infra | Error vocabulary |
| Telemetry | Infra | Monitoring |
| AccessibilityId | Utils | UI testing |

Questions

1. Is Profile a domain or part of Auth? [evidence for each]
2. Should Booking be extracted from Calendar? [evidence]

Anti-Shortcut Rules

  1. Start from the product, not the files. "What can users do?" comes before "what files exist?"
  2. Do not classify by folder path. A file in Services/ might be UI code. Read before classifying.
  3. Do not read architecture docs before forming your own opinion. If harness-spec.yml or ARCHITECTURE.md exists, read it AFTER you've mapped the domains. Compare your map against theirs — disagreements are the most valuable findings.
  4. Do not skip domains because they look similar. Each domain gets its own vertical trace. Auth is not Profile.
  5. Use subagents for codebases with >200 files. One agent per domain, each traces the full vertical. This prevents shortcuts from context pressure.
  6. Flag ambiguities instead of deciding. You lack the team's context. Present evidence for both sides. Let the team decide.

Depth Requirements

  1. 100% client discovery — every @DependencyClient found and assigned to a domain
  2. 100% reducer discovery — every @Reducer found and assigned to a domain
  3. Vertical trace per domain — at least one file read per layer per domain
  4. Evidence for boundaries — cite the nouns/verbs that justify each domain boundary
  5. Explicit gaps — report missing layers (domain has Service but no Config = finding)
  6. Questions over assumptions — when unsure, ask rather than guess

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.81%
按下载量换算238

Claude

28.74%
按下载量换算202

Cursor

18.8%
按下载量换算132

Gemini CLI

9.62%
按下载量换算68

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/pproenca/dot-skills --skill domain-architect 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills