Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Interactive wizard to design an SLO with SLI, target, error budget, and burn-rate alerts
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-05 | ✗→✓ | ▲ Improved | -1% | 0% |
| case-06 | ✗→✓ | ▲ Improved | -9% | 0% |
| case-11 | ✗→✓ | ▲ Improved | -21% | 0% |
| case-12 | ✗→✓ | ▲ Improved | -10% | 0% |
| case-14 | ✗→✓ | ▲ Improved | 9% | 0% |
Step through SLO design using the slo-architect skill. Produces an SLO definition, computes error budget + multi-window burn-rate alerts, and runs the reviewer to catch common bugs.
/slo-design
/slo-design --service checkout-svc --sli-type request-success-rate --target 99.9bashSKILL=engineering/slo-architect/skills/slo-architect # Step 1: gather inputs (service, sli-type, target, window, owner) # Step 2: render SLO definition python "$SKILL/scripts/slo_designer.py" \ --service "$SERVICE" \ --sli-type "$SLI_TYPE" \ --target "$TARGET" \ --window-days "$WINDOW_DAYS" \ --owner "$OWNER" \ --policy-doc "$POLICY_DOC" \ --format json > .slo.json # Step 3: compute error budget + burn-rate alerts python "$SKILL/scripts/error_budget_calculator.py" \ --target "$TARGET" \ --window-days "$WINDOW_DAYS" # Step 4: render the markdown SLO for peer review python "$SKILL/scripts/slo_designer.py" \ --service "$SERVICE" \ --sli-type "$SLI_TYPE" \ --target "$TARGET" \ --window-days "$WINDOW_DAYS" \ --owner "$OWNER" \ --policy-doc "$POLICY_DOC" # Step 5: validate against the reviewer echo "=== After saving the SLO, run slo_review.py against the doc ==="
A markdown SLO definition with:
slo-architect skill installed.slo.json written for use with downstream tools (chaos-engineering blast radius, etc.)slo_review.py checksOther measured skills in the registry, with their headline benchmark lift.