← スキル一覧に戻る

collaboration-tracking
by seanspiesman
Agents and Workflows
⭐ 0🍴 0📅 2026年1月24日
SKILL.md
name: collaboration-tracking description: Instructions for checking global CLI context and logging handoffs.
Collaboration Tracking
This skill ensures that all agents share a common CLI context and log their handoffs to maintain a clear chain of custody.
Global Context (CLI)
- File:
agent-output/cli.md - Usage: Always check this file for shared command-line instructions or context that persists across agent sessions.
- Action: If you have relevant CLI output or instructions that other agents might need, append them to this file.
Handoff Logging (BLOCKING)
- Constraint: You CANNOT handoff to another agent until you have successfully executed this log command.
- File:
agent-output/logs/handoff_history.log - Action: Run this command immediately before your handoff action/tool call:
# Append to the handoff log # IMPORTANT: Replace [YourAgentName] and [TargetAgentName] with actual names (e.g., Architect -> Critic) mkdir -p agent-output/logs && echo "[$(date '+%a %b %d %H:%M:%S %Z %Y')] [YourAgentName] -> [TargetAgentName]" >> agent-output/logs/handoff_history.log
Tool Usage Logging
- File:
agent-output/logs/tool_usage_history.log - Goal: Track significant modifications and executions to understand agent actions.
- Scope: Log ONLY "Side-Effect" tools.
- Method: Use
run_commandto append via shell. - Command:
# IMPORTANT: Replace [YourAgentName] with your actual name (e.g., Implementer) echo "[$(date '+%a %b %d %H:%M:%S %Z %Y')] [YourAgentName] [Tool]" >> agent-output/logs/tool_usage_history.log - Example:
echo "[$(date '+%a %b %d %H:%M:%S %Z %Y')] Architect write_to_file" >> agent-output/logs/tool_usage_history.log
CLI Command Logging
- File:
agent-output/logs/cli_history.log - Goal: Maintain a detailed, linear history of all terminal commands executed for debugging and auditing.
- Requirement: Whenever you use the
run_commandtool, you MUST also log the command to this file. - Exclusions: Do NOT log commands that write to collaboration tracking logs (
handoff_history.log,tool_usage_history.log,cli_history.log) to avoid circular/redundant logging. - Format:
[Timestamp] [Agent] [Tool] [Command] - Command:
# Example: Logging a git commit echo "[$(date '+%a %b %d %H:%M:%S %Z %Y')] [DevOps] [run_command] [git commit -m 'feat: init']" >> agent-output/logs/cli_history.log - Note: This mimics a persistent
.bash_historybut attributed to specific agents and timestamps, excluding the logging commands themselves.
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です