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

data-schema-knowledge-modeling数据模式知识建模

Agent Skill

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

总安装

1,996

周安装

84

GitHub Stars

85

下载量

699
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/lyndonkl/claude --skill data-schema-knowledge-modeling

简介

形式化定义实体、属性、关系、约束和基数,构建无歧义的数据模型。

  • 适用于电商、订单管理等业务场景的 schema 设计与一致性保障。
  • 防止因数据结构混乱导致的实现错误和逻辑不一致问题。
  • 提供快速参考模板和常见模式指导,提升建模效率与准确性。
  • 安装需从指定 GitHub 仓库获取,支持主流宿主环境无缝集成。

SKILL.md

Data Schema & Knowledge Modeling

Table of Contents

Overview

This skill formally defines entities, attributes, relationships, constraints, and cardinality to produce unambiguous data models that prevent inconsistencies and enable correct implementation.

Quick example: E-commerce schema:

  • Entities: User, Product, Order, Cart, Payment
  • Relationships: User has many Orders, Order contains many Products (via OrderItems), User has one Cart
  • Constraints: Email must be unique, Order total matches sum of OrderItems, Payment amount equals Order total
  • Result: Unambiguous model that prevents data inconsistencies

Workflow

Copy this checklist and track your progress:

Data Schema & Knowledge Modeling Progress:
- [ ] Step 1: Gather domain requirements and scope
- [ ] Step 2: Identify entities and attributes
- [ ] Step 3: Define relationships and cardinality
- [ ] Step 4: Specify constraints and invariants
- [ ] Step 5: Validate and document the model

Step 1: Gather domain requirements and scope

Ask user for domain description, core use cases (what queries/operations will this support), existing data (if migration/integration), performance/scale requirements, and technology constraints (SQL vs NoSQL vs graph database). Understanding use cases shapes the model - OLTP vs OLAP vs graph traversal require different designs. See Schema Types for guidance.

Step 2: Identify entities and attributes

Extract nouns from requirements (those are candidate entities). For each entity, list attributes with types and nullability. Use resources/template.md for systematic entity identification. Verify each entity represents a distinct concept with independent lifecycle. Document entity purpose and examples.

Step 3: Define relationships and cardinality

Map connections between entities (one-to-one, one-to-many, many-to-many). For many-to-many, identify junction tables/entities. Specify relationship directionality and optionality (can X exist without Y?). Use resources/methodology.md for complex relationship patterns like hierarchies, polymorphic associations, and temporal relationships.

Step 4: Specify constraints and invariants

Define uniqueness constraints, foreign key relationships, check constraints, and business rules. Document domain invariants (rules that must hold true at all times). Identify derived/computed attributes vs stored. Use resources/methodology.md for advanced constraint patterns and validation strategies.

Step 5: Validate and document the model

Create data-schema-knowledge-modeling.md file with complete schema definition. Validate against use cases - can the schema support required queries/operations? Check for normalization (eliminate redundancy) or denormalization (optimize for specific queries). Self-assess using resources/evaluators/rubric_data_schema_knowledge_modeling.json. Minimum standard: Average score ≥ 3.5.

Schema Types

Choose based on use case and technology:

Relational (SQL) Schema

  • Best for: Transactional systems (OLTP), strong consistency, complex queries with joins
  • Pattern: Normalized tables, foreign keys, ACID transactions
  • Example use cases: E-commerce orders, banking transactions, HR systems
  • Key decision: Normalization level (3NF for consistency vs denormalized for read performance)

Document/NoSQL Schema

  • Best for: Flexible/evolving structure, high write throughput, denormalized reads
  • Pattern: Nested documents, embedded relationships, no joins
  • Example use cases: Content management, user profiles, event logs
  • Key decision: Embed vs reference (embed for 1-to-few, reference for 1-to-many)

Graph Schema (Ontology)

  • Best for: Complex relationships, traversal queries, semantic reasoning, knowledge graphs
  • Pattern: Nodes (entities), edges (relationships), properties on both
  • Example use cases: Social networks, fraud detection, recommendation engines, scientific research
  • Key decision: Property graph vs RDF triples

