Skip to main content
ClaudeWave
Install in Claude Code
Copy
git clone --depth 1 https://github.com/hoangsonww/Claude-Code-Agent-Monitor /tmp/remote-collection && cp -r /tmp/remote-collection/plugins/ccam-integrations/skills/remote-collection ~/.claude/skills/remote-collection
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# Remote Collection

1. List current sources with `ccam remote-sources`.
2. Validate the host through the user's existing SSH configuration. CCAM stores
   no passwords or private keys.
3. Add a source with `remote_home` and `remote_codex_home` only when they differ
   from the provider defaults.
4. Test before syncing: `ccam remote-sources test <id>`.
5. Sync one source or all sources with `ccam remote-sources sync [id]`.
6. Use `ccam remote-sources update <id> --file patch.json --yes` for edits.
7. Removal retains imported sessions by default. Purging them requires:

```bash
ccam remote-sources rm <id> --purge \
  --confirm PURGE_REMOTE_SOURCE_DATA
```

Always state whether imported data will be kept or deleted before removal.