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

domain-analysis领域分析

Agent Skill

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

总安装

364

周安装

15

GitHub Stars

6

下载量

119
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/duc01226/easyplatform --skill domain-analysis

简介

domain-analysis 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景进行信息检索和来源线索筛选的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

MANDATORY IMPORTANT MUST ATTENTION use TaskCreate to break ALL work into small tasks BEFORE starting. MANDATORY IMPORTANT MUST ATTENTION use AskUserQuestion at EVERY decision point — validate every bounded context and entity relationship with user. MANDATORY IMPORTANT MUST ATTENTION produce ERD diagram (Mermaid) and domain model report with confidence %.

External Memory: For complex or lengthy work (research, analysis, scan, review), write intermediate findings and final results to a report file in plans/reports/ — prevents context loss and serves as deliverable.
Evidence Gate: MANDATORY IMPORTANT MUST ATTENTION — every claim, finding, and recommendation requires file:line proof or traced evidence with confidence percentage (>80% to act, <80% must verify first).

Quick Summary

Goal: Analyze business domain using DDD principles. Identify bounded contexts, aggregates, entities, value objects, domain events, and cross-context relationships. Generate domain model report with ERD diagram.

Workflow:

  1. Load Business Context — Read idea, business evaluation, refined PBI artifacts + domain-entities-reference.md
  2. Identify Bounded Contexts — Group related concepts, define context boundaries
  3. Model Entities & Aggregates — Define aggregates, entities, value objects per context
  4. Map Relationships — Entity relationships, cross-context integration points
  5. Domain Events — Identify events that cross context boundaries
  6. Generate ERD — Mermaid ER diagram with all entities and relationships
  7. User Validation — Present model, ask 5-8 questions, confirm decisions
  8. Domain Entity Change Assessment — Compare against domain-entities-reference.md, update if needed

Key Rules:

  • MANDATORY IMPORTANT MUST ATTENTION validate every bounded context boundary with user
  • MANDATORY IMPORTANT MUST ATTENTION include Mermaid ERD diagram in report
  • MANDATORY IMPORTANT MUST ATTENTION run user validation interview at end (never skip)
  • Every entity must belong to exactly one bounded context
  • Cross-context communication via domain events only (no direct references)

Be skeptical. Apply critical thinking, sequential thinking. Every claim needs traced proof, confidence percentages (Idea should be more than 80%).

Step 0: Locate Active Plan & Domain Reference (MANDATORY)

