Agent skill
yaml-driven-architecture
Apply YAML-driven architecture-as-code patterns for system definition, configuration management, and automated generation. Use when designing configuration schemas, building code generators, or implementing declarative architecture definitions.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/yaml-driven-architecture
SKILL.md
YAML-Driven Architecture Patterns
Core Pipeline
YAML → Validation → Model → Transform → Output
- Parse: YAML to data structures
- Validate: Schema compliance (Pydantic)
- Model: Type-safe internal representation
- Transform: Apply templates
- Generate: Code, docs, configs
YAML Design Rules
- Maximum 4 levels deep (use references for deeper)
- Convention over configuration (provide sensible defaults)
- Filename conventions for type detection:
system.yaml→ SystemContext,components.yaml→ ComponentView
Schema Definition
class Component(BaseModel):
id: str
name: str
class Config:
extra = "forbid" # Catch typos
- Use
extra="forbid"to catch typos - Use kebab-case IDs
- Validate relationships bidirectionally (ensure all references exist)
Generation Patterns
Stateless generators: Pure functions taking model → output
def generate_module(module: ModuleView) -> str:
return template.render(module=module)
Multi-output: Single source generates code, docs, tests
Error Handling
- Provide context: file, line number, field name
- Suggest corrections: "Unknown field 'typ'. Did you mean 'type'?"
- Fail fast with clear messages
Best Practices
- Validate early at YAML level
- Use anchors for repeated configurations
- Version schemas for breaking changes
- Keep logic in generators, YAML for declaration only
Remember: YAML is for configuration, not computation. Keep it declarative.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?