skills/sda-controller/SKILL.md
Simulate-Deploy-Augment loop replacing traditional PDCA
npx skillsauth add mark393295827/house-maint-ai SDA ControllerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Replaces traditional PDCA (Plan-Do-Check-Act) with a faster, AI-native iteration loop.
| PDCA | SDA | Improvement | |------|-----|-------------| | Plan | Simulate | Test before building | | Do | Deploy | Canary first | | Check | Augment | Real-time learning | | Act | (Continuous) | No manual cycle |
┌─────────────────────────────────────────────┐
│ │
│ SIMULATE ──► DEPLOY ──► AUGMENT │
│ ▲ │ │
│ └───────────────────────┘ │
│ │
└─────────────────────────────────────────────┘
Run solution in high-fidelity sandbox before any real deployment.
simulate:
environment: sandbox
actions:
- Run test suite: `npm run test`
- Build check: `npm run build`
- Load test: `npm run load-test:smoke`
success_criteria:
tests_pass: true
build_success: true
performance_threshold: "p95 < 200ms"
Small-scale canary release with rollback capability.
deploy:
strategy: canary
initial_traffic: 5%
ramp_schedule:
- 5%: 10min
- 25%: 30min
- 50%: 1hr
- 100%: 2hr
rollback_trigger:
error_rate: "> 1%"
latency_p99: "> 500ms"
Agents learn from telemetry, adjusting in real-time.
augment:
telemetry_sources:
- Error logs
- Performance metrics
- User feedback signals
feedback_actions:
- Auto-fix common patterns
- Generate hotfix PRs
- Update configuration
learning_loop:
- Store successful patterns
- Avoid failed approaches
/iterate simulate # Run simulation only
/iterate deploy # Deploy with canary
/iterate full # Complete SDA cycle
/iterate rollback # Emergency rollback
| Component | Purpose |
|-----------|---------|
| eval-harness | Powers SIMULATE phase |
| verification-loop | Continuous checks |
| GitHub Actions | DEPLOY automation |
| Sentry | AUGMENT telemetry |
| Metric | Target | |--------|--------| | Simulation pass rate | 100% | | Canary success rate | > 99% | | Mean time to augment | < 5min | | Rollback frequency | < 1% |
documentation
Translate visa application documents (images) to English and create a bilingual PDF with original and translation
development
A comprehensive verification system for Claude Code sessions.
development
Use this skill when writing new features, fixing bugs, or refactoring code. Enforces test-driven development with 80%+ coverage including unit, integration, and E2E tests.
tools
SwiftUI architecture patterns, state management with @Observable, view composition, navigation, performance optimization, and modern iOS/macOS UI best practices.