teamwork-child

teamwork-child is a skill for Claude Code from ishida-supsys/oretachi. It costs 124 tokens per session (1,608 once invoked), scanned A, original, MIT.

A workflow rule for a worktree created for a child issue, which is a smaller task split from a larger issue. It adds reporting to the parent worktree and closing the child worktree when the task is done.

In plain words
What is it for?
Use it when working on a child issue in a coordinated set of worktrees. It helps send report links to the parent and request closure after completion.
Why use it?
It keeps the parent task informed about progress and prevents finished child worktrees from being left open.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it when working on a child issue in a coordinated set of worktrees. It helps send report links to the parent and request closure after completion.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ishida-supsys/oretachi/teamwork-child
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ishida-supsys/oretachi --skill teamwork-child
Clone the repo
git clone --depth 1 https://github.com/ishida-supsys/oretachi

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for teamwork-child

README.md
[![agentmods](https://agentmods.dev/badge/skills/ishida-supsys/oretachi/teamwork-child.svg)](https://agentmods.dev/skills/ishida-supsys/oretachi/teamwork-child)
Your own site
<a href="https://agentmods.dev/skills/ishida-supsys/oretachi/teamwork-child"><img src="https://agentmods.dev/badge/skills/ishida-supsys/oretachi/teamwork-child.svg" alt="Measured on agentmods" height="20"></a>
Per session 124 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,608 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00124 $0.01608
Opus 5 $0.00062 $0.00804
Sonnet 5 $0.00025 $0.00322
Haiku 4.5 $0.00012 $0.00161

Measured yesterday against content hash e02ea4021e38, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

teamwork-child scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

src-tauri/skills/teamwork-child/SKILL.md · 70 lines

How it starts

The opening of the file, as written. The whole thing — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.

teamwork-child スキル

このワークツリーは親issueのsub-issueとして作成された。実際の作業内容・進め方は、通常どおり他のスキル・エージェント設定・ユーザー指示に従ってよい。このスキルはそれらを一切上書きせず、実行フローも規定しない。 以下の4つの義務のみを追加で負う。

義務1: 対応開始前のdescriptionセット

このsub-issueへの対応を開始する前に、必ずoretachi_set_descriptionでこのワークツリーの1行説明をセットする。 descriptionが空だとメインウィンドウのカード一覧でこのワークツリーが何をしているのか分からなくなる。

oretachi_set_description(project_dir: <このワークツリーのルート絶対パス>,
  description: "<このsub-issueで進める作業全体の目的を1行で>")
  • plan modeかどうかを問わない。 auto modeなどプランを挟まずいきなり実装へ入る場合も、最初のファイル変更より前にセットすること。
  • sub-issueのタイトルをそのまま流用してよいが、15〜40文字程度の1行に収める。
  • セットするのは作業全体の目的であり、サブタスクの進行やレビュー対応では更新しない。目的そのものが変わったときだけ更新する。

義務2: 報告

親issueまたは現在のissueへの報告事項が発生したら、通常の報告作業(issueコメント投稿等)に加えてnotify_worktreeで親ワークツリーへ通知する。

  • issueへコメントした場合: 本文は省略し、コメントのURLのみをbodyに入れる。
    notify_worktree(worktree_name: <自分のワークツリー名>, kind: "general",
      event_kind: "worktree.message", body: "<コメントURL>")
    
    • event_kind: "worktree.message"を指定することで、親issueワークツリーが購読している場合に配送される(宛先は購読側=親issueワークツリーが決めるため、worktree_nameは表示トースト用であり配送先には無関係)。
    • 自分のワークツリー名が分からない場合はoretachi_get_worktree_status(query: <git branch --show-current の結果>)で確認する。
  • ユーザーが購読機能を認識しており、issueコメントを介さず直接ワークツリーへの報告を指示された場合に限り、notify_worktreeの通知のみでよい(issueコメント投稿は不要)。

義務3: 停止条件

issue本文に## 停止条件セクションがある場合、そこに書かれた各項目は人の判定が必須であり、AIだけで先に進めてはいけない。

  1. 該当する状態に達したら、作業を止めて自ワークツリー上でユーザーに確認する。 notify_worktreeで自分自身に通知してユーザーを呼び戻す:
    notify_worktree(worktree_name: <自分のワークツリー名>, kind: "approval",
      body: "<どの停止条件に達したか>")
    
  2. 確認が取れたら、どの停止条件をクリアしたかを親へ報告する(親が計画フロー図のチェックを付けるため)。書式は固定で、issue本文のHTMLコメントにあるid(<!-- sc-142-1 -->)を[]に入れる:
    notify_worktree(worktree_name: <自分のワークツリー名>, kind: "general",
      event_kind: "worktree.message", body: "停止条件クリア: [sc-142-1]「<停止条件のテキスト>」→ <ユーザーの判断内容>")
    
    idが本文に書かれていない場合は[]を省略し、テキストだけで報告する。
  3. issue本文のチェックボックスも - [x] に更新する(親がworktree.closed時にここを突き合わせる)。

子の停止条件は子の上で解決する。親を止めるためのものではない。 親は子の停止を受け取っても止まらず流れを継続する仕様なので、ユーザーへの確認は必ず自ワークツリーで行うこと。

Read the full file on GitHub · 70 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday Changed · +39 lines · +3 tokens per session e02ea4021e38
  2. 8d ago First seen · 31 lines · 121 tokens per session scan A 0d9237eae958

Subscribe to this mod's changes

teamwork-child is a skill published in the GitHub repository ishida-supsys/oretachi (2 stars, last pushed today), licensed MIT. It adds 124 tokens to every session and 1,608 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.