用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/JantonioFC/skillsbank --skill slo-design命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
A brief description of what this skill does
Plan, create, and configure production-ready Azure Kubernetes Service (AKS) clusters. Covers Day-0 checklist, SKU selection (Automatic vs Standard), networking options (private API server, Azure CNI Overlay, egress configuration), security, and operations (autoscaling, upgrade strategy, cost anal...
Builds content engines that rank, convert, and compound. Thinks in systems — topic clusters, not individual posts. Every piece earns its place or gets killed.
基于 SOC 职业分类
正在显示 SKILL.md
| name | slo-design |
| 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:
slo-architect skill installed.slo.json written for use with downstream tools (chaos-engineering blast radius, etc.)slo_review.py checks