Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

rpi转速

Agent Skill

rpi 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,007

周安装

468

GitHub Stars

318

下载量

3,856
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/boshu2/agentops --skill rpi

简介

rpi 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 适用于研究检索类任务,可结合来源仓库和原始 README 核验具体用法。
  • 通过 npx skills add 命令从 GitHub 安装,需确认权限范围和维护状态。
  • 使用前建议检查是否会触发联网、命令执行或文件读写等敏感操作。
  • rpi 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

/rpi - Full Lifecycle Orchestrator

Quick ref: /discovery -> /crank -> /validation, then report.

Execute this workflow. Do not only describe it. RPI is autonomous unless --interactive is set. The user touchpoint is after validation, or after a real blocked state exhausts retries. Read references/autonomous-execution.md when you need the full autonomy contract.

Core Contract

RPI delegates via Skill(skill="discovery",...), Skill(skill="crank",...), and Skill(skill="validation",...) as separate tool invocations. Keep strict delegation on by default; do not compress phases, replace phase skills with direct agent spawns, or skip validation. Read ../shared/references/strict-delegation-contract.md for the full anti-compression contract.

RPI owns one lifecycle objective across all phases. Preserve the discovered epic_id when present; otherwise preserve the original goal and execution packet objective. A child bead or one ready slice is context, not a replacement objective. <promise>PARTIAL</promise> from /crank means retry Phase 2 on the same objective.

Route And Classify

  1. Create .agents/rpi/.
  2. Resolve --from:

- default, research, plan, pre-mortem, brainstorm -> discovery - implementation or crank -> implementation - validation, vibe, or post-mortem -> validation

  1. If the input is a bead and --from is absent, resolve it with bd show:

- epic -> implementation with that epic - child with parent -> implementation with the parent epic

  1. Classify complexity:

- fast: short/simple goal or --fast-path - standard: medium goal or one scope keyword - full: --deep, complex-operation keyword, 2+ scope keywords, or >120 chars

  1. Log RPI mode: rpi-phased (complexity: <level>).

Track state compactly:

rpi_state = {
  goal: "<goal string>",
  epic_id: null,
  phase: "<discovery|implementation|validation>",
  complexity: "<fast|standard|full>",
  test_first: <true by default; false only when --no-test-first>,
  cycle: 1,
  verdicts: {}
}

Complex-operation keywords include refactor, migrate, rewrite, redesign, rearchitect, overhaul, decouple, deprecate, split, extract module, and port. Scope keywords include all, entire, across, everywhere, every file, system-wide, global, and codebase.

Phase DAG

Enter at the routed phase and run every phase after it.

  1. Discovery: invoke /discovery <goal> [--interactive] --complexity=<level>. On DONE, read .agents/rpi/execution-packet.json or the run archive and preserve its objective spine. On BLOCKED, stop with the discovery verdict.
  2. Implementation: invoke /crank <epic-id> when the packet has epic_id; otherwise invoke /crank.agents/rpi/execution-packet.json. Pass --test-first or --no-test-first through. On DONE, record ao ratchet record implement 2>/dev/null || true and continue. On PARTIAL or BLOCKED, retry the same objective up to 3 total attempts.
  3. Validation: invoke /validation <epic-id> --complexity=<level> when an epic exists; otherwise invoke /validation --complexity=<level>. Add --strict-surfaces when --quality is set. On FAIL, extract findings, re-run /crank on the same objective, then re-run /validation, up to 3 total validation attempts. On DONE, record ao ratchet record vibe 2>/dev/null || true.
  4. Report: summarize phase verdicts and epic status using references/report-template.md. With --loop, restart from discovery on FAIL while cycle < max_cycles. With --spawn-next, read .agents/rpi/next-work.jsonl and suggest the next command without invoking it.

Phase Data Contract

The execution packet carries the repo execution profile through contract_surfaces, done_criteria, and queue claim/finalize metadata. Keep the latest alias at .agents/rpi/execution-packet.json and read references/phase-data-contracts.md for schemas and archive paths.

Complexity-Scaled Gates

Pre-mortem

  • complexity == "low" or "fast": inline review, no spawning (--quick)
  • complexity == "medium" or "standard": inline fast default (--quick)
  • complexity == "high" or "full": full council, 2-judge minimum; max 3 total attempts

Final Vibe

  • complexity == "low" or "fast": inline review, no spawning (--quick)
  • complexity == "medium" or "standard": inline fast default (--quick)
  • complexity == "high" or "full": full council, 2-judge minimum; max 3 total attempts

Post-mortem (STEP 2)

  • complexity == "low" or "fast": inline review, no spawning (--quick)
  • complexity == "medium" or "standard": inline fast default (--quick)
  • complexity == "high" or "full": full council, 2-judge minimum; max 3 total attempts

Flags

FlagDefaultPurpose
--from=<phase>discoveryStart at discovery, implementation, or validation
--discovery-artifact=<path>unsetWith implementation start, convert an existing artifact into the handoff packet
--interactiveoffHuman gates in discovery/validation
--autoonFully autonomous default
--loop --max-cycles=<n>off / 3Iterate when validation fails
--spawn-nextoffSurface follow-up work after reporting
--test-firstonPass strict-quality preference to /crank
--no-test-firstoffExplicitly opt out of strict-quality
--fast-path / --deepautoForce fast or full complexity
--qualityoffMake validation strict surfaces blocking
--dry-run / --no-budgetoffReport only, or disable phase time budgets

Examples

User says: /rpi "add user authentication" Run discovery, implementation, validation, then report.

User says: /rpi --from=implementation ag-23k Resolve the bead scope, run implementation and validation, then report.

User says: /rpi --deep "refactor payment module" Use full council gates across the lifecycle.

Read references/examples.md for resume, interactive, loop, and artifact-mode examples.

Troubleshooting

ProblemResponse
Discovery BLOCKEDStop and report discovery's manual-intervention reason
/crank returns PARTIALRetry /crank on the same objective; do not narrow to a child slice
Validation FAILRe-crank with findings, then re-validate, up to 3 total attempts
Packet shape unclearRead references/phase-data-contracts.md

Reference Documents

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.84%
按下载量换算1,382

Claude

30.72%
按下载量换算1,185

Cursor

16.42%
按下载量换算633

Gemini CLI

9.85%
按下载量换算380

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/boshu2/agentops --skill rpi 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills