# Cloud Kinetix Layer

This directory contains all Cloud Kinetix enhancements to BMAD-METHOD. By keeping CK additions separate from the upstream BMAD core, we can:

1. **Sync cleanly with upstream** - No merge conflicts with core files
2. **Maintain clear ownership** - CK files in ck-layer/, upstream in bmad-core/
3. **Build-time integration** - Merge happens during install, not in git

## Directory Structure

```
ck-layer/
├── lib/              # CK enterprise features (installer, backup, etc.)
├── config/           # CK configuration files
├── scripts/          # CK build and release scripts
├── expansion-packs/  # CK-specific expansion packs
├── bin/              # CK CLI entry points
└── docs/             # CK-specific documentation
```

## Integration Strategy

The CK installer reads from both:

- `bmad-core/` - Upstream BMAD content
- `ck-layer/` - CK enhancements

At install time, these are merged to create the final installation with all CK features layered on top of standard BMAD.

## Important Rules

1. **Never modify files in bmad-core/** - Those come from upstream
2. **All CK changes go in ck-layer/** - This is our territory
3. **Use build process for integration** - Don't merge in git repository
