スキル一覧に戻る
Ramblurr

coding-agents

by Ramblurr

remote dev environment for agents

0🍴 1📅 2026年1月12日
GitHubで見るManusで実行

SKILL.md


name: coding-agents description: Spawn and control external coding agents (Claude Code, Codex, OpenCode, Pi) for delegating tasks. Use when (1) user asks to run another coding agent, (2) delegating subtasks to a different AI tool, (3) running multiple agents in parallel on separate issues, (4) spawning an agent in an isolated environment or worktree, (5) user mentions "codex", "opencode", "pi agent", or running "another claude".

Coding Agents

Orchestrate external coding agents programmatically. Use this when you want to delegate tasks to other AI coding tools.

Prefer interactive mode

Interactive sessions via tmux should be the default for most tasks. Background mode is only appropriate for the simplest tasks that require very few commands or edits (e.g., "count the files in src/", "what version of node is this project using?").

Why interactive is better:

  • You can observe progress and catch issues early
  • You can respond if the agent asks clarifying questions
  • You can interrupt if the agent goes off track
  • Agents often need multiple turns to complete real work
  • Debugging is much easier when you can see what happened

Use background mode only when:

  • The task is trivial (one or two simple commands)
  • You are confident the agent will complete without interaction
  • You are running many parallel tasks and cannot watch them all

Interactive mode requires the tmux Skill

For interactive sessions, you MUST use the tmux Skill. The tmux Skill contains:

  • "Orchestrating Claude Code sub-agents" recipe - the primary pattern for this use case
  • Socket conventions and session management
  • Sending input, monitoring output, cleanup

Read and follow the tmux Skill for all interactive agent orchestration.

For parallel work on multiple issues, use the git worktrees Skill to create isolated branches.

Available agents

Read the relevant reference file for the agent you need right now:

Each reference includes: invocation, key flags, and completion detection.

Rules

  1. Respect tool choice - if user asks for Codex, use Codex. Do not offer to do the task yourself.
  2. Be patient - do not kill sessions because they seem slow. Agents take time.
  3. Monitor without interfering - check progress but let the agent work.
  4. Use appropriate flags - permission-bypassing flags for unattended/background work only.
  5. Isolate work - use worktrees or temp directories to avoid conflicts with your current work.
  6. Clean up - kill sessions and remove worktrees when done, unless the user asked you not to.

スコア

総合スコア

50/100

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

SKILL.md

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

+20
LICENSE

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

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

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

0/5
Issue管理

オープンIssueが50未満

+5
言語

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

+5
タグ

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

0/5

レビュー

💬

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