focused-fix
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
Interactive wizard to design an SLO with SLI, target, error budget, and burn-rate alerts
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/slo-designContext preview
What this command does when you run it.
Interactive wizard to design an SLO with SLI, target, error budget, and burn-rate alerts
description: Interactive wizard to design an SLO with SLI, target, error budget, and burn-rate alerts
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.9
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 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:
388 production-ready Claude Code skills, plugins, and agent skills for 13 AI coding tools. The most comprehensive open-source library of Claude Code skills and agent plugins — also works with OpenAI Codex, Gemini CLI, Cursor, and 9 more coding agents.
Repo: alirezarezvani/claude-skills
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
Clean up merged branches locally and on remote, keeping only main, dev, and gh-pages.
Stage, commit, and push the current branch following git governance rules.
Comprehensive audit pipeline for skills, plugins, agents, and commands. Validates structure, quality, security, marketplace compliance, cross-platform…