Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计提醒

paseo-handoff路径切换

Agent Skill

paseo-handoff 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

13,841

周安装

571

GitHub Stars

4,988

下载量

4,522
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:paseo-handoff(路径切换)
来源仓库:https://github.com/getpaseo/paseo
仓库路径:skills/paseo-handoff
安装命令:
npx skills add https://github.com/getpaseo/paseo --skill paseo-handoff
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/getpaseo/paseo --skill paseo-handoff

简介

用于处理 GitHub 仓库、Issue 和 Pull Request。

  • 适合围绕代码变更和协作事项进行信息整理。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。paseo-handoff 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 注意是否会触发命令执行或文件读写操作。

SKILL.md

Handoff Skill

You are handing off the current task to another agent. Your job is to write a comprehensive handoff prompt and launch the agent via Paseo CLI.

User's arguments: $ARGUMENTS


Prerequisites

Load the Paseo skill first — it contains the CLI reference for all agent commands.

What Is a Handoff

A handoff transfers your current task — including all context, decisions, failed attempts, and constraints — to a fresh agent that will carry it to completion. The handoff prompt is the most important part: the receiving agent starts with zero context, so everything it needs must be in the prompt.

Parsing Arguments

Parse $ARGUMENTS to determine:

  1. Provider and model — who to hand off to
  2. Worktree — whether to run in an isolated git worktree
  3. Task description — any additional context the user provided

Provider Resolution

User says--providerMode
*(nothing)*codex/gpt-5.4full-access
codexcodex/gpt-5.4full-access
claudeclaude/opusbypass
opusclaude/opusbypass
sonnetclaude/sonnetbypass

Default is Codex with gpt-5.4.

Worktree Resolution

If the user says "in a worktree" or "worktree", add --worktree with a short descriptive branch name derived from the task. Worktrees require a --base branch — use the current branch in the working directory (run git branch --show-current to get it).

Writing the Handoff Prompt

This is the critical step. The receiving agent has zero context about your conversation. The handoff prompt must be a self-contained briefing document.

Must Include

  1. Task description — What needs to be done, in clear imperative language
  2. Task qualifiers — Preserve the semantics of what the user asked for:

- If the user asked to investigate without editing, say "DO NOT edit any files" - If the user asked to fix, say "implement the fix" - If the user asked to refactor, say "refactor" not "rewrite" - Carry forward the exact intent

  1. Relevant files — List every file path that matters, with brief descriptions of what each contains
  2. Current state — What has been done so far, what's working, what's not
  3. What was tried — Any approaches attempted and why they failed or were abandoned
  4. Decisions made — Anything you and the user agreed on (design choices, constraints, trade-offs)
  5. Acceptance criteria — How the agent knows it's done
  6. Constraints — Anything the agent must NOT do

Template

## 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]

Launching the Agent

Default (Codex, no worktree)

paseo run -d --mode full-access --provider codex/gpt-5.4 --name "[Handoff] Task description" "$prompt"

Claude (Opus, no worktree)

paseo run -d --mode bypassPermissions --provider claude/opus --name "[Handoff] Task description" "$prompt"

Codex in a worktree

base=$(git branch --show-current)
paseo run -d --mode full-access --provider codex/gpt-5.4 --worktree task-branch-name --base "$base" --name "[Handoff] Task description" "$prompt"

Claude in a worktree

base=$(git branch --show-current)
paseo run -d --mode bypass --provider claude/opus --worktree task-branch-name --base "$base" --name "[Handoff] Task description" "$prompt"

After Launch

  1. Print the agent ID and the command to follow along: Handed off to [provider] ([model]). Agent ID: <id> Follow along: paseo logs <id> -f Wait for completion: paseo wait <id>
  2. Do not wait for the agent by default — the user can choose to wait or move on.
  3. If the user wants to wait, run paseo wait <id> and then paseo logs <id> when done.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.89%
按下载量换算1,623

Claude

28.37%
按下载量换算1,283

Cursor

19.76%
按下载量换算894

Gemini CLI

8.62%
按下载量换算390

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills