actiond_handoff_pack
Generate a complete handoff package with git history, CI/CD results, and task details so another agent can resume work with full context. Returns structured JSON and Markdown summary.
Instructions
Generate a handoff package that lets another agent (or human) resume this work with full context, aggregating git log, ActionD CI/CD verdicts, and — when task_id is given — the task report from the connected task management system. Returns structured JSON plus a ready-to-use Markdown document covering: goal, current state (with evidence level), completed work (recent commits), pending work, known failures, decisions, verification state, and a suggested next action. The markdown field alone is designed to give the receiving agent everything it needs without reading the original session; missing information is marked unknown rather than guessed. Optional path (defaults to the current directory), task_id, project_id, from_agent/to_agent, goal, suggested_next_action, pending_work (comma-separated), and ttl_hours for the validity window (default 24).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| goal | No | One-sentence task goal | |
| path | No | Repository path (defaults to the current directory) | |
| task_id | No | Task ID; when provided, the task report is also queried to fill in goal and decisions | |
| to_agent | No | Identity of the agent receiving the work (e.g., 'claude') | |
| ttl_hours | No | How long the handoff stays valid, in hours (default 24) | |
| from_agent | No | Identity of the agent handing off the work (e.g., 'codex') | |
| project_id | No | Project ID in the task management system (defaults to the repository name) | |
| pending_work | No | Comma-separated list of pending work items | |
| suggested_next_action | No | Next step the receiving agent should take |