Files
dss/dss-mvp1
Digital Production Factory 93e1b452fb Phase 5: Add immutable file headers to all protected files
Added protection headers to 9 critical files:

JSON Files (x-immutable-notice field):
- .dss/schema/api.schema.json
- .dss/schema/tokens.schema.json
- .dss/schema/components.schema.json
- .dss/schema/workflows.schema.json
- .dss/schema/guardrails.schema.json
- dss-claude-plugin/.mcp.json

YAML File (comment header):
- .dss-boundaries.yaml

Markdown File (HTML comment):
- API_SPECIFICATION_IMMUTABLE.md

Python File (docstring header):
- dss-mvp1/dss/validators/schema.py

Each header includes:
- Protection notice
- Reason for immutability
- Last modified date
- Bypass instructions (DSS_IMMUTABLE_BYPASS=1)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-09 19:34:32 -03:00
..

DSS MVP1 - Design System Server

A modern design system orchestration platform built with Python/FastAPI, leveraging style-dictionary and shadcn/ui.

Architecture

  • Core: Python/FastAPI + Pydantic models
  • Token Transformation: style-dictionary (Node.js)
  • Component Management: shadcn CLI
  • Testing: pytest with >80% coverage
  • Database: SQLite

Project Structure

dss-mvp1/
├── dss/                    # Core application
│   ├── models/             # Pydantic models
│   ├── validators/         # Validation logic
│   ├── tools/              # External tool wrappers
│   └── api/                # FastAPI routes
├── tests/                  # Test suite
│   ├── fixtures/           # Test data
│   ├── unit/               # Unit tests
│   └── integration/        # Integration tests
└── pytest.ini              # Test configuration

Quick Start

# Install Python dependencies
pip install -r requirements.txt

# Install Node.js dependencies
npm install

# Run tests
pytest

# Run unit tests only
pytest tests/unit -m unit

Development

This is a test-driven rebuild of DSS following clean architecture principles.

Week 1: Foundation + Core Pipeline Week 2: Theme System + shadcn Integration

Testing

  • Unit tests: >70% of test suite
  • Integration tests: ~25%
  • E2E tests: ~5%
  • Target coverage: >80%