Install
$ agentstack add skill-arbazkhan971-godmode-backup ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Backup — Backup & Disaster Recovery
Activate When
- User invokes
/godmode:backup - User says "backup strategy," "disaster recovery," "what happens if we lose the database?"
- User is designing data infrastructure that needs durability guarantees
- After
/godmode:infraprovisions stateful services (databases, storage, queues) - Incident post-mortem reveals backup or recovery gaps
- Compliance requirements mandate backup and recovery documentation
Workflow
Step 1: Inventory Data Assets
Identify all data that needs protection:
DATA ASSET INVENTORY:
| Asset | Type | Size | Growth | Critical |
Step 2: Define RPO/RTO Targets
Set recovery objectives for each data tier:
RECOVERY OBJECTIVES:
| Data Tier | RPO | RTO | Justification |
Step 3: Backup Strategy Design
Design backup approach for each data tier:
Tier 1: Continuous Protection
TIER 1 BACKUP STRATEGY:
Primary database:
Tier 2: Periodic Snapshots
TIER 2 BACKUP STRATEGY:
File uploads (S3/GCS):
Tier 3: Daily Backups
TIER 3 BACKUP STRATEGY:
Application logs:
IF backup age >24h: trigger immediate backup. IF restore test fails: alert and re-run.
Step 4: Backup Verification
Automated checks that backups are actually working:
BACKUP VERIFICATION SCHEDULE:
| Check | Frequency | Method | Alert |
### Step 5: Data Integrity Verification
Verify backed-up data is consistent and usable:
DATA INTEGRITY CHECKS: | Check | Method | Frequency | |--|--|--| | Row count consistency | Compare source vs | After each | | | restored backup | restore test | | Checksum verification | SHA-256 of backup | Every backup | | | file | | | Foreign key integrity | Run FK constraint | Weekly | | | check on restored DB | restore | | Application smoke test | Run app against | Monthly | | | restored DB | restore | | Point-in-time accuracy | Restore to specific | Quarterly | | | time, verify records | | | Cross-region consistency | Compare checksums | Weekly | | | across regions | |
Integrity verification queries:
-- Row count comparison (run against source and restored)
SELECT table_name, n_live_tup
FROM pg_stat_user_tables
### Step 6: Recovery Procedures
Document step-by-step recovery for each failure scenario:
RECOVERY: Primary Database Failure Severity: CRITICAL RPO:
- Check replica lag
$ psql -h -c "SELECT pglastwalreplaylsn();"
- Promote replica manually
$ pg_ctl promote -D /var/lib/postgresql/data
- Update connection string in application config
- Restart application instances
- Verify application is serving traffic
POST-RECOVERY:
- Provision new replica from promoted primary
- Verify replication is streaming
- Update monitoring and alerting
- Write incident report
#### Scenario 2: Data Corruption
RECOVERY: Data Corruption — Severity: HIGH, RTO: 15min-2h
- STOP: Identify scope, disable source (bad migration, broken code)
- RECOVER: Point-in-time restore (recent) | Snapshot restore (widespread) | Selective table restore (targeted)
- VERIFY: Row counts, smoke tests, no orphaned records
- POST-MORTEM: Root cause, prevention, detection/recovery speed
#### Scenario 3: Complete Region Failure
RECOVERY: Region Failure — Severity: CRITICAL, RPO: Next test scheduled: Owner: On-call escalation: Recovery objectives: | Tier 1 RPO: File storage: Configuration: Secrets: Last successful restore test: () Last DR failover test: ()
### Step 8: Backup & DR Report
BACKUP & DISASTER RECOVERY REPORT Data assets inventoried: Backup strategies defined: Recovery procedures documented: scenarios Coverage: Tier 1 (critical): Tier 2 (important): Tier 3 (operational): Verification: Automated checks: Last restore test: Last DR test: Gaps identified:
Verdict:
### Step 9: Commit and Transition
Save runbook as `docs/dr/-disaster-recovery-runbook.md`
```bash
# Test backup and restore procedures
pg_dump -Fc mydb > backup_test.dump
pg_restore -d mydb_test backup_test.dump
psql mydb_test -c "SELECT count(*) FROM users;"
# Verify backup and test restore
pg_dump --format=custom -f backup.dump $DATABASE_URL
pg_restore --list backup.dump
curl -s http://localhost:8080/health
Auto-Detection
1. Data stores: grep for postgres, mysql, mongodb, redis connection strings
2. Object storage: grep for S3, GCS, Azure Blob configs
3. Existing backups: check crontab, CI jobs, WAL archiving configs
4. No backups → CRITICAL gap. No verification → HIGH gap.
Explicit Loop Protocol
BACKUP VERIFICATION LOOP:
current_iteration = 0
max_iterations = 10
gaps_remaining = total_gaps_found
WHILE gaps_remaining > 0 AND current_iteration (iter {current_iteration})"
4. VERIFY the fix:
- Backup job runs successfully
- Backup file is valid (checksum, header check)
- Restore test passes (if applicable)
5. IF verification fails:
- Debug configuration
- Retry with adjusted parameters
6. UPDATE gaps_remaining
IF current_iteration % 3 == 0:
PRINT STATUS:
"Iteration {current_iteration}/{max_iterations}"
"Gaps fixed: {total_gaps - gaps_remaining}/{total_gaps}"
"Tier 1 coverage: {tier1_status}"
"Tier 2 coverage: {tier2_status}"
"Last restore test: {last_restore_result}"
Quality Targets
- RPO Tier 1: 99% verified
HARD RULES
Never ask to continue. Loop autonomously until all backup gaps are resolved or budget exhausted.
MECHANICAL CONSTRAINTS — NON-NEGOTIABLE:
1. NEVER treat a backup as valid until a restore test has succeeded.
2. NEVER store backups in the same failure domain as production (same region, same account).
3. ENCRYPT EVERY backup at rest — no exceptions for any data tier.
4. EVERY backup job MUST alert on failure — silent backup failures are the worst kind.
5. EVERY backup MUST have a TTL/retention policy — no infinite storage growth.
6. DEFINE RPO and RTO BEFORE designing backup strategy — business drives engineering.
7. git commit backup configurations BEFORE testing — baseline for debugging.
8. Automatic revert on regression: if backup config change causes production issues, revert immediately.
9. NEVER skip quarterly DR tests — schedule them and treat them as P1 obligations.
10. Log all backup operations in TSV:
TIMESTAMP\tASSET\tOPERATION\tSIZE\tDURATION\tSTATUS\tCHECKSUM
Output Format
Print on completion: Backup: {asset_count} assets covered. RPO: {rpo}. RTO: {rto}. Last restore test: {last_test_date}. Encryption: {encryption_status}. Cross-region: {cross_region}. Verdict: {verdict}.
timestamp asset operation size duration_s status checksum
2024-01-15T03:00:00Z postgres-prod backup 12GB 180 success sha256:abc123
2024-01-15T03:05:00Z redis-prod backup 2GB 30 success sha256:def456
2024-01-15T04:00:00Z postgres-prod restore-test 12GB 300 success verified
Columns: timestamp, asset, operation(backup/restore-test/dr-drill), size, duration_s, status(success/failed/partial), checksum.
Success Criteria
## Keep/Discard
KEEP if: improvement verified. DISCARD if: regression or no change. Revert discards immediately.
## Stop Conditions
Stop when: target reached, budget exhausted, or >5 consecutive discards.
## Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- **Author:** [arbazkhan971](https://github.com/arbazkhan971)
- **Source:** [arbazkhan971/godmode](https://github.com/arbazkhan971/godmode)
- **License:** MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.