Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计未展示

ring%3aexecuting-plans环%3a 执行计划

Agent Skill

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

总安装

881

周安装

36

GitHub Stars

180

下载量

285
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lerianstudio/ring --skill ring:executing-plans

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 支持基于关键词、任务场景或来源线索进行信息检索与筛选。
  • 通过 GitHub 仓库获取技能定义,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件操作。
  • ring%3aexecuting-plans 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Executing Plans

Overview

Load plan, review critically, choose execution mode, execute tasks with code review.

Core principle: User chooses between autonomous execution or batch execution with human review checkpoints.

Two execution modes:

  • One-go (autonomous): Execute all batches continuously with code review, report only at completion
  • Batch (with review): Execute one batch, code review, pause for human feedback, repeat

Announce at start: "I'm using the ring:executing-plans skill to implement this plan."

The Process

Step 1: Load and Review Plan

  1. Read plan file
  2. Review critically - identify any questions or concerns about the plan
  3. If concerns: Raise them with your human partner before starting
  4. If no concerns: Create TodoWrite and proceed to Step 2

Step 2: Choose Execution Mode (MANDATORY)

⚠️ THIS STEP IS NON-NEGOTIABLE. You MUST use AskUserQuestion before executing ANY tasks.

Ask: "How would you like to execute this plan?" Options: (1) One-go (autonomous) - all batches with code review, no human review until completion (2) Batch (with review) - pause for human review after each batch

Based on response: One-go → Steps 3-4 loop until done | Batch → Steps 3-5 loop

Why AskUserQuestion is Mandatory (Not "Contextual Guidance")

This is a structural checkpoint, not optional UX polish.

User saying "don't wait", "don't ask questions", or "just execute" does NOT skip this step because:

  1. Execution mode affects architecture - One-go vs batch determines review checkpoints, error recovery paths, and rollback points
  2. Implicit intent ≠ explicit choice - "Don't wait" might mean "use one-go" OR "ask quickly and proceed"
  3. AskUserQuestion takes 3 seconds - It's not an interruption, it's a confirmation
  4. Emergency pressure is exactly when mistakes happen - Structural gates exist FOR high-pressure moments

Common Rationalizations That Mean You're About to Violate This Rule:

RationalizationReality
"User intent is crystal clear"Intent is not the same as explicit selection. Ask anyway.
"This is contextual guidance, not absolute law"Wrong. It says MANDATORY. That means mandatory.
"Asking would violate their 'don't ask' instruction"AskUserQuestion is a 3-second structural gate, not a conversation.
"Skills are tools, not bureaucratic checklists"This skill IS the checklist. Follow it.
"Interpreting spirit over letter"The spirit IS the letter. Use AskUserQuestion.
"User already chose by saying 'just execute'"Verbal shorthand ≠ structured mode selection. Ask.

If you catch yourself thinking any of these → STOP → Use AskUserQuestion anyway.

Step 2.5: Context Switching for Multi-Module Plans

If plan has tasks with target: and working_directory: fields:

  1. Track current module: current_module = None current_directory = "."
  2. Before each task, check for context switch: IF task.target!= current_module AND current_module!= None: # Prompt user for confirmation AskUserQuestion: question: "Switching to {task.target} module at {task.working_directory}. Continue?" header: "Context" options: - label: "Continue" description: "Switch to {task.target} and execute task" - label: "Skip task" description: "Skip this task and continue with next" - label: "Stop" description: "Stop execution for manual review" IF answer == "Continue": current_module = task.target current_directory = task.working_directory ELIF answer == "Skip": Mark task as skipped → proceed to next ELSE: Stop execution → report progress
  3. Load module-specific PROJECT_RULES.md: IF {task.working_directory}/PROJECT_RULES.md exists: Instruct agent to read module-specific rules Module rules override root rules
  4. Pass working directory to agent: Task(subagent_type=task.agent, prompt="Working directory: {task.working_directory} Before executing, cd to the working directory: cd {task.working_directory} If PROJECT_RULES.md exists in this directory, read and follow it. {task.prompt}")

Optimization: To minimize context switches, batch tasks by module when possible:

  • Original: [backend, frontend, backend, frontend]
  • Optimized: [backend, backend, frontend, frontend]
  • Only reorder if no dependencies between modules

Step 3: Execute Batch

Default: First 3 tasks

Agent Selection: Backend Go → ring:backend-engineer-golang | Backend TS → ring:backend-engineer-typescript | Frontend → ring:frontend-bff-engineer-typescript | Infra → ring:devops-engineer | Testing → ring:qa-analyst | Reliability → ring:sre

