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

data-modeling数据建模

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

23,850

周安装

796

GitHub Stars

公开资料未说明

下载量

7,175
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:data-modeling(数据建模)
来源仓库:https://github.com/danhvb/my-ba-skills
仓库路径:skills/data-modeling
安装命令:
npx skills add https://github.com/danhvb/my-ba-skills --skill 'Data Modeling'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/danhvb/my-ba-skills --skill 'Data Modeling'

简介

数据建模技能用于辅助数据结构设计、关系定义和业务规则文档化,支持数据库设计和迁移规划。

  • 适用于系统架构设计、数据分析准备和数据集成项目。
  • 可创建实体关系图(ERD),定义实体属性及其相互关系,建立清晰的数据模型。
  • 使用时需要确认数据来源和字段含义,避免将样本数据当作全量事实处理。
  • data-modeling 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Data Modeling Skill

Purpose

Create clear data models that document data structures, relationships, and business rules for system design and development.

When to Use

  • Designing new database structures
  • Documenting existing data for analysis
  • Defining data requirements in FRS
  • Integration design between systems
  • Data migration planning

Data Modeling Concepts

Entity Relationship Diagram (ERD)

Entities: Objects/things we store data about (e.g., Customer, Order, Product) Attributes: Properties of entities (e.g., customer_name, order_date) Relationships: How entities relate to each other

Relationship Types

One-to-One (1:1) Example: User ↔ UserProfile

  • One user has exactly one profile
  • One profile belongs to exactly one user

One-to-Many (1:N) Example: Customer → Orders

  • One customer can have many orders
  • One order belongs to one customer

Many-to-Many (M:N) Example: Products ↔ Categories

  • One product can be in many categories
  • One category can have many products
  • Requires junction/bridge table

