Skip to main content
ClaudeWave
Skill389 estrellas del repoactualizado 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.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/boshu2/agentops /tmp/casr && cp -r /tmp/casr/.agy-plugin/skills/casr ~/.claude/skills/casr
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

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.