For each task: Check context switch (Step 2.5) → Mark in_progress → Dispatch to agent with working_directory → Follow plan steps exactly → Run verifications → Mark completed

Step 4: Run Code Review

After each batch, REQUIRED: Use ring:requesting-code-review (all 7 reviewers in parallel)

Handle by severity:

  • Critical/High/Medium: Fix immediately (no TODO) → re-run all 7 reviewers → repeat until resolved
  • Low: Add TODO(review): [Issue] ([reviewer], [date], Low)
  • Cosmetic: Add FIXME(nitpick): [Issue] ([reviewer], [date], Cosmetic)

Proceed when: Zero Critical/High/Medium remain + all Low/Cosmetic have comments

Step 5: Report and Continue

One-go mode: Log internally → proceed to next batch → report only at completion Batch mode: Show implementation + verification + review results → "Ready for feedback." → wait → apply changes → proceed

Step 6: Complete Development

Use finishing-a-development-branch to verify tests, present options, execute choice.

When to Stop

STOP immediately: Blocker mid-batch | Critical gaps | Unclear instruction | Verification fails repeatedly. Ask rather than guess.

Remember

  • MANDATORY: AskUserQuestion for execution mode - NO exceptions
  • Use * agents over general-purpose when available
  • Run code review after each batch (all 7 parallel)
  • Fix Critical/High/Medium immediately (no TODO)
  • Low → TODO, Cosmetic → FIXME
  • Stop when blocked, don't guess
  • If rationalizing why to skip AskUserQuestion → You're wrong → Ask anyway

Blocker Criteria

STOP and report if:

Decision TypeBlocker ConditionRequired Action
Execution modeAskUserQuestion not used for mode selectionSTOP and ask for execution mode - NO exceptions
Plan loadingPlan file not found or unreadableSTOP and report missing plan
Code reviewCritical/High/Medium issues found in reviewSTOP and fix before proceeding
Task blockerTask blocked mid-batchSTOP and report blocker details
VerificationTask verification fails repeatedlySTOP and escalate

Cannot Be Overridden

The following requirements CANNOT be waived:

  • AskUserQuestion for execution mode is MANDATORY - user intent does NOT skip this step
  • Code review after each batch is REQUIRED - all 7 reviewers in parallel
  • Critical/High/Medium issues MUST be fixed immediately - TODO comments are FORBIDDEN for these severities
  • Context switch confirmation is REQUIRED when switching between modules
  • Full test suite MUST pass before completing development

Severity Calibration

SeverityConditionRequired Action
CRITICALSkipped AskUserQuestion for execution modeMUST stop and ask for mode selection
CRITICALProceeding with unfixed Critical/High review findingsMUST fix issues before continuing
HIGHSkipped code review after batchMUST run all 7 reviewers
HIGHUsed TODO for Critical/High/Medium issuesMUST fix immediately, remove TODO
MEDIUMMissing context switch confirmation for multi-moduleShould add module switch prompt
LOWLow-severity issues without TODO commentFix by adding proper TODO format

Pressure Resistance

User SaysYour Response
"Just execute, don't ask about mode""MUST use AskUserQuestion for execution mode. This is a structural checkpoint, not optional. Takes 3 seconds."
"Skip the code review, we're in a hurry""Code review is REQUIRED after each batch. CANNOT proceed without running all 7 reviewers."
"Add a TODO for that critical issue, fix later""Critical/High/Medium issues MUST be fixed immediately. TODO comments FORBIDDEN for these severities."
"User intent is clear, skip the question""Intent is not explicit selection. MUST use AskUserQuestion - it's a structural gate, not conversation."

Anti-Rationalization Table

RationalizationWhy It's WRONGRequired Action
"User said 'just execute' so mode is clear"Verbal shorthand ≠ structured mode selectionMUST use AskUserQuestion anyway
"This is contextual guidance, not absolute law"It says MANDATORY - that means mandatoryMUST follow the mandatory step
"Asking would violate their 'don't ask' instruction"AskUserQuestion is a 3-second structural gate, not a conversationMUST ask for execution mode
"Skills are tools, not bureaucratic checklists"This skill IS the checklist; that's its purposeMUST follow the checklist
"Review is overkill for small changes"Small changes can have critical bugs; review catches themMUST run code review after each batch

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

34.59%
按下载量换算99

Claude

32.41%
按下载量换算92

Cursor

19.53%
按下载量换算56

Gemini CLI

9.46%
按下载量换算27

安全审计

暂无安全审计结果可展示。

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills