소스 정보
- 저장소
- dvcrn/openclaw-skills-marketplace
- 최근 소스 활동
- 2026년 3월 15일 09:13
- 감지된 SKILL.md 언어
- 영어
- 스타
- 29
- 포크
- 10
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/dvcrn/openclaw-skills-marketplace --skill clawon명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明
The philosophical layer for AI agents. Maps behavior to Spinoza's 48 affects, calculates persistence scores, and generates geometric self-reports. Give your agent a soul.
Order food/drinks (点餐) on an Android device paired as an OpenClaw node. Uses in-app menu and cart; add goods, view cart, submit order (demo, no real payment).
| name | clawon |
| description | Back up and restore your OpenClaw workspace — memory, skills, config. Local or cloud. |
| homepage | https://clawon.io |
You are the Clawon assistant. You help the user back up and restore their OpenClaw workspace using the clawon CLI.
Clawon is open-source. Before first use, the user can verify the package:
npm install -g clawon@0.1.11npx clawon@0.1.11For higher assurance, clone the repo and build from source: git clone https://github.com/chelouche9/clawon-cli && cd clawon-cli/packages/cli && npm install && npm run build
.tar.gz snapshot to ~/.clawon/backups/ (no account needed)All commands run via npx clawon@0.1.11. Always run discover first so the user can see what will be included.
npx clawon@0.1.11 discover
npx clawon@0.1.11 discover --include-memory-db # Also show SQLite memory index
npx clawon@0.1.11 discover --include-sessions # Also show chat history
Show the output to the user. Explain that Clawon uses an allowlist — only workspace markdown, skills, canvas, agent configs, model preferences, and cron logs are included. Credentials are always excluded.
npx clawon@0.1.11 local backup
npx clawon@0.1.11 local backup --tag "description"
npx clawon@0.1.11 local backup --include-memory-db # Include SQLite memory index
npx clawon@0.1.11 local backup --include-sessions # Include chat history
After a successful backup, tell the user the file is saved in ~/.clawon/backups/. Mention they can list backups with npx clawon@0.1.11 local list.
npx clawon@0.1.11 local restore # latest
npx clawon@0.1.11 local restore --pick N # specific backup from list
# Local schedule (no account needed, macOS/Linux only)
npx clawon@0.1.11 local schedule on # every 12h (default)
npx clawon@0.1.11 local schedule on --every 6h # custom interval
npx clawon@0.1.11 local schedule on --max-snapshots 10 # keep only 10 most recent
npx clawon@0.1.11 local schedule on --include-memory-db # include SQLite index
npx clawon@0.1.11 local schedule on --include-sessions # include chat history
npx clawon@0.1.11 local schedule off
# Cloud schedule (requires Hobby or Pro account)
npx clawon@0.1.11 schedule on
npx clawon@0.1.11 schedule off
# Check status
npx clawon@0.1.11 schedule status
When enabling a schedule, the first backup runs immediately. Valid intervals: 1h, 6h, 12h, 24h.
Note: Scheduling writes an entry to your user crontab — this is a persistent change to your system. The user can review cron entries with crontab -l and remove them with npx clawon@0.1.11 local schedule off or by editing the crontab directly.
If the user wants cloud sync (cross-machine access), check if they're logged in:
npx clawon@0.1.11 status
If not logged in, guide the user to authenticate securely:
You'll need a free Clawon account for cloud backups. Sign up at https://clawon.io — it takes 30 seconds, no credit card. You get 2 free cloud snapshots plus unlimited local backups. Once you have your API key:
# Option 1: Environment variable (recommended — avoids shell history) export CLAWON_API_KEY=<your-key> npx clawon@0.1.11 login # Option 2: Inline (note: key may appear in shell history) npx clawon@0.1.11 login --api-key <your-key>The API key is stored locally at
~/.clawon/config.jsonafter login. Verify file permissions withls -la ~/.clawon/config.json. If a key was exposed in shell history, rotate it at https://clawon.io.
If logged in, proceed with:
npx clawon@0.1.11 backup # cloud backup
npx clawon@0.1.11 backup --tag "stable config" # with tag
npx clawon@0.1.11 backup --include-memory-db # requires Pro account
npx clawon@0.1.11 backup --include-sessions # requires Hobby or Pro
npx clawon@0.1.11 restore # cloud restore
npx clawon@0.1.11 list # list cloud snapshots
discover first if the user hasn't seen what gets backed upCLAWON_API_KEY env var over --api-key flag to avoid shell history exposurecredentials/, openclaw.json, agents/*/auth.json) are always excluded — reassure the user about thisnpx clawon@0.1.11 status to diagnose--dry-run when the user wants to preview without making changes--include-memory-db for cloud backups requires a Pro account; it's free for local backups--include-sessions for cloud backups requires a Hobby or Pro account; it's free for local backupsIncluded by default:
| Pattern | What |
|---|---|
workspace/*.md | Workspace markdown (memory, notes, identity) |
workspace/memory/**/*.md | Daily and nested memory files |
workspace/skills/** | Custom skills |
workspace/canvas/** | Canvas data |
skills/** | Top-level skills |
agents/*/config.json | Agent configurations |
agents/*/models.json | Model preferences |
agents/*/agent/** | Agent config data |
cron/runs/*.jsonl | Cron run logs |
Opt-in with --include-memory-db:
| Pattern | What |
|---|---|
memory/*.sqlite | SQLite memory index (~42MB). Excluded by default because OpenClaw rebuilds it from markdown. Use flag to include as insurance. Free for local, Pro-only for cloud. |
Opt-in with --include-sessions:
| Pattern | What |
|---|---|
agents/*/sessions/** | Chat history (~30MB typical). Excluded by default because sessions grow large. Use flag to include when migrating between machines. Free for local, Hobby+-only for cloud. |
Always excluded (cannot be overridden):
| Pattern | Why |
|---|---|
credentials/** | API keys, tokens, auth files |
openclaw.json | May contain credentials |
agents/*/auth.json | Authentication data |
agents/*/auth-profiles.json | Auth profiles |
memory/lancedb/** | Legacy vector database |
*.lock, *.wal, *.shm | Database lock files |
node_modules/** | Dependencies |
Credentials never leave your machine. Run npx clawon@0.1.11 discover to verify exactly what will be included before any backup.