Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问许可证需确认审计通过

plan-one-shot计划一击

Agent Skill

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

总安装

404

周安装

17

GitHub Stars

2

下载量

141
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ishk-sftckz/exspecso --skill plan-one-shot

简介

plan-one-shot 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 它可辅助查询项目进展、分析代码差异、跟踪 Issue 状态或协助生成协作摘要。
  • 通过 npx skills add 命令从指定仓库安装,具体用法请参考原始 README。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Plan One Shot

Replicate Antigravity plan-mode behavior using three artifacts and strict review gates.

Hard Rules

  1. Before approval: plan only. No code edits, no mutating commands, no commits.
  2. Always produce or update these artifacts together:

- .exspecso/<plan-name>/task.md - .exspecso/<plan-name>/implementation_plan.md - .exspecso/<plan-name>/walkthrough.md (stub only during planning)

  1. Match plan depth to scope.
  2. Block execution until user says exactly: Execute Plan.
  3. Do not skip artifact generation even for short tasks.
  4. After approval: execute strictly in task.md order and update statuses continuously.
  5. For existing projects, preserve architecture, naming, folder layout, and dependency choices unless the user asks for a change.
  6. Prefer minimal diff; do not introduce new abstractions/libraries unless justified by at least two concrete reuse points or a clear blocker.
  7. First call in a new conversation defaults to new planning. Do not infer an active plan from .exspecso/ history.
  8. Only resume prior plan artifacts when the user explicitly asks to continue/resume an existing plan.

Output Control Rules

  • Scope-fit depth: small tasks -> short plans; large tasks -> comprehensive plans.
  • No speculative engineering: avoid unrequested future-proofing.
  • No vague placeholders like "update logic"; describe exact changes.
  • Keep verification realistic and runnable in the current repository.
  • Prefer adapting existing modules over creating new ones.
  • Keep tool/process notes out of main workstream bullets unless they directly affect implementation steps.

Change Block Rules

Every file block must answer: what changes, where, and why. Nothing more.

  1. One block per logical change - Group files that move/modify together.
  2. Folder-level when 3+ files - Use folder path, list files inside.
  3. File-level only when unique logic - If a file needs different treatment, separate it.
  4. Implicit imports - Don't list every import update; state once at group level.
  5. One bullet = one action - No compound sentences.

Good:

#### [MOVE] [_features/resume/](file:///abs/path/resume/)
- From `insights/`: agents/resume-parser.ts, utils/resume.ts, service.ts
- Import paths update to `@/_features/resume`

Bad:

#### [CREATE] [_features/resume/agents/resume-parser.ts]
- Move resume parser agent from insights/agents/resume-parser.ts
- Update import from @/_features/ai/models

#### [CREATE] [_features/resume/utils/resume.ts]
- Move extractText and validateFileSize from insights/utils/resume.ts

Required Plan Structure

implementation_plan.md must follow this order:

  1. Title
  2. Objective - clear and concise, scaled to scope
  3. Proposed Changes
  4. Workstreams
  5. File blocks using this format:

- #### [MODIFY] [path/to/file.ts](file:///absolute/path/to/file.ts) - #### [CREATE] [path/to/new-file.ts](file:///absolute/path/to/new-file.ts) - #### [MOVE] [path/to/dest-folder/](file:///absolute/path/to/dest-folder/) for reorgs (list files inside) - #### [DELETE] [path/to/old-folder/](file:///absolute/path/to/old-folder/) for removals

  1. Verification Plan

Use --- between major workstreams.

Artifact Lifecycle

All artifacts for one plan must live under a single date-prefixed folder:

  • .exspecso/YYYY-MM-DD-<plan-name>/

<plan-name> rules:

  1. Lowercase.
  2. Keep letters, numbers, and spaces before slug conversion.
  3. Convert spaces/underscores to -.
  4. Remove filler words when possible (the, a, an, for, to, of).
  5. Keep first 3-6 meaningful words.
  6. Max length 36.
  7. Collapse repeated - and trim edges.

Conversation Session Gate

Treat plan state as conversation-scoped first, filesystem-scoped second.

  1. At the first skill invocation in a conversation, assume there is no active plan session.
  2. Default decision on first invocation:

- Decision: Create New Plan - Reason: no active plan in this conversation.

  1. Do not scan .exspecso/ to auto-select or continue an older plan on first invocation.
  2. Continue an existing plan only when the user explicitly requests it (for example: "continue existing plan", "resume plan", "continue implementing the plan") and provides a clear reference.
  3. Valid reference examples:

- folder name like 2026-02-16-my-plan - direct path like .exspecso/2026-02-16-my-plan/implementation_plan.md - explicit plan title that uniquely maps to one folder

  1. If the user asks to continue but the reference is missing or ambiguous, ask one targeted clarification for the exact plan folder/path before proceeding.
  2. Once a plan is created or resumed in the current conversation, treat it as the active plan session and apply the replan gate for subsequent requests.

Replan Decision Gate

For every new request after an active plan session exists, decide first:

  • Decision: Continue Current Plan
  • Decision: Create New Plan

Provide one short reason.

Create a new plan when objective/success criteria change materially, a new subsystem is introduced, architecture shifts significantly, or planned updates would rewrite roughly more than 40% of the current plan.

If there is no active plan session in the current conversation, do not apply this gate and create a new plan instead.

task.md Template

# <Task Name>

## Planning
- [/] Explore codebase and identify gaps
- [/] Write implementation plan

## Execution
- [ ] <work item>
- [ ] <work item>

## Verification
- [ ] <verification item>

Rules:

  • During planning, keep Planning items as [/].
  • Keep Execution/Verification unchecked until execution starts.
  • Keep items concise and action-oriented.

walkthrough.md Planning Stub

# <Feature Name> Walkthrough

## Status
Planning complete. Execution not started.

## Planned Scope
- <summary bullet>

## Verification Plan
- See `implementation_plan.md`.

Execution Tracking

After receiving Execute Plan:

  • Mark Planning items [x].
  • Mark exactly one in-progress item as [/].
  • Move [/] forward one item at a time.
  • Never leave more than one [/] item.
  • End with all checklist items marked [x].

Response Contract

  • If approval is missing, end with: Plan ready for review. Awaiting plan review comments.
  • If approved, start execution and respond with: Execute Plan received. Starting execution from task.md Execution section.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.59%
按下载量换算47

Claude

30.92%
按下载量换算44

Cursor

19.73%
按下载量换算28

Gemini CLI

10.15%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills