원클릭으로
backup-recovery-checklist
Create a backup and recovery checklist for a datastore or service.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a backup and recovery checklist for a datastore or service.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Review code changes and report issues by severity with actionable fixes.
Sharpen a fuzzy intention into one measurable objective string that drives the rest of the work.
Convert a Prompt Flow PRS pipeline submission to run a Microsoft Agent Framework workflow.
Build a Model Context Protocol (MCP) server that lets an LLM call into external tools and resources.
Summarize PDF documents into concise bullet-point digests.
Bump a dependency version across a pnpm workspace and update lockfile.
| slug | backup-recovery-checklist |
| name | Backup Recovery Checklist |
| version | 0.1.0 |
| description | Create a backup and recovery checklist for a datastore or service. |
| category | dev-tools |
| tags | ["backup","recovery","disaster-recovery","reliability"] |
| inputs | [{"name":"datastore","type":"string","required":true,"description":"Database, object store, or service"},{"name":"rto_rpo","type":"string","required":false,"description":"Recovery time and point objectives"}] |
| output | {"format":"markdown","description":"Backup strategy and step-by-step recovery runbook."} |
| author | badhope |
| license | MIT |
| created | "2026-06-21T00:00:00.000Z" |
| updated | "2026-06-21T00:00:00.000Z" |
Productionizing a datastore, preparing for compliance, or before a disaster-recovery drill.
Describe the datastore and RTO/RPO targets.
A checklist covering backup schedule, retention, encryption, testing, and recovery steps.
Create a backup and recovery checklist.
Output:
1. Backup scope: what to back up and what to exclude
2. Schedule and retention: frequency, lifecycle, off-site copies
3. Encryption and access control
4. Monitoring: verify backup success and freshness
5. Recovery runbook: step-by-step restore procedure
6. Testing schedule: how often to run a restore drill
7. Escalation: who to contact if restore fails
Do not include actual credentials or keys.
Input:
datastore: PostgreSQL primary
rto_rpo: 'RTO 1h, RPO 15min'
Output:
## Backup Schedule
- Continuous WAL archiving to object storage
- Full base backup nightly, retained for 30 days
## Recovery Runbook
1. Provision new instance from latest base backup.
2. Replay WAL to desired point in time.
3. Verify data checksums and run smoke queries.
4. Redirect application DNS/connection string.
## Testing
Run restore drill monthly in staging.
These are the bugs that bite every new user. Check them before shipping:
Backups never tested: Restore procedure works in theory but fails when you need it.
No off-site copies: Backups in the same datacenter as the primary fail in a site outage.
Retention too short: Backups expire before you discover a problem.
Encryption keys not backed up: Backup encryption keys lost means backups are inaccessible.
Backup monitoring only on success: Backup failures go unnoticed because only successes generate alerts.