Loading...
Loading...
Hand off the current task to another agent with full context. Use when the user says "handoff", "hand off", "hand this to", or wants to pass work to another agent (Codex or Claude).
npx skill4agent add getpaseo/paseo paseo-handoff$ARGUMENTS| User says | Provider | Model | Mode |
|---|---|---|---|
| (nothing) | | | |
| | | |
| | | |
| | | |
| | | |
gpt-5.4--worktree--basegit branch --show-current## Task
[Clear, imperative description of what to do]
## Context
[Why this task exists, background the agent needs]
## Relevant Files
- `path/to/file.ts` — [what it does and why it matters]
- `path/to/other.ts` — [what it does and why it matters]
## Current State
[What's been done, what works, what doesn't]
## What Was Tried
- [Approach 1] — [why it failed/was abandoned]
- [Approach 2] — [partial success, but...]
## Decisions
- [Decision 1 — rationale]
- [Decision 2 — rationale]
## Acceptance Criteria
- [ ] [Criterion 1]
- [ ] [Criterion 2]
## Constraints
- [Do not do X]
- [Must preserve Y]paseo run -d --mode full-access --provider codex --name "[Handoff] Task description" "$prompt"paseo run -d --mode bypass --model opus --name "[Handoff] Task description" "$prompt"base=$(git branch --show-current)
paseo run -d --mode full-access --provider codex --worktree task-branch-name --base "$base" --name "[Handoff] Task description" "$prompt"base=$(git branch --show-current)
paseo run -d --mode bypass --model opus --worktree task-branch-name --base "$base" --name "[Handoff] Task description" "$prompt"Handed off to [provider] ([model]). Agent ID: <id>
Follow along: paseo logs <id> -f
Wait for completion: paseo wait <id>paseo wait <id>paseo logs <id>