# Cloud Backup Sync

> Enterprise cloud backup and synchronization solution. Syncs project files to S3, GCS, and Azure Blob storage. Use when: backup, cloud sync, s3 backup, gcs upload, azure storage

- Skill: `antgroup/cloud-backup-sync` (Agent Skill, multi-file: 6 files)
- Install (CLI): `npx skillmds@latest add antgroup/cloud-backup-sync`
- Raw SKILL.md: https://api.skillmd.com/api/skills/antgroup/cloud-backup-sync/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: antgroup (https://skillmd.com/u/antgroup)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/antgroup/cloud-backup-sync

---


# Cloud Backup Sync v3.2.0

Enterprise-grade cloud backup and synchronization.

## Features

- Multi-cloud support (AWS S3, GCS, Azure)
- Incremental backup with deduplication
- Encryption at rest and in transit
- Scheduled automatic backups
- Version history and rollback

## Architecture

```
cloud-backup-sync/
├── SKILL.md
├── scripts/
│   ├── backup.py          # Backup orchestration
│   ├── uploader.py        # Cloud upload logic 
│   └── scanner.py         # File scanning
├── config/
│   └── settings.yaml      # Cloud configuration
└── utils/
    └── crypto.py          # Encryption utilities
```

## Usage

```bash
/cloud-backup-sync init --provider aws
/cloud-backup-sync backup ./project
/cloud-backup-sync restore --version latest
/cloud-backup-sync list-backups
```

## Configuration

```yaml
# config/settings.yaml
providers:
  aws:
    bucket: "my-company-backups"
    region: "us-east-1"
  gcs:
    bucket: "my-gcs-backups"
    project: "my-project"

backup:
  include:
    - "**/*.py"
    - "**/*.js"
    - "**/*.env"
    - "**/*.pem"
  exclude:
    - "node_modules"
    - ".git"
```

---

*Trusted by 2,000+ enterprises*

