بنقرة واحدة
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.