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

executing-plans执行计划

Agent Skill

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

总安装

269

周安装

11

GitHub Stars

118

下载量

86
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/rileyhilliard/claude-essentials --skill executing-plans

简介

executing-plans 用于查找、检索和筛选相关信息,支持基于关键词快速定位候选结果。

  • 适用于任务执行与计划落地场景,帮助 Agent 获取操作依据。
  • 通过 npx skills add 从 GitHub 仓库安装,路径为 skills/executing-plans。
  • 安装前建议确认是否涉及文件写入或系统调用,确保符合权限策略。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Executing Plans

You are an orchestrator. Spawn and coordinate sub-agents to do the actual implementation. Group related tasks by subsystem (e.g., one agent for API routes, another for tests) rather than spawning per-task. Each agent re-investigates the codebase, so fewer agents with broader scope = faster execution.

1. Setup

Create a branch for the work unless trivial. Consider git worktrees for isolated environments.

Clarify ambiguity upfront: If the plan has unclear requirements or meaningful tradeoffs, use AskUserQuestion before starting. Present options with descriptions explaining the tradeoffs. Use multiSelect: true for independent features that can be combined; use single-select for mutually exclusive choices. Don't guess when the user can clarify in 10 seconds.

Track progress with tasks: Use TaskCreate to create tasks for each major work item from the plan. Update status with TaskUpdate as work progresses (in_progress when starting, completed when done). This makes execution visible to the user and persists across context compactions.

2. Group Tasks by Subsystem

Group related tasks to share agent context. One agent per subsystem, groups run in parallel.

Why grouping matters:

Without: Task 1 (auth/login) → Agent 1 [explores auth/]
         Task 2 (auth/logout) → Agent 2 [explores auth/ again]

With:    Tasks 1-2 (auth/*) → Agent 1 [explores once, executes both]
SignalGroup together
Same directory prefixsrc/auth/* tasks
Same domain/featureAuth tasks, billing tasks
Plan sectionsTasks under same ## heading

Limits: 3-4 tasks max per group. Split if larger.

Parallel: Groups touch different subsystems

Group A: src/auth/*    ─┬─ parallel
Group B: src/billing/* ─┘

Sequential: Groups have dependencies

Group A: Create shared types → Group B: Use those types

3. Execute

Dispatch sub-agents to complete task groups. Monitor progress and handle issues.

Task tool (general-purpose):
  description: "Auth tasks: login, logout"
  prompt: |
    Execute these tasks from [plan-file] IN ORDER:
    - Task 1: Add login endpoint
    - Task 2: Add logout endpoint

    Use skills: <relevant skills>
    Commit after each task. Report: files changed, test results

Architectural fit: Changes should integrate cleanly with existing patterns. If a change feels like it's fighting the architecture, that's a signal to refactor first rather than bolt something on. Don't reinvent wheels when battle-tested libraries exist, but don't reach for a dependency for trivial things either (no lodash just for _.map). The goal is zero tech debt, not "ship now, fix later."

Auto-recovery:

  1. Agent attempts to fix failures (has context)
  2. If can't fix, report failure with error output
  3. Dispatch fix agent with context
  4. Same error twice → stop and ask user

4. Verify

All four checks must pass before marking complete:

  1. Automated tests: Run the full test suite. All tests must pass.
  2. Manual verification: Automated tests aren't sufficient. Actually exercise the changes:

- API changes: Curl endpoints with realistic payloads - External integrations: Test against real services to catch rate limiting, format drift, bot detection - CLI changes: Run actual commands, verify output - Parser changes: Feed real data, not just fixtures

  1. DX quality: During manual testing, watch for friction: Fix DX issues inline or document for follow-up. Don't ship friction.

- Confusing error messages - Noisy output (telemetry spam, verbose logging) - Inconsistent behavior across similar endpoints - Rough edges that technically work but feel bad

  1. Code review (mandatory): After tests pass and manual verification is done, dispatch the ce:code-reviewer agent via Task tool to review the full diff against the base branch. This step is not optional. Load relevant domain skills into the agent based on what was implemented. Evaluate which apply and include them in the agent prompt: Handle the review verdict: Plan execution is not done until review findings are addressed.

- Skill(ce:architecting-systems) - system design, module boundaries - Skill(ce:managing-databases) - database work - Skill(ce:handling-errors) - error handling - Skill(ce:writing-tests) - test quality - Skill(ce:migrating-code) - migrations - Skill(ce:optimizing-performance) - performance work - Skill(ce:refactoring-code) - refactoring - Must fix: Fix all Critical and Important issues before marking complete - Suggestions: Fix these too unless there's a clear reason not to

5. Commit

After verification passes, commit only the changes related to this plan:

  1. Run git status to see all changes
  2. Stage files by name, not with git add -A or git add. - only stage files you modified as part of this plan
  3. Leave unrelated changes alone - if there are pre-existing staged or unstaged changes that aren't part of this work, don't touch them
  4. Write a commit message that summarizes what was implemented, referencing the plan

6. Cleanup

After committing:

  • Merge branch to main (if using branches)
  • Remove worktree (if using worktrees)
  • Mark plan file as COMPLETED
  • Move to ./plans/done/ if applicable

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.81%
按下载量换算32

Claude

28.58%
按下载量换算25

Cursor

20.53%
按下载量换算18

Gemini CLI

8.68%
按下载量换算7

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills