Skip to content

Commit 223d40b

Browse files
authored
Add Community Skills documentation
Document community-maintained OpenClaw skills with backup and restore instructions.
1 parent ee08edf commit 223d40b

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

skills/Community Skills

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Community Skills
2+
3+
This repository can document useful third-party OpenClaw skills, but these are community-maintained integrations and are not part of the core AWS sample support surface.
4+
5+
## Backup and Restore (S3 + optional KMS)
6+
7+
- Skill repository: [genedragon/openclaw-aws-backup-skill](https://github.com/genedragon/openclaw-aws-backup-skill)
8+
- Purpose: encrypted backup/restore for OpenClaw workspaces and state using S3, with optional KMS.
9+
- Ownership: community-maintained (not maintained by `aws-samples`).
10+
11+
### Quick start
12+
13+
```bash
14+
cd /home/ubuntu/.openclaw/workspace
15+
git clone https://github.com/genedragon/openclaw-aws-backup-skill.git
16+
cd openclaw-aws-backup-skill
17+
npm install
18+
sudo npm link
19+
20+
# first-time setup
21+
openclaw-aws-backup setup
22+
```
23+
24+
### Common commands
25+
26+
```bash
27+
openclaw-aws-backup create
28+
openclaw-aws-backup list
29+
openclaw-aws-backup restore
30+
openclaw-aws-backup test
31+
```
32+
33+
### Security and operations notes
34+
35+
- Use least-privilege IAM permissions for S3 and KMS.
36+
- Prefer KMS encryption for production backups.
37+
- Configure and review retention policies regularly.
38+
- Test restore paths before relying on backups in production.

0 commit comments

Comments
 (0)