Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问clear审计通过

runbooks-structure操作手册结构

Agent Skill

runbooks-structure 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

364

周安装

15

GitHub Stars

142

下载量

119
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:runbooks-structure(操作手册结构)
来源仓库:https://github.com/thebushidocollective/han
仓库路径:skills/runbooks-structure
安装命令:
npx skills add https://github.com/thebushidocollective/han --skill runbooks-structure
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/thebushidocollective/han --skill runbooks-structure

简介

用于处理 GitHub 仓库、Issue、Pull Request 等协作信息。

  • 适合围绕仓库状态和代码变更进行整理。
  • 可结合来源仓库和安装命令进一步核验用法。
  • 建议确认权限范围及是否会触发联网或文件读写。
  • runbooks-structure 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Runbooks - Structure

Creating clear, actionable runbooks for operational tasks, maintenance, and troubleshooting.

What is a Runbook?

A runbook is step-by-step documentation for operational tasks:

  • Troubleshooting - Diagnosing and fixing issues
  • Incident Response - Handling production incidents
  • Maintenance - Routine operational tasks
  • On-Call - Reference for on-call engineers

Basic Runbook Structure

Minimum Viable Runbook

# Service Name: Task/Issue

## Overview
Brief description of what this runbook covers.

## Prerequisites
- Required access/permissions
- Tools needed
- Knowledge required

## Steps

### 1. First Step
Detailed instructions for first action.

### 2. Second Step
Detailed instructions for second action.

## Validation
How to verify the task was completed successfully.

## Rollback (if applicable)
How to undo the changes if needed.

Comprehensive Runbook Template

# [Service]: [Task/Issue Title]

**Last Updated:** 2025-01-15
**Owner:** Platform Team
**Severity:** High/Medium/Low
**Estimated Time:** 15 minutes

## Overview

Brief description of the problem or task this runbook addresses.

## When to Use This Runbook

- Alert fired: `high_cpu_usage`
- Customer report: slow response times
- Scheduled maintenance window

## Prerequisites

- [ ] VPN access to production network
- [ ] AWS console access (read/write)
- [ ] kubectl configured for production cluster
- [ ] Slack access to #incidents channel

## Context

### Architecture Overview
Brief explanation of relevant system architecture.

### Common Causes
- Database connection pool exhaustion
- Memory leaks in worker processes
- Third-party API rate limiting

## Diagnosis Steps

### 1. Check System Health

Check pod status

kubectl get pods -n production

Expected output: All pods Running


**Decision Point:** If pods are CrashLooping, proceed to step 2. Otherwise, skip to step 3.

### 2. Check Application Logs

View recent logs

kubectl logs -n production deployment/api-server --tail=100


**Look for:**

- Error messages containing "connection refused"
- Stack traces
- Repeated warnings

### 3. Check Database Performance

Connect to RDS metrics

aws cloudwatch get-metric-statistics \ --namespace AWS/RDS \ --metric-name DatabaseConnections \ --dimensions Name=DBInstanceIdentifier,Value=prod-db


## Resolution Steps

### Option A: Restart Services (Quick Fix)

1. **Drain pod gracefully:** `kubectl drain pod/api-server-abc123 --ignore-daemonsets`
2. **Verify new pod is healthy:** `kubectl get pods -n production | grep api-server`
3. **Monitor for 5 minutes:** Check Datadog dashboard for error rates.

### Option B: Scale Resources (Long-term Fix)

1. **Increase database connection pool:** `# Edit configmap kubectl edit configmap app-config -n production # Change: DB_POOL_SIZE: "10" # To: DB_POOL_SIZE: "20"`
2. **Restart deployment:** `kubectl rollout restart deployment/api-server -n production`
3. **Monitor rollout:** `kubectl rollout status deployment/api-server -n production`

## Validation

- All pods in Running state: `kubectl get pods -n production`
- Error rate < 1%: Check Datadog dashboard
- Response time < 200ms p95: Check Datadog dashboard
- No alerts firing: Check PagerDuty

## Rollback

If the fix causes issues:

Rollback to previous version

kubectl rollout undo deployment/api-server -n production

Verify rollback

kubectl rollout status deployment/api-server -n production


## Follow-up Actions

- Create post-mortem ticket: JIRA-1234
- Update monitoring alerts if needed
- Schedule post-incident review
- Document learnings in team wiki

## Related Runbooks

Example format:

## Contact Information

- **Primary On-Call:** Check PagerDuty schedule
- **Escalation:** Platform Team Lead
- **Slack Channel:** #platform-incidents

## Revision History

| Date | Author | Changes |
| --- | --- | --- |
| 2025-01-15 | Alice | Added validation steps |
| 2025-01-10 | Bob | Initial version |

Runbook Organization

Directory Structure


runbooks/ ├── README.md # Index of all runbooks ├── templates/ │ ├── troubleshooting.md # Template for troubleshooting │ ├── maintenance.md # Template for maintenance tasks │ └── incident-response.md # Template for incidents ├── services/ │ ├── api-gateway/ │ │ ├── high-latency.md │ │ ├── connection-errors.md │ │ └── scaling.md │ └── database/ │ ├── slow-queries.md │ └── replication-lag.md ├── infrastructure/ │ ├── kubernetes/ │ │ ├── pod-restart.md │ │ └── node-drain.md │ └── networking/ │ └── firewall-rules.md └── on-call/ ├── first-responder.md ├── escalation-guide.md └── common-alerts.md

Best Practices

Write for Clarity

# Good: Clear, specific steps
## Restart the API Server

1. Check current pod status:

kubectl get pods -n production -l app=api-server


1. Delete the pod (it will auto-restart): `kubectl delete pod <pod-name> -n production`
2. Verify new pod is running: `kubectl get pods -n production -l app=api-server` Expected: STATUS = Running
# Bad: Vague, assumes knowledge
## Fix API Issues

1. Restart the thing
2. Check if it works
3. If not, try something else

Include Decision Trees

## Diagnosis

1. Check if service is responding:

curl -f https://api.example.com/health


**If succeeds:** Service is up. Check application logs (Step 3). **If fails:** Service is down. Check pod status (Step 2).

1. Check pod status: `kubectl get pods -n production` **If CrashLooping:** Check logs for errors (Step 4). **If Pending:** Check node resources (Step 5). **If Running:** Service should be up. Check DNS (Step 6).

Provide Expected Outputs

## Check Database Connection

psql -h prod-db.example.com -U app -c "SELECT 1"


**Expected output:**

?column?


1 (1 row)


**If you see "connection refused":**

- Check security groups allow traffic
- Verify database is running
- Check credentials in secrets manager

Use Checklists

## Pre-Deployment Checklist

- [ ] Code reviewed and approved
- [ ] Tests passing in CI
- [ ] Database migrations tested
- [ ] Rollback plan documented
- [ ] Monitoring alerts configured
- [ ] On-call engineer notified
- [ ] Deploy window scheduled

Common Patterns

Emergency Response

# EMERGENCY: Database Down

**Time-Sensitive:** Complete within 5 minutes

## Immediate Actions (Do First)

1. **Page database team:**
   Use PagerDuty incident: "Database outage"

2. **Notify stakeholders:**
   Post in #incidents: "Database is down. Investigating."

3. **Enable maintenance mode:**

kubectl set env deployment/api-server MAINTENANCE_MODE=true


## Investigation (While Waiting)

1. Check RDS console for instance status
2. Review CloudWatch logs for errors
3. Check recent changes in deploy history

## Communication Template

**Update every 10 minutes in #incidents:**

> **[HH:MM]** Database still down. Database team investigating. Impact: All API requests failing. ETA: Unknown.

Routine Maintenance

