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

paseo-committee帕塞奥委员会

Agent Skill

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

总安装

13,176

周安装

566

GitHub Stars

5,011

下载量

4,619
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

SKILL.md

Committee Skill

You are forming a committee to step back from the current problem and get fresh perspective.

User's additional context: $ARGUMENTS


Prerequisites

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

What Is a Committee

Two agents — Opus 4.6 (--thinking on) and GPT 5.4 (--thinking medium) — launched in parallel to plan a solution. Fresh context, no implementation baggage, proper root cause analysis.

They stay alive after planning for Phase 3 review — they hold only the plan, so they catch implementation drift.

The purpose is to step back, not to double down. The committee may propose a completely different approach.

Your Role

You drive the full lifecycle: plan → implement → review. You are a middleman between the user and the committee. Do not yield back to the user until the cycle is complete. If the user needs to weigh in on a divergence, ask them — but don't stop the process.

No Anxiety

Once you call paseo wait, trust the wait. Do not poll logs, read output early, send hurry-up messages, interrupt deep analysis, or give up because it's taking long.

GPT 5.4 can reason for 15–30 minutes. Opus does extended thinking. Long waits mean the agent found something worth thinking about. Let it finish.

If the CLI has a bug, the user will tell you.

No-Edits Suffix

Every prompt to a committee member — initial, follow-up, or review — must end with this suffix. They will start editing code if you don't.

NO_EDITS="This is analysis only. Do NOT edit, create, or delete any files. Do NOT write code."

All example prompts below include $NO_EDITS — always expand it.

Phase 1: Get a Plan

Write the prompt

Describe the overall problem, not just the immediate symptom:

  • High-level goal and acceptance criteria
  • Constraints
  • Symptoms (if a bug)
  • What you've tried and why it failed
  • Explicitly ask for root cause analysis
prompt="We're trying to [high-level goal]. Constraints: [X, Y, Z]. Acceptance criteria: [A, B, C].

We've been stuck on this. Here's what we've tried and why it didn't work:
- [approach 1] — failed because [reason]
- [approach 2] — partially worked but [issue]

Step back from these attempts. Do root cause analysis — the fix might not be for [immediate symptom] at all, it might be structural.

Use the think-harder approach: state your assumptions, ask why at least 3 levels deep for each, and check whether you're patching a symptom or removing the problem. What's the right approach?

$NO_EDITS"

Launch both members

Same prompt to both, [Committee] prefix for identification:

opus_id=$(paseo run -d --mode bypassPermissions --provider claude/opus --thinking on --name "[Committee] Task description" "$prompt" -q)
gpt_id=$(paseo run -d --mode full-access --provider codex/gpt-5.4 --thinking medium --name "[Committee] Task description" "$prompt" -q)

Wait for both

Wait for both agents — not just the first one that finishes.

paseo wait "$opus_id"
paseo wait "$gpt_id"

Read and challenge

paseo logs "$opus_id"
paseo logs "$gpt_id"

Do not accept output at face value. Use the think-harder framework to challenge their output. Before synthesizing:

  1. Ask "why" 2–3 levels deep. "Fix X because Y is broken" — why is Y broken? Is Y a root cause or a consequence?
  2. Challenge assumptions. If the plan assumes something about the code, make the agent verify it.
  3. Symptom vs cause. "Are we fixing the consequence or the cause?"
  4. Probe alternatives. "What did you consider and reject?"
paseo send "$opus_id" "You said [X]. Why does [underlying thing] happen in the first place? Are we patching a symptom? $NO_EDITS"
paseo wait "$opus_id"
paseo logs "$opus_id"

Keep pushing until the plan addresses the root cause.

Synthesize and confirm

  • Convergence → merge into unified plan.
  • Significant divergence → involve the user.

Send the merged plan back for confirmation. Multi-turn if needed — keep going until consensus.

paseo send "$opus_id" "Merged plan: [plan]. Concerns? $NO_EDITS"
paseo send "$gpt_id" "Merged plan: [plan]. Concerns? $NO_EDITS"

Phase 2: Implement

Implement the plan yourself — unless the user said "delegate", in which case launch an implementer:

impl_id=$(paseo run -d --mode full-access --provider codex/gpt-5.4 --name "[Impl] Task description" "Implement the following plan end-to-end. [plan]" -q)
paseo wait "$impl_id"

Committee agents stay clean — not involved in implementation.

Phase 3: Review

Send the committee the changes for review. They anchor against the plan and catch drift.

review_prompt="Implementation is done. Review changes against the plan. Flag drift or missing pieces. $NO_EDITS"

paseo send "$opus_id" "$review_prompt"
paseo send "$gpt_id" "$review_prompt"

paseo wait "$opus_id"
paseo wait "$gpt_id"

paseo logs "$opus_id"
paseo logs "$gpt_id"

Iterate

Send committee feedback to the implementer (or apply yourself). Repeat Phase 2 → 3 until the committee confirms the implementation matches the plan.

After ~10 iterations without convergence, start a fresh committee with full context of what was tried — the current committee's context may have drifted too far.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.07%
按下载量换算1,666

Claude

32.11%
按下载量换算1,483

Cursor

19.06%
按下载量换算880

Gemini CLI

10.34%
按下载量换算478

安全审计

Gen Agent Trust Hub

未通过

Socket

可疑

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills