基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/GeorgeDoors888/GB-Power-Market-JJ --skill workspace-sync命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
超级简历 WonderCV 出品,3000 万用户信赖。简历分析、段落改写、JD 岗位匹配、自动匹配职位、PDF 导出、AI 求职导师(面试准备/薪资谈判/职业规划/多版本简历策略)。 触发条件:用户提供简历、要求简历点评/打分/反馈、希望改写某个简历部分、 希望将简历与岗位 JD 匹配、咨询求职建议或面试准备,或提到 CV/简历/求职。 不触发条件:用户讨论普通写作(非简历)、询问其他文档, 或讨论与求职和职业发展无关的话题。
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).
调用久吾智能体API进行文本或文件分析处理。支持两种调用方式:(1) 文本内容分析 - 传入name(智能体名称)、docno(文档编号)、content(文本内容);(2) 文件分析 - 传入name、docno和files(文件列表)进行智能评审。适用于合同评审、需求评审、文档审查等场景。当用户要求评审合同、分析条款、审查文档、需求评审、合同条款分析、或需要对文本和文件进行AI智能分析时触发。
| name | workspace-sync |
| description | Sync agent workspace with cloud storage (Dropbox, Google Drive, S3, etc.) using rclone. |
| metadata | {"openclaw":{"emoji":"☁️","requires":{"bins":"[Truncated]"}}} |
Sync the agent workspace with cloud storage. mode is required — choose mailbox (inbox/outbox, safest), mirror (remote->local), or bisync (bidirectional, advanced).
Use this skill when the user asks to:
| Mode | Direction | Description |
|---|---|---|
mailbox (recommended) | Push + inbox/outbox | Workspace pushes to cloud; _outbox sends files up to the agent's _inbox. Safest. |
mirror | Remote → Local | One-way: workspace mirrors down. Safe — local can never overwrite remote. |
bisync | Bidirectional | Two-way sync. Powerful but requires careful setup. |
Each sync cycle: (1) pushes workspace to cloud excluding _inbox/ and _outbox/, (2) drains cloud _outbox/ into workspace _inbox/ via rclone move (deletes from cloud after transfer). On startup, bootstraps cloud:_outbox and local _inbox/.
Users drop files in the local _outbox/ folder (created by the cloud provider's desktop app). Files arrive in the agent's _inbox/. The agent or a skill processes them from there.
With notifyOnInbox: true, the agent is woken when files land in _inbox. A system event lists the new filenames so the agent can process them. Off by default — each notification costs an agent turn.
With ingest: true, a local inbox/ folder syncs one-way up to the remote workspace (additive only). For a more robust pattern, use mailbox mode instead.
openclaw workspace-sync status
Shows: provider, mode, last sync time, sync count, error count, running state.
openclaw workspace-sync sync
In mailbox mode: pushes workspace and drains _outbox. In mirror mode: pulls latest from remote. In bisync mode: runs bidirectional sync.
openclaw workspace-sync sync --dry-run
openclaw workspace-sync sync --direction pull # remote -> local
openclaw workspace-sync sync --direction push # local -> remote
openclaw workspace-sync sync --resync
WARNING: --resync is destructive (bisync only). It copies ALL files from both sides to make them identical — deleted files come back, and it transfers everything. Only use when you explicitly need to re-establish the bisync baseline. The plugin never auto-resyncs.
openclaw workspace-sync list
Lists files in the configured cloud storage path.
Workspace sync is configured via the plugin entry in openclaw.json. The preferred format uses nested sync and backup blocks (flat config at root level is also supported):
{
"plugins": {
"entries": {
"openclaw-workspace-sync": {
"enabled": true,
"config": {
"sync": {
"provider": "dropbox",
"mode": "mailbox",
"remotePath": "",
"localPath": "/",
"interval": 60,
"timeout": 1800,
"onSessionStart": true,
"onSessionEnd": true,
"exclude":
These keys live under sync in the nested format, or at the config root in flat format.
| Key | Default | Description |
|---|---|---|
provider | "off" | dropbox, gdrive, onedrive, s3, custom, or off |
mode | required | mailbox (inbox/outbox, safest), mirror (remote->local), or bisync (bidirectional) |
ingest | false | Enable local inbox for sending files to the agent (mirror mode only) |
ingestPath | "inbox" | Local subfolder name for ingestion |
notifyOnInbox | false | Wake the agent when files arrive in _inbox (mailbox mode). Costs credits per notification. |
remotePath | "openclaw-share" | Folder name in cloud storage |
localPath | "shared" | Subfolder within workspace to sync |
interval | 0 | Background sync interval in seconds (0 = manual only, min 60) |
timeout | 1800 | Max seconds for a single sync operation (min 60) |
onSessionStart | false | Sync when an agent session begins |
onSessionEnd | false | Sync when an agent session ends |
conflictResolve | "newer" | newer, local, or remote (bisync only) |
exclude | **/.DS_Store | Glob patterns to exclude from sync |
When configured, sync runs automatically:
_outbox. Streams never overlap.--resync is needed and it copies everything.mailbox or mirror mode instead.--recover and --resilient flags to resume after interruptions (bisync only)Run the setup wizard:
openclaw workspace-sync setup
Bisync state was lost. Before running --resync, verify both sides are correct:
openclaw workspace-sync sync --resync
Increase the timeout in your config (default is 1800 seconds / 30 min):
{ "timeout": 3600 }
rclone lsd cloud:/
rclone ls cloud:openclaw-share
mode is required — set mailbox (inbox/outbox, safest), mirror (remote→local), or bisync (bidirectional)_outbox on cloud and _inbox on workspace at startup**/.DS_Store excluded by default — add your own excludes in configAdd a backup block to the plugin config for automated encrypted snapshots to your own cloud storage (S3, R2, B2, etc.). Backups stream directly (tar | rclone rcat) — no local temp files, so they work even when disk space is tight.
openclaw workspace-sync backup now # Create a snapshot immediately
openclaw workspace-sync backup list # List available snapshots
openclaw workspace-sync backup restore # Restore latest snapshot
openclaw workspace-sync backup status # Check backup service status
{
"backup": {
"enabled": true,
"provider": "s3",
"bucket": "my-backups",
"prefix": "agent-name/",
"interval": 86400,
"encrypt": true,
"passphrase": "${BACKUP_PASSPHRASE}",
"include": ["workspace", "config", "cron", "memory"],
"retain": { "daily": 7, "weekly": 4 }
}
}
| Key | Default | Description |
|---|---|---|
enabled | false | Enable scheduled backups |
provider | parent provider | Cloud provider (can differ from sync provider) |
bucket | — | S3/R2 bucket name |
prefix | "" | Path prefix within the bucket |
interval | 86400 | Backup interval in seconds (clamped to min 300) |
encrypt | false | AES-256 client-side encryption |
passphrase | — | Encryption passphrase (use env var) |
include | ["workspace", "config", "cron", "memory"] | What to back up |
retain | 7 | Keep N snapshots, or { daily: N, weekly: N } |