Event/Time-Series Schema

  • Best for: Audit logs, metrics, IoT data, append-only data
  • Pattern: Immutable events, time-based partitioning, aggregation tables
  • Example use cases: User activity tracking, monitoring, financial transactions
  • Key decision: Raw events vs pre-aggregated summaries

Dimensional (Data Warehouse) Schema

  • Best for: Analytics (OLAP), aggregations, historical reporting
  • Pattern: Fact tables + dimension tables (star/snowflake schema)
  • Example use cases: Business intelligence, sales analytics, customer 360
  • Key decision: Star schema (denormalized) vs snowflake (normalized dimensions)

Common Patterns

Pattern: Entity Lifecycle Modeling Track entity state changes explicitly. Example: Order (draft → pending → confirmed → shipped → delivered → completed/cancelled). Include status field, timestamps for each state, and transitions table if history needed.

Pattern: Soft Deletes Never physically delete records - add deletedAt timestamp. Allows data recovery, audit compliance, and referential integrity. Filter WHERE deletedAt IS NULL in queries.

Pattern: Polymorphic Associations Entity relates to multiple types. Example: Comment can be on Post or Photo. Options: (1) separate foreign keys (commentableType + commentableId), (2) junction tables per type, (3) single table inheritance.

Pattern: Temporal/Historical Data Track changes over time. Options: (1) Effective/expiry dates per record, (2) separate history table, (3) event sourcing (store all changes as events). Choose based on query patterns.

Pattern: Multi-tenancy Isolate data per customer. Options: (1) Separate databases (strong isolation), (2) Shared schema with tenantId column (efficient), (3) Separate schemas in same DB (balance). Add tenantId to all queries if shared.

Pattern: Hierarchies Model trees/nested structures. Options: (1) Adjacency list (parentId), (2) Nested sets (left/right values), (3) Path enumeration (materialized path), (4) Closure table (all ancestor-descendant pairs). Trade-offs between read/write performance.

Guardrails

✓ Do:

  • Start with use cases - schema serves queries/operations
  • Normalize first, then denormalize for specific performance needs
  • Document all constraints and invariants explicitly
  • Use meaningful, consistent naming conventions
  • Consider future evolution - design for extensibility
  • Validate model against ALL required use cases
  • Model the real world accurately (don't force fit to technology)

✗ Don't:

  • Design schema in isolation from use cases
  • Premature optimization (denormalize before measuring)
  • Skip constraint definitions (leads to data corruption)
  • Use generic names (data, value, thing) - be specific
  • Ignore cardinality and nullability
  • Model implementation details in domain entities
  • Forget about data migration path from existing systems
  • Create circular dependencies between entities

Quick Reference

Resources:

  • resources/template.md - Structured process for entity identification, relationship mapping, and constraint definition
  • resources/methodology.md - Advanced patterns: temporal modeling, graph ontologies, schema evolution, normalization strategies
  • resources/examples/ - Worked examples showing complete schema designs with validation
  • resources/evaluators/rubric_data_schema_knowledge_modeling.json - Quality assessment before delivery

When to choose which resource:

  • Simple domain (< 10 entities) → Start with template
  • Complex domain or graph/ontology → Study methodology for advanced patterns
  • Need to see examples → Review examples folder
  • Before delivering to user → Always validate with rubric

Expected deliverable: data-schema-knowledge-modeling.md file containing: domain description, complete entity definitions with attributes and types, relationship mappings with cardinality, constraint specifications, diagram (ERD/graph visualization), validation against use cases, and implementation notes.

Common schema notations:

  • ERD (Entity-Relationship Diagram): Visual representation of entities and relationships
  • UML Class Diagram: Object-oriented view with inheritance and associations
  • Graph Diagram: Nodes and edges for graph databases
  • JSON Schema: API/document structure with validation rules
  • SQL DDL: Executable CREATE TABLE statements
  • Ontology (OWL/RDF): Semantic web knowledge representation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

29.08%
按下载量换算203

Gemini CLI

20.78%
按下载量换算145

Antigravity

18.52%
按下载量换算129

windsurf

12.12%
按下载量换算85

OpenCode

8.36%
按下载量换算58

Cursor

3.82%
按下载量换算27

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills