Agent Skillsxuiltul/animaworks › subordinate-management

subordinate-management

GitHub

Anima超级管理者用于管理下属代理的工具集,支持启停、模型切换、重启、任务委派及状态审计。适用于组织架构监控、进程管理及任务分发场景。

templates/ja/common_skills/subordinate-management/SKILL.md xuiltul/animaworks

Trigger Scenarios

需要暂停或恢复下属代理进程时 更改下属代理的LLM模型配置时 查看组织仪表盘或进行代理审计时 向直属下级委派任务并追踪进度时

Install

npx skills add xuiltul/animaworks --skill subordinate-management -g -y
More Options

Non-standard path

npx skills add https://github.com/xuiltul/animaworks/tree/main/templates/ja/common_skills/subordinate-management -g -y

Use without installing

npx skills use xuiltul/animaworks@subordinate-management

指定 Agent (Claude Code)

npx skills add xuiltul/animaworks --skill subordinate-management -a claude-code -g -y

安装 repo 全部 skill

npx skills add xuiltul/animaworks --all -g -y

预览 repo 内 skill

npx skills add xuiltul/animaworks --list

SKILL.md

Frontmatter
{
    "name": "subordinate-management",
    "description": "部下Animaのスーパーバイザー操作。休止・復帰・モデル変更・再起動・タスク委譲・状態読取・監査を行う。 Use when: 部下の無効化・再有効化、メインまたはBGモデル変更、プロセス再起動、delegate_task、組織ダッシュボード確認が必要なとき。"
}

スキル: 部下管理(スーパーバイザーツール)

部下を持つAnimaに自動で有効化されるスーパーバイザーツール群。全配下(子・孫・曾孫…)の休止・復帰・モデル変更・バックグラウンドモデル変更・再起動・状態確認、直属部下へのタスク委譲と進捗追跡を行う。

使えるツール

全配下(子・孫・曾孫…すべて)に操作可能

ツール 用途
disable_subordinate 配下を休止(status.json enabled: false → プロセス停止 + 自動復帰防止)
enable_subordinate 休止中の配下を復帰
set_subordinate_model 配下のLLMモデル(メイン)を変更(status.json 更新。反映には restart_subordinate が必要)
set_subordinate_background_model 配下のバックグラウンドモデル(heartbeat/cron用)を変更(status.json 更新。反映には restart_subordinate が必要。空文字でクリア)
restart_subordinate 配下プロセスを再起動(status.json restart_requested フラグ。Reconciliation が約30秒以内に再起動)
delegate_task 直属部下にタスクを委譲(キュー追加 + DM送信 + 自分側追跡エントリ作成)
org_dashboard 配下全体のプロセス状態・最終アクティビティ・現在タスク・タスク数をツリー表示
ping_subordinate 配下の生存確認(name 省略で全員一括、指定で単一)
read_subordinate_state 配下の current_state.md を読み取り
audit_subordinate 配下の直近活動を包括監査(活動サマリー・タスク状況・エラー頻度・ツール使用統計・通信パターン)

委譲タスク追跡

ツール 用途
task_tracker delegate_task で委譲したタスクの進捗を部下側キューから追跡(status: all / active / completed。デフォルト: active)

