AugmentClaude

CLI Backup Sync

Backup and restore OmniRoute data, manage snapshots, and sync to cloud storage.

Installation

  1. Make sure Claude is on your device and in your terminal.

    Skills load from ~/.claude/skills/ when Claude Code starts up — so you need it on your machine first. If you don't have it yet, install it once with the command below, then run claude in any terminal to verify.

    One-time setup
    npm i -g @anthropic-ai/claude-code

    Already have it? Skip ahead.

  2. Paste into Claude Code or into your terminal.

    This copies the whole skill folder into ~/.claude/skills/cli-backup-sync-diegosouzapw/ — the SKILL.md plus any scripts, reference docs, or templates the skill ships with. Safe default: works for every skill.

    Faster alternative (instruction-only skills)

    Skips the clone and grabs only the SKILL.md file. Don't use this if the skill ships Python scripts, reference markdowns, or asset templates — they won't be downloaded and the skill will fail when it tries to load them.

    Quick install (SKILL.md only)
    Sign up to copy
  3. Restart Claude Code.

    Quit and reopen Claude Code (or any other agent that loads from ~/.claude/skills/). New skills are picked up on startup.

  4. Just ask Claude.

    Skills auto-activate when your request matches the skill's description — no slash command needed. Trigger phrases live in the skill's own frontmatter; you can read them in the “What this skill does” section above.

Prefer to read the source first? Open on GitHub.

When Claude uses it

Backup and restore OmniRoute data from the CLI. Trigger incremental snapshots, sync to cloud storage, manage backup schedules, and restore from archive files.

What this skill does

<!-- generated by src/lib/agentSkills/generator.ts; manual edits will be overwritten -->

Overview

Backup and restore OmniRoute data from the CLI. Trigger incremental snapshots, sync to cloud storage, manage backup schedules, and restore from archive files.

Quick install

npm install -g omniroute   # or: npx omniroute
omniroute --version

Subcommands

backup

Example:

omniroute backup

backup create

Flags:

  • --name <name>
  • --cloud
  • --encrypt
  • --key-file <path>
  • --exclude <pattern>
  • --retention <n>

Example:

omniroute backup create

backup auto

Example:

omniroute backup auto

backup enable

Flags:

  • --cron <expr>
  • --cloud
  • --encrypt
  • --retention <n>

Example:

omniroute backup enable

backup disable

Example:

omniroute backup disable

backup status

Flags:

  • --name <name>
  • --cloud
  • --encrypt
  • --key-file <path>
  • --exclude <pattern>
  • --retention <n>

Example:

omniroute backup status

backup restore [backupId]

Flags:

  • --list
  • --yes

Example:

omniroute backup restore [backupId]

task

Example:

omniroute task

cloud create

Flags:

  • --title <t>
  • --prompt <p>
  • --prompt-file <path>
  • --repo <url>
  • --branch <b>
  • --metadata <json>

Example:

omniroute cloud create

cloud list

Flags:

  • --status <s>
  • --limit <n>

Example:

omniroute cloud list

cloud get <taskId>

Example:

omniroute cloud get <taskId>

cloud status <taskId>

Example:

omniroute cloud status <taskId>

cloud cancel <taskId>

Flags:

  • --yes

Example:

omniroute cloud cancel <taskId>

cloud approve <taskId>

Example:

omniroute cloud approve <taskId>

cloud message <taskId> <message>

Example:

omniroute cloud message <taskId> <message>

cloud sources <taskId>

Example:

omniroute cloud sources <taskId>

cloud cloud

Example:

omniroute cloud cloud

cloud agents

Example:

omniroute cloud agents

cloud auth

Flags:

  • --no-browser
  • --timeout <ms>

Example:

omniroute cloud auth

sync

Example:

omniroute sync

sync push

Flags:

  • --target <t>
  • --bundle <list>
  • --dry-run

Example:

omniroute sync push

sync pull

Flags:

  • --source <s>
  • --merge
  • --replace
  • --dry-run

Example:

omniroute sync pull

sync diff

Flags:

  • --source <s>
  • --target <t>

Example:

omniroute sync diff

sync bundle <outPath>

Flags:

  • --include <list>

Example:

omniroute sync bundle <outPath>

sync import <bundlePath>

Flags:

  • --dry-run

Example:

omniroute sync import <bundlePath>

sync initialize

Flags:

  • --from-cloud

Example:

omniroute sync initialize

sync tokens

Example:

omniroute sync tokens

sync list

Example:

omniroute sync list

sync create

Flags:

  • --name <n>
  • --scope <s>
  • --ttl <duration>

Example:

omniroute sync create

sync revoke <id>

Flags:

  • --yes

Example:

omniroute sync revoke <id>

sync status

Example:

omniroute sync status

sync resolve

Example:

omniroute sync resolve

Related skills