MANDATORY IMPORTANT MUST ATTENTION find and read the current active plan BEFORE starting analysis:

  1. Search for active plan directory — Glob plans/*/plan.md sorted by modification time, or check TaskList for plan context
  2. Read plan.md (if exists) — understand project scope, goals, prior decisions
  3. Read all existing research artifacts{plan-dir}/research/*.md to avoid duplicating work
  4. Read docs/project-reference/domain-entities-reference.md (if exists) — understand current domain entities, their bounded contexts, relationships, and field definitions. This is the project's single source of truth for domain entities.
  5. Set {plan-dir} variable — all outputs write to this directory

If no plan directory exists, create one using the naming convention from session context.

After completing domain analysis, MUST ATTENTION update {plan-dir}/plan.md with a domain model summary section (bounded contexts, entity count, key relationships, ERD reference).

Step 1: Load Business Context

Read artifacts from prior workflow steps (search in plans/ and team-artifacts/):

  • Active plan ({plan-dir}/plan.md) — project scope, goals, constraints
  • Business evaluation report (value proposition, customer segments)
  • Refined PBI (acceptance criteria, user stories, features)
  • Discovery interview notes (problem statement, user roles)

Extract and list:

  • Nouns — Candidate entities (user, order, product, etc.)
  • Verbs — Candidate domain events (created, approved, assigned, etc.)
  • Roles — User types with different permissions/views
  • Processes — Business workflows (application flow, review cycle, etc.)

Step 2: Identify Bounded Contexts

Group related entities into bounded contexts using DDD principles:

### Bounded Context: {Name}

**Purpose:** {What this context owns — one sentence}
**Core domain / Supporting / Generic:** {classification}
**Key Responsibility:** {primary business capability}
**Team ownership:** {suggested team or role}

Rules for context boundaries:

  • Each context has its own ubiquitous language
  • Entities with same name but different meaning = different contexts
  • Minimize cross-context dependencies
  • Consider team structure (Conway's Law)

MANDATORY IMPORTANT MUST ATTENTION present identified contexts to user via AskUserQuestion:

  • "I identified {N} bounded contexts: {list}. Does this grouping make sense?"
  • Options: Agree (Recommended) | Merge {X} and {Y} | Split {Z} | Add missing context

Step 3: Model Entities & Aggregates

For each bounded context, define:

### {Context Name}

**Aggregate Root:** {EntityName}

- **Entities:** {list with descriptions}
- **Value Objects:** {list — immutable, no identity}
- **Invariants:** {business rules this aggregate enforces}

**Other Entities:**

- {Entity} — {purpose, key fields}

Entity Detail Template

EntityTypeKey FieldsRelationshipsNotes
{Name}Aggregate Root / Entity / Value Object{fields}{relations}{business rules}

Step 4: Map Relationships

Intra-Context Relationships

| From | To        | Type | Cardinality     | Description              |
| ---- | --------- | ---- | --------------- | ------------------------ |
| Job  | Candidate | M:N  | via Application | Candidates apply to jobs |

Cross-Context Integration (Context Map)

| Upstream Context | Downstream Context | Pattern | Integration Point          |
| ---------------- | ------------------ | ------- | -------------------------- |
| Recruitment      | Employee           | ACL     | Candidate becomes Employee |

Integration patterns to consider:

  • Shared Kernel — shared model between contexts
  • Customer-Supplier — upstream publishes, downstream consumes
  • Anti-Corruption Layer (ACL) — translation between contexts
  • Published Language — shared API contract
  • Conformist — downstream conforms to upstream model

Step 5: Domain Events

Identify events that cross bounded context boundaries:

EventSource ContextTarget Context(s)PayloadTrigger
CandidateHiredRecruitmentEmployee, OnboardingcandidateId, jobIdOffer accepted

Rules:

  • Events are past-tense (happened already)
  • Events carry minimal data (IDs + essential fields)
  • Eventual consistency between contexts

Step 6: Generate ERD

Produce Mermaid ER diagram covering all bounded contexts:

erDiagram %% Bounded Context: {Name} ENTITY_A ||--o{ ENTITY_B : "has many" ENTITY_A { string id PK string name datetime createdAt } ENTITY_B { string id PK string entityAId FK string status }

ERD requirements:

  • Group entities by bounded context (use Mermaid comments)
  • Show PK/FK fields
  • Show cardinality (1:1, 1:N, M:N)
  • Include key business fields (not all fields)
  • Cross-context references shown as dotted lines or separate diagrams

Step 7: User Validation Interview

MANDATORY IMPORTANT MUST ATTENTION present domain model and ask 5-8 questions via AskUserQuestion:

Required Questions

  1. Context boundaries — "Are these {N} bounded contexts correct? Any missing or misplaced?"

- Options: Correct (Recommended) | Need changes | Not sure, explain more

  1. Aggregate roots — "Is {Entity} the right aggregate root for {Context}?"
  2. Relationship verification — "The {Entity A} to {Entity B} relationship is {type}. Correct?"
  3. Missing entities — "Are there business concepts I haven't captured?"
  4. Event verification — "When {event} happens, should {contexts} be notified?"

Deep-Dive Questions (pick 2-3 based on complexity)

  • "Should {Entity} be a separate aggregate or part of {Aggregate}?"
  • "Is {field} really a value object or does it need its own identity?"
  • "How does {process} work step-by-step? (verify workflow)"
  • "What happens when {edge case}? (verify invariants)"
  • "Which entities change most frequently? (performance hints)"

After user confirms, update report with final decisions and mark as status: confirmed.

Step 8: Domain Entity Change Assessment (MANDATORY)

MANDATORY IMPORTANT MUST ATTENTION compare domain analysis results against docs/project-reference/domain-entities-reference.md (if exists): (content auto-injected by hook — check for [Injected:...] header before reading)

  1. Identify new entities — entities in analysis that don't exist in reference doc
  2. Identify modified entities — entities with changed fields, relationships, or bounded context assignment
  3. Identify deprecated entities — entities in reference doc no longer needed by the feature
  4. Present changes to user via AskUserQuestion:

- "Domain entity changes detected: {N} new, {N} modified, {N} deprecated. Proceed with updating domain-entities-reference.md?" - Options: Approve all (Recommended) | Review each change | Skip update

If docs/project-reference/domain-entities-reference.md does NOT exist, ask user:

  • "No domain-entities-reference.md found. Create it with all entities from this analysis?"
  • Options: Yes, create it (Recommended) | No, skip

After user confirms, update (or create) docs/project-reference/domain-entities-reference.md with the new/modified entities following the existing format in the file. Append new entities to the appropriate bounded context section. Update field lists and relationships for modified entities.

Step 9: Update Main Plan (MANDATORY)

MANDATORY IMPORTANT MUST ATTENTION read {plan-dir}/plan.md and append/update a ## Domain Model section:

## Domain Model

- **Bounded Contexts:** {N} — {list names}
- **Total Entities:** {N} ({N} aggregates, {N} entities, {N} value objects)
- **Domain Events:** {N} cross-context events
- **Key Relationships:** {summary of critical relationships}
- **ERD:** See `phase-01-domain-model.md`
- **Full Analysis:** See `research/domain-analysis.md`

If plan.md already has a Domain Model section, update it (use Edit tool). If not, append it after the last section.

Output

{plan-dir}/research/domain-analysis.md          # Full domain analysis report
{plan-dir}/phase-01-domain-model.md             # Confirmed domain model with ERD
{plan-dir}/plan.md                              # Updated with domain model summary
docs/project-reference/domain-entities-reference.md  # Updated/created with new/modified entities

Report structure:

  1. Executive summary (bounded contexts + entity count)
  2. Bounded context map with responsibilities
  3. Per-context entity/aggregate detail
  4. Relationship tables (intra + cross-context)
  5. Domain events catalog
  6. Mermaid ERD diagram
  7. Unresolved questions

Report must be <=200 lines. Use tables over prose.


MANDATORY IMPORTANT MUST ATTENTION break work into small todo tasks using TaskCreate BEFORE starting. MANDATORY IMPORTANT MUST ATTENTION validate EVERY bounded context and key relationship with user via AskUserQuestion. MANDATORY IMPORTANT MUST ATTENTION include Mermaid ERD and confidence % for all architectural decisions. MANDATORY IMPORTANT MUST ATTENTION add a final review todo task to verify work quality.


Next Steps

MANDATORY IMPORTANT MUST ATTENTION — NO EXCEPTIONS after completing this skill, you MUST ATTENTION use AskUserQuestion to present these options. Do NOT skip because the task seems "simple" or "obvious" — the user decides:

  • "/tech-stack-research (Recommended)" — Research tech stack based on domain model
  • "/plan" — If tech stack already decided
  • "Skip, continue manually" — user decides

Closing Reminders

MANDATORY IMPORTANT MUST ATTENTION break work into small todo tasks using TaskCreate BEFORE starting. MANDATORY IMPORTANT MUST ATTENTION validate decisions with user via AskUserQuestion — never auto-decide. MANDATORY IMPORTANT MUST ATTENTION add a final review todo task to verify work quality.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.81%
按下载量换算41

Claude

29.75%
按下载量换算35

Cursor

19.45%
按下载量换算23

Gemini CLI

10.39%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills