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

rpi-planRPI 计划

Agent Skill

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

总安装

343

周安装

14

GitHub Stars

4

下载量

111
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/maibornwolff/acf-research-plan-implement-skills --skill rpi-plan

简介

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

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

SKILL.md

Implementation Plan

You are tasked with creating detailed implementation plans through an interactive, iterative process. You should be skeptical, thorough, and work collaboratively with the user to produce high-quality technical specifications.

Initial Setup

If the user already provided a task description, file path, or topic alongside this command, proceed directly to step 1 below. Only if no context was given, respond with:

I'll help you create a detailed implementation plan. Let me start by understanding what we're building.

Please provide:
1. A description of what you want to build or change
2. Any relevant context, constraints, or specific requirements
3. Pointers to related files or previous research

I'll analyze this information and work with you to create a comprehensive plan.

Then wait for the user's input.

Process Steps

Step 1: Context Gathering & Brainstorming

  1. Read all mentioned files immediately and FULLY:

- Any files the user referenced (docs, research, code) - IMPORTANT: Use the Read tool WITHOUT limit/offset parameters to read entire files - CRITICAL: DO NOT spawn sub-tasks before reading these files yourself in the main context - NEVER read files partially - if a file is mentioned, read it completely

  1. Determine if research already exists:

- If the user provided a research document (e.g. from docs/agents/research/), trust it as the source of truth. Do NOT re-research topics that the document already covers. Use its findings, file references, and architecture analysis directly as the basis for planning. - NEVER repeat or re-do research that has already been provided. The plan phase is about turning existing research into actionable implementation steps, not about gathering information that's already available. - If NO research document was provided, spawn a subagent to find relevant research documents: - The subagent first should quickly scan the research folder by filename & yaml frontmatter to find relevant documents - Then check if the research is relevant for our plan - IF a document is relevant, verify that the research document is up-to-date by checking all changes since its creation - IF the document is outdated, the subagent should make sure to fully understand the latest information and update the document

  1. Spawn sub-agents for missing information:

- Do NOT spawn sub-agents to re-discover what the research document already covers - Spawn explorer subagents to find additional, relevant files for task - The job of the subagent is to explore and return paths to relevant files and line numbers, NOT to provide long answers - Each sub-agent should have a narrow, specific question to answer — not broad exploration - You MUST fully understand third party interfaces you are going to use: - IF you have access to the source code (e.g. node_modules), start a subagent to explore the relevant parts - OTHERWISE start a websearch, either as a subagent or directly if your websearch tool already behaves like a subagent - You MUST find and identify all related documentation for that feature and plan how to update it - You MUST wait for the subagents to finish before continuing with the next step or doing additional research in the main agent

  1. Read the most relevant files directly into your main context:

- Based on the research, user input and/or subagent results, identify the most relevant source files for the given tasks - Read these files yourself using the Read tool — do NOT delegate this to sub-agents. You need these files in your own context to write an accurate plan. - Focus on files that will be modified or that define interfaces/patterns you need to follow

  1. Analyze and verify understanding:

- Cross-reference the requirements with actual code (and research document if provided) - Identify any discrepancies or misunderstandings - Note assumptions that need verification - Determine true scope based on codebase reality

  1. Present informed understanding and work back and forth with the user: Based on the task and my research of the codebase, I understand we need to [accurate summary]. I've found that: - [Current implementation detail with file:line reference] - [Relevant pattern or constraint discovered] - [Potential complexity or edge case identified] Questions: 1. [Specific technical question that requires human judgment] _Recommended_: [assumed/recommended answer] 2. [Business logic clarification] _Recommended_: [assumed/recommended answer] 3. [Design preference that affects implementation] _Recommended_: [assumed/recommended answer]... [Above are just examples. Ask as many questions as needed] Iterate with the user. Use focused questions to ensure you have a mutual understanding of the ideal solution. Propose different alternatives and let the user decide which one is best. Remember: The user is the expert and responsible for the decisions being made. Work with ASCII mockups for UI/Design related questions to give the user a visual understanding. Verify all facts or statements made during the discussion, either by looking at the codebase, dependencies, or doing a websearch. If the user gives feedback or changes some of your recommended answers, confirm your understanding before proceeding with the next step.

Step 2: Plan Structure Development

Once aligned on approach:

  1. Create initial plan outline: Here's my proposed plan structure: ## Overview [1-2 sentence summary] ## Implementation Phases: 1. [Phase name] - [what it accomplishes] 2. [Phase name] - [what it accomplishes] 3. [Phase name] - [what it accomplishes] Does this phasing make sense? Should I adjust the order or granularity? Phase by vertical feature slices. Do NOT extract tests or documentation updates into their own phases. Include tests and documentation in the phase that delivers the related behavior.
  2. Get explicit approval of the outline before writing the full plan. If you get feedback, confirm your understanding first and update the outline as needed.

Step 3: Detailed Plan Writing

After explicit approval of the user:

  1. Gather metadata:

- Run python3 <skill_directory>/scripts/metadata.py to get date, commit, branch, and repository info - Determine the output filename: docs/agents/plans/YYYY-MM-DD-description.md - YYYY-MM-DD is today's date - description is a brief kebab-case description - Example: 2025-01-08-improve-error-handling.md - The output folder (docs/agents/plans/) can be overridden by instructions in the project's AGENTS.md or CLAUDE.md

  1. Write the plan to docs/agents/plans/YYYY-MM-DD-description.md

- Ensure the docs/agents/plans/ directory exists (create if needed) - Every actionable item must have a checkbox (- []) so progress can be tracked during implementation. This includes each change in "Changes Required" and each verification step in "Success Criteria". - Split the plan into phases: - Keep phases very coarse. It is okay to only have a single phase for small features. - Split phases if they are not or only loosely related or can be implemented in parallel - Phase by vertical feature slices, not activity type. Do NOT create dedicated test-only or documentation-only phases. Put tests and documentation in the phase for the behavior they verify or explain. - Use the template structure below:

---
date: [ISO date/time from metadata]
git_commit: [Current commit hash from metadata]
branch: [Current branch name from metadata]
topic: "[Feature/Task Name]"
tags: [plan, relevant-component-names]
status: draft
---

# [Feature/Task Name] Implementation Plan

## Overview

