← スキル一覧に戻る

orchestration-logger
by sagerstack
⭐ 0🍴 0📅 2025年11月14日
SKILL.md
name: orchestration-logger description: Unified logging system for AI orchestration workflows with current state metadata and execution logs in a single file
Orchestration Logging Skill
Unified logging for orchestration workflows with automatic state tracking and audit trails. You will create and append orchestration logs to the logfile by directly updating the json file. No code or scripts required.
Instructions
- Orchestration logs should be generated under .claude/logs with the filename
.claude/logs/orchestration-{app_name}-{yyyymmdd-HH24MMss}.jsoncontaining:
- Metadata: Orchestration progress, completed tasks, current status
- Execution logs: Complete logging of all subagent requests and responses
- Timestamp should be in SGT
Usage Patterns
- Initialize- Start by creating a new logfile with the json structure and metadata
- Log Request- Log the request under execution_logs with type:request. Update metadata
- Log Response- Log the response under execution_logs with type:response. Update metadata
Example Log
Follow this sample log for guidance
{
"orchestration_id": "{orchestration_id}",
"log_file": "orchestration-{orchestration_id}.json",
"metadata": {
"status": "{running|completed|halted|error}", # halted : if waiting for user input
"app_name": "hello-world",
"confirmation_mode": "interactive",
"started_at": "{timestamp in SGT}",
"implementation_plan": "plans/us-hello-impl-plan.md",
"user_story_id": "US-HELLO",
"current_task": "1.2",
"current_subagent": "quality-manager",
"completed_tasks": [1.1],
"failed_tasks": [],
"loop_attempts": {},
"total_tasks": 82,
"completion_percentage": 1.05,
"last_completed_subtask_at": null,
"last_completed_task_id": null,
"last_updated": "{timestamp in SGT}",
"final_report": null
},
"execution_logs": [
{
"task": "1.2",
"subagent": "python-developer",
"type":"request",
"content":"Implement task 1.2 | Fix the following issues : (a), (b), (c)..",
"timestamp":"{timestamp in SGT}",
"implementation_plan": "plans/us-hello-impl-plan.md",
"user_story": "us-hello-world.md",
},
{
"task": "1.2",
"subagent": "python-developer",
"type":"response",
"content":"I have implemented task 1.2 with the following changes (a), (b), (c)..",
"timestamp":"{timestamp in SGT}",
},
{
"task": "1.2",
"subagent": "quality-manager",
"type":"request",
"content":"Validate the implementation for task 1.2 against the acceptance criteria",
"timestamp":"{timestamp in SGT}",
"implementation_plan": "plans/us-hello-impl-plan.md",
"user_story": "us-hello-world.md",
},
]
}
スコア
総合スコア
40/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
レビュー
💬
レビュー機能は近日公開予定です