From research-skills
Consult the other coding agent — Claude Code calls Codex, Codex calls Claude Code. Use for second opinions, code review, consensus, or dispatching tasks to the other agent. Two modes: one-shot for quick questions, tmux session for extended collaboration. Triggers: "confer", "ask claude", "ask codex", "second opinion", "get a review from", "use claude for", "use codex for", "dispatch to".
npx claudepluginhub cailmdaley/skills --plugin research-skillsThis skill uses the workspace's default tool permissions.
Call the other agent. If you're Claude Code, call Codex. If you're Codex, call Claude Code.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Call the other agent. If you're Claude Code, call Codex. If you're Codex, call Claude Code.
For quick questions, reviews, or dispatched tasks.
Claude Code → Codex:
codex exec --dangerously-bypass-approvals-and-sandbox "<prompt>"
Codex → Claude Code:
claude -p --dangerously-skip-permissions "<prompt>"
Both return output to stdout. Use this for:
For extended collaboration where back-and-forth is needed.
tmux new-session -d -s confer -c "$(pwd)"
Send a message (two steps — Enter must be separate):
tmux send-keys -t confer "<command or prompt>" ""
tmux send-keys -t confer Enter
Read the response:
tmux capture-pane -t confer -p -S -50
Start the other agent in the session, then send follow-up prompts with send-keys. This mode suits open-ended collaboration: iterating on a design, working through a problem together, or anything that needs multiple exchanges.
One-shot — You have a clear question or task. Fire and forget.
Tmux — You need a conversation. Multiple rounds, evolving context, genuine collaboration.