Cardinality Notation (Crow's Foot)

||──────|| : One and only one (1:1)
||──────<  : One-to-Many (1:N)
>──────<   : Many-to-Many (M:N)
o|──────<  : Zero or one to Many
||──────o< : One to Zero or Many

ERD Examples

E-commerce ERD (Mermaid)

erDiagram
    CUSTOMER ||--o{ ORDER : places
    CUSTOMER {
        uuid customer_id PK
        string email UK
        string first_name
        string last_name
        string phone
        datetime created_at
    }
    ORDER ||--|{ ORDER_ITEM : contains
    ORDER {
        uuid order_id PK
        uuid customer_id FK
        string order_number UK
        decimal subtotal
        decimal tax
        decimal shipping
        decimal total
        string status
        datetime order_date
    }
    ORDER_ITEM {
        uuid item_id PK
        uuid order_id FK
        uuid product_id FK
        int quantity
        decimal unit_price
        decimal total_price
    }
    PRODUCT ||--o{ ORDER_ITEM : "included in"
    PRODUCT {
        uuid product_id PK
        string sku UK
        string name
        text description
        decimal price
        int stock_quantity
        string status
    }
    PRODUCT }|--|| CATEGORY : "belongs to"
    CATEGORY {
        uuid category_id PK
        string name
        uuid parent_id FK
    }

CRM ERD

erDiagram
    ACCOUNT ||--o{ CONTACT : has
    ACCOUNT ||--o{ OPPORTUNITY : has
    ACCOUNT {
        uuid account_id PK
        string name
        string industry
        string website
        int employee_count
        decimal annual_revenue
        uuid owner_id FK
    }
    CONTACT {
        uuid contact_id PK
        uuid account_id FK
        string first_name
        string last_name
        string email UK
        string phone
        string title
    }
    OPPORTUNITY }o--|| CONTACT : "primary contact"
    OPPORTUNITY {
        uuid opportunity_id PK
        uuid account_id FK
        uuid contact_id FK
        string name
        string stage
        decimal amount
        date close_date
        int probability
        uuid owner_id FK
    }
    LEAD {
        uuid lead_id PK
        string first_name
        string last_name
        string email
        string company
        string source
        int score
        string status
    }

Data Dictionary

Template

AttributeData TypeSizeRequiredDefaultDescriptionValidation
customer_idUUID-YesAuto-genUnique identifierUUID format
emailVARCHAR255Yes-Customer emailValid email
statusENUM-Yes'active'Account statusactive, inactive, suspended

Example: Order Entity

AttributeTypeSizeRequiredDefaultDescriptionRules
order_idUUID-YesAutoPrimary keyUnique
order_numberVARCHAR20YesGeneratedDisplay numberFormat: ORD-YYYYMMDD-XXXX
customer_idUUID-Yes-FK to CustomerMust exist
order_dateDATETIME-YesNOW()When order placedCannot be future
statusENUM-Yes'pending'Order statuspending, processing, shipped, delivered, cancelled
subtotalDECIMAL10,2Yes0.00Sum of items>= 0
taxDECIMAL10,2Yes0.00Calculated tax>= 0
shipping_costDECIMAL10,2Yes0.00Shipping fee>= 0
totalDECIMAL10,2Yes-Final total= subtotal + tax + shipping
shipping_addressJSON-Yes-Delivery addressValid address
billing_addressJSON-Yes-Billing addressValid address
notesTEXT-NoNULLOrder notesMax 2000 chars
created_atDATETIME-YesNOW()Record createdImmutable
updated_atDATETIME-YesNOW()Last modifiedAuto-update

Normalization

First Normal Form (1NF)

  • Eliminate repeating groups
  • Each cell contains single value
  • Each record is unique

❌ Bad: customer_phones = "123-456, 789-012" ✅ Good: Separate phone table with customer_id FK

Second Normal Form (2NF)

  • Meet 1NF
  • No partial dependencies (all non-key attributes depend on entire primary key)

Third Normal Form (3NF)

  • Meet 2NF
  • No transitive dependencies (non-key attributes don't depend on other non-key attributes)

❌ Bad: Order has customer_email (depends on customer_id, not order) ✅ Good: Get customer_email via Customer table join

Domain-Specific Data Patterns

E-commerce

  • Products with variants (SKU per variant)
  • Hierarchical categories
  • Shopping cart → Order transition
  • Address normalization
  • Price history tracking

ERP

  • Chart of Accounts structure
  • Multi-company data isolation
  • Master data (customer, vendor, product)
  • Transaction tables with journals
  • Audit trails

CRM

  • Lead → Contact → Account conversion
  • Activity logging (calls, emails, meetings)
  • Opportunity → Quote → Order pipeline
  • Campaign → Member → Response tracking

CDP

  • Customer identity resolution
  • Event/behavioral data (time-series)
  • Profile attributes (unified)
  • Segment membership
  • Consent tracking

Best Practices

Do:

  • Use consistent naming conventions (snake_case)
  • Include audit fields (created_at, updated_at, created_by)
  • Define primary keys explicitly
  • Document foreign key relationships
  • Include data types and constraints
  • Consider soft deletes vs. hard deletes
  • Plan for data growth

Don't:

  • Store calculated values (unless for performance)
  • Use ambiguous names
  • Skip documentation
  • Ignore data validation rules
  • Forget about NULL handling

Tools

  • Figma: Visual ERD design
  • Mermaid: Code-based diagrams in docs
  • dbdiagram.io: Quick ERD creation
  • Lucidchart: Professional diagrams

Next Steps

After data modeling:

  1. Review with technical team
  2. Include in FRS documentation
  3. Create migration scripts
  4. Plan data validation rules
  5. Design API contracts based on data model

References

  • Database Normalization (1NF, 2NF, 3NF)
  • Entity Relationship Modeling
  • Data Dictionary Standards

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.46%
按下载量换算2,544

Claude

29.94%
按下载量换算2,148

Cursor

21.31%
按下载量换算1,529

Gemini CLI

10.97%
按下载量换算787

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills