Command
/slo-design
Interactive wizard to design an SLO with SLI, target, error budget, and burn-rate alerts
One command from claude-skills.
shell
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeShips with claude-skills. Installing the plugin gets this command.
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/slo-design
Context preview
What this command does when you run it.
Interactive wizard to design an SLO with SLI, target, error budget, and burn-rate alerts
Stats
Stars23,060
Forks3,139
LanguagePython
LicenseMIT
Ships with claude-skills
Command definition
slo-design.md
--- description: Interactive wizard to design an SLO with SLI, target, error budget, and burn-rate alerts --- # /slo-design 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. ## Usage ``` /slo-design /slo-design --service checkout-svc --sli-type request-success-rate --target 99.9 ``` ## Implementation ```bash SKILL=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
