Agent Handoff Packet
agent_handoff_packetSummarize current status and next steps in a compact handoff packet so another AI agent can continue SDLC work.
Instructions
Generate a compact handoff packet so another AI agent can continue SDLC work.
Use when wrapping up a session, before handing off to a specialised agent, or when context is nearing its limit.
Args:
owner, repo: Repository coordinates.
issueNumber (number?): Issue being worked on.
pullNumber (number?): PR being worked on.
currentStatus (string): What has been done so far.
nextSteps (string[]?): Ordered tasks for the next agent.
Returns: Compact handoff prompt, repo context snapshot, and remaining tasks.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo | No | GitHub repo. Falls back to GITHUB_REPO. | |
| owner | No | GitHub owner. Falls back to GITHUB_OWNER. | |
| nextSteps | No | Ordered list of next steps for the incoming agent. | |
| pullNumber | No | PR being worked on (if applicable). | |
| issueNumber | No | Issue being worked on (if applicable). | |
| currentStatus | Yes | Free-text description of the current work status. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | ||
| prRef | Yes | ||
| issueRef | Yes | ||
| nextSteps | Yes | ||
| policyDigest | No | ||
| currentStatus | Yes | ||
| defaultBranch | Yes | ||
| handoffPrompt | Yes | ||
| policySources | No | ||
| policySummary | No | ||
| policyDegraded | No | ||
| evidenceWarnings | Yes | ||
| appliedPolicyRules | No |