data-architecture
Installation
SKILL.md
Data Architecture Skill
Overview
This project uses a single source of truth pattern for all data. All personal information, project details, and configuration data is centralized in typed data files.
Core Principle: Single Source of Truth
Rule: Never hardcode personal data. Always reference data files.
// ❌ WRONG - Hardcoded data
const email = "me@omerakben.com";
const name = "Omer Akben";