返回 Skill 列表
extension
分类: 开发与工程无需 API Key

handoff-log-update

当代理完成工作、被阻塞或需要传递所有权时,在交接日志中添加一个结构化的条目。

person作者: jakexiaohubgithub

Handoff Log Update

When to use

Use when you need to record a handoff, status, or next actions in the append-only log.

Procedure

  1. Gather the required fields: agent name, summary, handoff target, tasks, and references.
  2. Run the log update script with explicit flags:
python3 .agent/tools/utilities/update_agent_conversation_log.py \
  --agent <agent> \
  --summary "<summary>" \
  --handoff <next-owner> \
  --task "<next task>" \
  --reference "<path>"
  1. Confirm the entry was appended to .agent/docs/agent_handoffs/agent_conversation_log.md.

Inputs and outputs

  • Inputs: agent, summary, handoff target, tasks, references, optional context/status
  • Outputs: appended entry in .agent/docs/agent_handoffs/agent_conversation_log.md

Constraints

  • Never edit or delete existing log entries
  • Keep summaries and tasks concise
  • ASCII-only

Examples

  • $handoff-log-update