用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Mark393295827/house-maint-ai --skill sda-controller命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | SDA Controller |
| description | Simulate-Deploy-Augment loop replacing traditional PDCA |
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% |