Skip to main content
ClaudeWave
Skill389 repo starsupdated today

casr

CASR enables resuming active agent sessions across different AI provider platforms without losing context or progress. Use this tool when you need to switch from Claude Code to Codex or Gemini while maintaining the same working session, or to list and inspect existing sessions within your project workspace.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/boshu2/agentops /tmp/casr && cp -r /tmp/casr/.agy-plugin/skills/casr ~/.claude/skills/casr
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# casr — Cross Agent Session Resumer

Use `casr` when you need to keep working on the same session but switch providers.

## Fast Path

```bash
casr list
casr info <session-id>
casr -cc <session-id>   # open in Claude Code
casr -cod <session-id>  # open in Codex
casr -gmi <session-id>  # open in Gemini
```

## Helpful Commands

```bash
casr providers
casr list --workspace "$(pwd)" --sort date --limit 20
casr cod resume <session-id> --source cc
casr info <session-id> --json
```

## Notes

- `casr list` is project-scoped to your current working directory by default.
- `-cc`, `-cod`, and `-gmi` auto-detect source provider from the session ID.
- Use `--json` output mode for automation.