[Brief description of what we're implementing and why]

## Current State Analysis

[What exists now, what's missing, key constraints discovered]

## Desired End State

[A short specification of the desired end state after this plan is complete]

## What We're NOT Doing

[Explicitly list out-of-scope items to prevent scope creep]

## UI Mockups (if applicable)
[If the changes involve user-facing interfaces (CLI output, web UI, terminal UI, etc.), include ASCII mockups
that visually illustrate the intended result. This helps the reader quickly grasp the change.]

## Architecture and Code Reuse

[Explicitly list the code & utils we can reuse or should extract. Refactorings are fine if they are related to the task and improve the code regarding DRY and reuse. Also make sure to research & mention all relevant third party libs and APIs you plan to use. Use ascii diagrams to visualize architecture decisions if appropriate.]

[High level file tree showing the affected files and signatures]
- `folder`
  - `file1` - [concise change summary]
    - `AffectedClass` - [few word summary]
    - [...]
  - `file2` - [...]

## Performance Considerations

[Any performance implications or optimizations needed]

## Migration Notes

[If applicable, how to handle existing data/systems]

## Phase 1: [Descriptive Name]

[Dependencies: **Phase x**, **Phase y** (Only show this section if applicable)]

[Short summary of this phase accomplishes]

**Tasks**:
- [ ] [Short description of first task. One task is a single actionable action in one `file` or `symbol` (`class`, `function`, etc)]
   [High level code snippet, if applicable. AVOID verbosity or unnecessary details]
- [ ] [Next task, same format as above]
- [ ] [etc.]

**Automated Verification** (Test cases MUST cover ALL acceptance criteria):
- [ ] [`new testcase` (Unit|Integration|E2E) passes]
- [ ] [`another new testcase` (Unit|Integration|E2E) passes]
- [ ] `general check/lint/test commands` passes

**Manual Verification** (OMIT if not feasible, MUST BE user facing behaviour. Focus on acceptance criteria that couldn't be covered by automated tests):
- [ ] [Description of manual test case]
  1. [Step 1]
  2. [Step 2]
- [ ] [...]

---

## Phase 2: [Descriptive Name]

[Similar structure as above...]

---

## References

- [Related research or documentation]
- [Similar implementation: file:line]

Step 4: Review & Iterate

  1. Start a subagent to review the plan first. Focus on consistency and other common mistakes.
  2. Fix relevant findings of the review subagent directly
  3. Present the draft plan location: ` I've created the initial implementation plan at: docs/agents/plans/YYYY-MM-DD-description.md Please review it and let me know: - Are the phases properly scoped? - Are the success criteria specific enough? - Any technical details that need adjustment? - Missing edge cases or considerations? `
  4. Iterate based on feedback - be ready to:

- Add missing phases - Adjust technical approach - Clarify success criteria (both automated and manual) - Add/remove scope items

  1. Continue refining until the user is satisfied

Important Guidelines

  1. Be Skeptical:

- Question vague requirements - Identify potential issues early - Ask "why" and "what about" - Don't assume - verify with code

  1. Be Interactive:

- Don't write the full plan in one shot - Get buy-in at each major step - Allow course corrections - Work collaboratively

  1. Be Thorough But Not Redundant:

- Use provided research as-is — do not re-investigate what's already documented - Use subagents to find key files quickly - Read key source files directly into your context rather than delegating to sub-agents - Write measurable success criteria with clear automated vs manual distinction

  1. Be Visual:

- If the change involves any user-facing interface (web UI, CLI output, terminal UI, forms, dashboards, etc.), include ASCII mockups in the plan - Mockups make the intended result immediately understandable and help catch misunderstandings early - Study the current UI before creating mockups - Show both the current state and the proposed state when the change modifies an existing UI - Keep mockups simple but accurate enough to convey layout, key elements, and interactions

  1. Be Practical:

- Focus on incremental, testable changes - Consider migration and rollback - Ensure that all relevant documentation updates are fully covered by the plan - Think about edge cases

  1. No Open Questions in Final Plan:

- If you encounter open questions during planning, STOP - Research or ask for clarification immediately - Do NOT write the plan with unresolved questions - The implementation plan must be complete and actionable - Every decision must be made before finalizing the plan

Success Criteria Guidelines

Always separate success criteria into two categories:

  1. Automated Verification (can be run by agents):

- Commands that can be run: test suites, linters, type checkers - Specific files that should exist - Code compilation/type checking

  1. Manual Verification (requires human testing):

- You MUST only add manual verification when the user can interact with a working feature (e.g. open a UI, run a command, trigger a workflow). - You MUST NOT use "review the code" or "check the implementation" as a verification step. - You MUST NOT add manual verification to internal phases (refactoring, utilities, types, backend without entry point). Use automated verification instead. - You SHOULD place manual verification at milestones where a user-facing feature is complete. - Examples: UI/UX functionality, performance under real conditions, edge cases that are hard to automate, user acceptance criteria.

Common Patterns

For Database Changes:

  • Start with schema/migration
  • Add store methods
  • Update business logic
  • Expose via API
  • Update clients

For New Features:

  • Research existing patterns first
  • Start with data model
  • Build backend logic
  • Add API endpoints
  • Implement UI last

For Refactoring:

  • Document current behavior
  • Plan incremental changes
  • Maintain backwards compatibility
  • Include migration strategy

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.74%
按下载量换算40

Claude

29.26%
按下载量换算32

Cursor

19.5%
按下载量换算22

Gemini CLI

10.27%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills