
Zedra
- Updated June 10, 2026
- tanlethanh/zedra-plugin
zedra is a Claude Code skill in the AI & Agent Building category. Hand off the current agent session to Zedra mobile and print a pairing QR with /zedra-start
Key points
- zedra
- AI & Agent Building
- AI-coding skill
Zedra by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add tanlethanh/zedra-plugin/plugin install zedra@zedraAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | June 10, 2026 |
|---|---|
| Repository | tanlethanh/zedra-plugin ↗ |
What it does
Hand off the current agent session to Zedra mobile and print a pairing QR with /zedra-start
README.md
zedra plugin
Agent plugin for starting and managing the Zedra Host daemon. Works with Claude Code, Codex, OpenCode, and any tool supporting the Agent Skills standard.
Install
Claude Code
# Local development
claude --plugin-dir ./plugins/zedra
# Or install from marketplace
# (inside a Claude Code session)
/plugin marketplace add tanlethanh/zedra
/plugin install zedra@zedra
/reload-plugins
Codex
codex plugin marketplace add tanlethanh/zedra-plugin
codex plugin add zedra@zedra
Start a new Codex thread, then ask Codex to use @zedra:zedra-start.
For local development, add this repository as the marketplace:
codex plugin marketplace add ../zedra-plugin
codex plugin add zedra@zedra
OpenCode
Copy or symlink the plugin directory so the tool discovers AGENTS.md and
skills/ at the project root or in a recognized plugins path:
opencode --add-dir ./plugins/zedra
Usage
Plugin skills can be run directly in Claude Code:
| Command | What it does |
|---|---|
/zedra-start |
Hand off the current agent session to mobile and print a pairing QR |
Skills
All skills live in skills/ as SKILL.md files following the Agent Skills standard:
plugins/zedra/
├── .claude-plugin/
│ └── plugin.json # Claude Code manifest
├── .codex-plugin/
│ └── plugin.json # Codex manifest
├── AGENTS.md # Codex/OpenCode discovery
├── skills/
│ └── zedra-start/
│ ├── SKILL.md # Skill instructions
│ └── scripts/
│ └── zedra-start.sh # Pair + handoff workflow
└── README.md