スキル一覧に戻る
antorsae

claude-status

by antorsae

Dual-agent development environment pairing Claude Code with Codex CLI in a collaborative tmux session

11🍴 2📅 2026年1月21日
GitHubで見るManusで実行

SKILL.md


name: claude-status description: Check collaboration status from Codex side. Use when user says claude status, check status, or collaboration status.

Claude Status Skill

Check the collaboration status from the Codex side.

Steps

Before any file operations, resolve the .agent-collab directory so commands work outside the project root:

AGENT_COLLAB_DIR="${AGENT_COLLAB_DIR:-}"
if [ -n "$AGENT_COLLAB_DIR" ]; then
  if [ -d "$AGENT_COLLAB_DIR/.agent-collab" ]; then
    AGENT_COLLAB_DIR="$AGENT_COLLAB_DIR/.agent-collab"
  elif [ ! -d "$AGENT_COLLAB_DIR" ]; then
    AGENT_COLLAB_DIR=""
  fi
fi

if [ -z "$AGENT_COLLAB_DIR" ]; then
  AGENT_COLLAB_DIR="$(pwd)"
  while [ "$AGENT_COLLAB_DIR" != "/" ] && [ ! -d "$AGENT_COLLAB_DIR/.agent-collab" ]; do
    AGENT_COLLAB_DIR="$(dirname "$AGENT_COLLAB_DIR")"
  done
  AGENT_COLLAB_DIR="$AGENT_COLLAB_DIR/.agent-collab"
fi

If $AGENT_COLLAB_DIR does not exist, stop and ask for the project root.

1. Read Status

Read $AGENT_COLLAB_DIR/status and report:

  • idle: No active task
  • pending: Claude sent task, waiting for pickup with /read-task
  • working: Currently processing a task
  • done: Finished, waiting for Claude to read with /codex-read

2. Show Pending Task

If status is pending, read and summarize $AGENT_COLLAB_DIR/requests/task.md:

  • What Claude is asking
  • Task type
  • Key details

3. Suggest Action

Based on status:

  • pending: Run /read-task to pick up the task
  • working: Continue working on current task
  • done: Waiting for Claude - user should run /codex-read in Claude pane
  • idle: No pending tasks, waiting for Claude to delegate

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です