Design data architectures with modeling, pipelines, and governance
Designs complete data architectures including models, pipelines, and governance frameworks. Triggered when you need to create data models, pipeline designs, or data quality rules for operational or analytical systems.
/plugin marketplace add pluginagentmarketplace/custom-plugin-software-architect/plugin install software-architect-assistant@pluginagentmarketplace-software-architectThis skill inherits all available tools. When active, it can use any tool Claude has access to.
assets/config.yamlassets/schema.jsonreferences/GUIDE.mdreferences/PATTERNS.mdscripts/validate.pyDesign data architectures including data models, pipeline designs, governance frameworks, and quality management for operational and analytical systems.
| Parameter | Type | Required | Validation | Default |
|---|---|---|---|---|
data_domain | string | ✅ | min: 20 chars | - |
design_type | enum | ⚪ | model|pipeline|governance|quality | model |
data_type | enum | ⚪ | operational|analytical|streaming | operational |
volume_tier | enum | ⚪ | small|medium|large|massive | medium |
output_format | enum | ⚪ | erd|yaml|json | erd |
┌──────────────────────────────────────────────────────────┐
│ 1. VALIDATE: Check data domain and requirements │
│ 2. DISCOVER: Identify data sources and entities │
│ 3. MODEL: Create conceptual/logical/physical model │
│ 4. DESIGN: Pipeline or governance framework │
│ 5. QUALITY: Define data quality rules │
│ 6. VALIDATE: Check model consistency │
│ 7. DOCUMENT: Return data architecture │
└──────────────────────────────────────────────────────────┘
| Error | Retry | Backoff | Max Attempts |
|---|---|---|---|
VALIDATION_ERROR | No | - | 1 |
MODEL_GENERATION_ERROR | Yes | 1s | 2 |
FORMAT_ERROR | Yes | 500ms | 3 |
log_points:
- event: design_started
level: info
data: [design_type, data_type]
- event: entities_identified
level: info
data: [entity_count, relationship_count]
- event: quality_rules_defined
level: info
data: [rule_count, dimensions_covered]
metrics:
- name: models_created
type: counter
labels: [design_type]
- name: design_time_ms
type: histogram
- name: entity_count
type: gauge
| Error Code | Description | Recovery |
|---|---|---|
E401 | Missing data domain | Request domain description |
E402 | Invalid relationships | Highlight circular/missing refs |
E403 | Schema validation failed | Show validation errors |
E404 | Unsupported volume tier | Suggest architectural changes |
test_cases:
- name: "E-commerce data model"
input:
data_domain: "E-commerce order management"
design_type: "model"
output_format: "erd"
expected:
has_entities: true
entities_include: ["Customer", "Order", "Product"]
has_relationships: true
valid_erd: true
- name: "Analytics pipeline"
input:
data_domain: "Customer analytics"
design_type: "pipeline"
data_type: "analytical"
expected:
has_ingestion: true
has_transformation: true
has_serving: true
- name: "Data quality rules"
input:
data_domain: "User profiles"
design_type: "quality"
expected:
has_dimensions: true
dimensions_include: ["completeness", "accuracy"]
has_rules: true
| Symptom | Root Cause | Resolution |
|---|---|---|
| Missing relationships | Incomplete domain | Add missing entities |
| Invalid ERD syntax | Format error | Validate Mermaid ERD |
| Missing quality rules | Dimensions not specified | Add quality dimensions |
□ Is data domain clearly defined?
□ Are all entities identified?
□ Are relationships correctly typed?
□ Is output format valid?
□ Are quality dimensions covered?
| Dimension | Example Rule |
|---|---|
| Completeness | NOT NULL checks |
| Accuracy | Regex validation |
| Consistency | Referential integrity |
| Timeliness | SLA monitoring |
| Uniqueness | Primary key constraints |
| Component | Trigger | Data Flow |
|---|---|---|
| Agent 06 | Design request | Receives domain, returns model |
| Agent 04 | Cloud data services | Cloud data platform |
| Version | Date | Changes |
|---|---|---|
| 2.0.0 | 2025-01 | Production-grade: ERD, pipelines, DQ framework |
| 1.0.0 | 2024-12 | Initial release |
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.