自動同期(sync_delegated: ハートビート完了後、フレームワークが部下のタスクキューを検査し、完了・失敗した委譲タスクを検出すると、上司側の追跡エントリを自動更新(done / failed)する。アーカイブ済みタスクも検索対象。手動で task_tracker を呼ばなくても、次回ハートビート周辺で状態が揃いやすい。

重要: disable_subordinate と send_message の違い

  • disable_subordinate: status.json を enabled: false に変更。Reconciliation が自動復帰させない。こちらを使うこと
  • send_message で「休んで」と伝えるだけではプロセスは停止しない。メッセージを送っても Reconciliation が再起動する

使い方

休止・復帰

複数人を休止する場合は1人ずつ disable_subordinate を呼ぶ:

disable_subordinate(name="aoi", reason="業務縮小のため一時休止")
disable_subordinate(name="taro", reason="業務縮小のため一時休止")
enable_subordinate(name="aoi")

モデル変更と再起動

モデル変更は status.json に保存されるが、実行中プロセスへの反映には restart_subordinate が必要:

set_subordinate_model(name="aoi", model="claude-sonnet-4-6", reason="負荷分散のため")
restart_subordinate(name="aoi", reason="モデル変更を反映")

バックグラウンドモデル(heartbeat/cron 用)を変更する場合:

set_subordinate_background_model(name="aoi", model="claude-sonnet-4-6", reason="heartbeat負荷軽減")
restart_subordinate(name="aoi", reason="バックグラウンドモデル変更を反映")

バックグラウンドモデルをクリアしてメインモデルに戻す場合:

set_subordinate_background_model(name="aoi", model="", reason="メインモデルに統一")
restart_subordinate(name="aoi")

状態確認・監査

org_dashboard()                         # 配下全体のダッシュボード
ping_subordinate()                      # 全配下の生存確認
ping_subordinate(name="aoi")            # 単一の生存確認
read_subordinate_state(name="aoi")      # 現在タスク・保留タスクの内容
audit_subordinate(name="aoi")           # 直近1日の包括監査レポート
audit_subordinate(name="aoi", days=7)   # 直近7日間の監査(days は 1〜30)
audit_subordinate(since="09:00")        # 全配下の今日9時以降の監査
audit_subordinate(name="aoi", since="13:00")  # aoi の今日13時以降

CLI からも実行可能(S/C/D/G-mode の Bash 経由で使う場合に便利):

animaworks anima audit aoi              # 直近1日の監査
animaworks anima audit aoi --days 7     # 直近7日間の監査
animaworks anima audit --all --since 09:00  # 全Anima、今日9時以降

タスク委譲

delegate_task(name="aoi", instruction="週次レポートをまとめて", deadline="1d", summary="週次レポート作成")
# name, instruction, deadline は必須。summary は省略可(instruction の先頭100文字が使われる)
# workspace を指定すると委譲先がそのワークスペースで作業する(workspace-manager スキル参照)
task_tracker(status="active")      # 委譲タスクの進捗確認(status: all / active / completed)

部下へのワークスペース割り当て(主な作業ディレクトリの指定)は workspace-manager スキルを参照すること。

権限

  • 全配下(子・孫・曾孫…再帰): 状態確認・管理ツールが使用可能
  • 直属部下のみ: delegate_task(タスク委譲)
  • 自分自身の操作は不可

Version History

  • 140e43b Current 2026-07-25 09:13

Same Skill Collection

.claude/skills/pixel-asset-gen/SKILL.md
templates/en/common_skills/agent-browser/SKILL.md
templates/en/common_skills/animaworks-guide/SKILL.md
templates/en/common_skills/aws-collector-tool/SKILL.md
templates/en/common_skills/chatwork-tool/SKILL.md
templates/en/common_skills/cron-management/SKILL.md
templates/en/common_skills/discord-tool/SKILL.md
templates/en/common_skills/github-tool/SKILL.md
templates/en/common_skills/gmail-tool/SKILL.md
templates/en/common_skills/google-calendar-tool/SKILL.md
templates/en/common_skills/google-tasks-tool/SKILL.md
templates/en/common_skills/image-gen-tool/SKILL.md
templates/en/common_skills/image-posting/SKILL.md
templates/en/common_skills/local-llm-tool/SKILL.md
templates/en/common_skills/machine-tool/SKILL.md
templates/en/common_skills/notion-tool/SKILL.md
templates/en/common_skills/skill-creator/SKILL.md
templates/en/common_skills/slack-tool/SKILL.md
templates/en/common_skills/subagent-cli/SKILL.md
templates/en/common_skills/subordinate-management/SKILL.md
templates/en/common_skills/tool-creator/SKILL.md
templates/en/common_skills/transcribe-tool/SKILL.md
templates/en/common_skills/web-search-tool/SKILL.md
templates/en/common_skills/workspace-manager/SKILL.md
templates/en/common_skills/x-search-tool/SKILL.md
templates/en/common_skills/zoom-meeting-scribe/SKILL.md
templates/ja/common_skills/agent-browser/SKILL.md
templates/ja/common_skills/animaworks-guide/SKILL.md
templates/ja/common_skills/aws-collector-tool/SKILL.md
templates/ja/common_skills/chatwork-tool/SKILL.md
templates/ja/common_skills/cron-management/SKILL.md
templates/ja/common_skills/discord-tool/SKILL.md
templates/ja/common_skills/github-tool/SKILL.md
templates/ja/common_skills/gmail-tool/SKILL.md
templates/ja/common_skills/google-calendar-tool/SKILL.md
templates/ja/common_skills/google-tasks-tool/SKILL.md
templates/ja/common_skills/image-gen-tool/SKILL.md
templates/ja/common_skills/image-posting/SKILL.md
templates/ja/common_skills/local-llm-tool/SKILL.md
templates/ja/common_skills/machine-tool/SKILL.md
templates/ja/common_skills/notion-tool/SKILL.md
templates/ja/common_skills/skill-creator/SKILL.md
templates/ja/common_skills/slack-tool/SKILL.md
templates/ja/common_skills/subagent-cli/SKILL.md
templates/ja/common_skills/tool-creator/SKILL.md
templates/ja/common_skills/transcribe-tool/SKILL.md
templates/ja/common_skills/web-search-tool/SKILL.md
templates/ja/common_skills/workspace-manager/SKILL.md
templates/ja/common_skills/x-search-tool/SKILL.md

Metadata

Files
0
Version
050238c
Hash
89da39d0
Indexed
2026-07-25 09:13

inicio - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-20 07:30
浙ICP备14020137号-1 $mapa de visitantes$