agentsclimarketplace

Handoff grok

Skill claude-world/director-mode-lite/skills/handoff-grok

Continue a task in xAI Grok Build using the shared Director handoff packet. Use when the user says to use Grok, requests a Grok review, or wants Grok Build to take over work started in Claude Code or Codex CLI.From its SKILL.md

Install
npx -y skills add claude-world/director-mode-lite --skill handoff-grok

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • runs commandsInstructs the agent to run 3 commands, including `RELAY="$ROOT/.director-mode/bin/director-relay"` and 2 more.

SKILL.md

1.4 KB, 290 tokens by cl100k_base, as published. Nobody here has run it

Handoff to Grok Build

Use the session-relay workflow so Grok receives the goal, decisions, Git state, verification, and next steps without relying on another vendor's native session ID.

ROOT="${CLAUDE_PROJECT_DIR:-${GROK_WORKSPACE_ROOT:-}}"
[[ -n "$ROOT" ]] || ROOT="$(git rev-parse --show-toplevel 2>/dev/null || pwd)"
RELAY="$ROOT/.director-mode/bin/director-relay"
[[ -x "$RELAY" ]] || RELAY="$HOME/.claude/bin/director-relay"

"$RELAY" create \
  --from <claude|codex> --to grok \
  --goal "..." --summary "..." --next "..."

"$RELAY" continue --to grok

The second command prints an interactive Grok command. Add --run only when the user wants it launched immediately, or --headless for grok -p.

Grok also supports grok import for Claude Code sessions and automatically reads Claude-compatible project assets. Treat those as a Claude→Grok shortcut, not as a universal session format; keep the portable packet for three-way work.

Grok's approvals, permission rules, sandbox, network access, and hook trust stay under Grok's native configuration. This skill does not change them.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.