# Monthly Database Maintenance

**Schedule:** First Sunday of each month, 2 AM UTC
**Duration:** ~2 hours
**Downtime:** None (rolling maintenance)

## Pre-Maintenance

**1 week before:**
- [ ] Announce maintenance window in #engineering
- [ ] Create calendar event
- [ ] Prepare rollback plan

**1 day before:**
- [ ] Verify backup is recent (< 24 hours)
- [ ] Test backup restoration (staging)
- [ ] Confirm on-call coverage

## Maintenance Steps

1. **Take snapshot:**

aws rds create-db-snapshot \ --db-instance-identifier prod-db \ --db-snapshot-identifier maintenance-$(date +%Y%m%d)


1. **Apply updates:** Follow RDS console update wizard
2. **Monitor reboot:** Watch CloudWatch metrics for 15 minutes

## Post-Maintenance

- Verify all services healthy
- Post completion in #engineering
- Update maintenance log

Knowledge Transfer

# New Engineer Onboarding: Deploy Process

## Learning Objectives

After completing this runbook, you will:
- Understand our deployment pipeline
- Know how to deploy to staging
- Know how to rollback a bad deploy

## Step 1: Understanding the Pipeline

Our deployment flow:

GitHub → CI (GitHub Actions) → ArgoCD → Kubernetes

**Exercise:** Review a recent deploy in ArgoCD

## Step 2: Deploying to Staging

**Shadowing:** Watch a senior engineer deploy first.

1. Create feature branch
2. Open pull request
3. Wait for CI to pass
4. Merge to main
5. Watch ArgoCD sync

**Practice:** Deploy your own change to staging.

## Step 3: Deploying to Production

**Requirements before production deploy:**
- [ ] Completed 3+ staging deploys
- [ ] Reviewed with team lead
- [ ] Read incident response runbook

**Hands-on:** Pair with team lead for first production deploy.

## Certification

- [ ] Completed 5 staging deploys
- [ ] Completed 1 production deploy (supervised)
- [ ] Can explain rollback procedure

**Certified by:** _________________ Date: _______

Anti-Patterns

Don't Leave Out Context

## Bad: No context

### Fix the API

Run this command:

kubectl delete pod api-server-abc


## Good: Explain why

### Restart API Server

**When to use:** API returning 500 errors, logs show memory leak.

**Why this works:** Deletes pod, Kubernetes creates fresh pod with clean state.

kubectl delete pod api-server-abc


**What to expect:** ~30 seconds downtime while new pod starts.

Don't Skip Validation Steps

# Bad: No validation
## Deploy New Version

1. Update image tag
2. Apply changes
3. Done!

# Good: Include validation
## Deploy New Version

1. Update image tag in deployment.yaml
2. Apply changes:

kubectl apply -f deployment.yaml


1. **Verify rollout:** `kubectl rollout status deployment/api-server` Wait for "successfully rolled out"
2. **Check pod health:** `kubectl get pods -l app=api-server` All pods should show STATUS: Running
3. **Verify endpoints:** `curl https://api.example.com/health` Should return 200 OK

Don't Assume Knowledge

# Bad: Uses jargon without explanation
## Fix Pod

Check the ingress and make sure the service mesh is working.

# Good: Explains terms
## Fix Pod Connectivity

1. **Check ingress** (the load balancer that routes traffic to pods):

kubectl get ingress -n production


1. **Verify service mesh** (Istio, manages pod-to-pod communication): `kubectl get pods -n istio-system` All Istio control plane pods should be Running.

Related Skills

  • troubleshooting-guides: Creating diagnostic procedures
  • incident-response: Handling production incidents

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenCode

30.27%
按下载量换算36

Codex

24.15%
按下载量换算29

Claude Code

19.59%
按下载量换算23

windsurf

11.85%
按下载量换算14

Antigravity

9.06%
按下载量换算11

Gemini CLI

3.89%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills