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

task-planning任务规划

Agent Skill

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

总安装

256

周安装

11

GitHub Stars

24

下载量

90
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/noobygains/godmode --skill task-planning

简介

task-planning 用于查找、检索和筛选相关信息,适合任务分解和计划制定场景。

  • 适用于 Codex、Claude、Cursor 和 Gemini CLI,支持基于关键词快速定位相关内容。
  • 可通过 GitHub 仓库和原始文档继续核验具体用法。
  • 安装前应确认权限范围和维护状态,避免误触发操作。
  • 建议在低风险任务中先行测试,确保不影响整体进度。

SKILL.md

Task Planning

Overview

Produce thorough implementation plans written for an engineer with zero familiarity with the codebase and unreliable design instincts. Spell out everything: which files to touch per task, exact code, testing procedures, relevant documentation, how to verify each step. Deliver the plan as granular, self-contained tasks. DRY. YAGNI. TDD. Frequent commits.

Assume the engineer is technically competent but knows almost nothing about the project's tooling or problem domain. Assume their test design skills are weak.

Announce at start: "I'm applying the task-planning skill to build the implementation plan."

Context: This should run in a dedicated worktree (created during the intent-discovery phase).

Save plans to: docs/plans/YYYY-MM-DD-<feature-name>.md

The Prime Directive

NO IMPLEMENTATION WITHOUT A PLAN FIRST

No exceptions. No workarounds. No shortcuts.

When to Use

Required:

  • Multi-step features (touching more than one file or behavior)
  • Bug fixes spanning multiple components
  • Refactoring across module boundaries
  • Any task requiring coordinated test + code + commit across files
  • When an intent-discovery session produces a spec or design

Not required:

  • Single-line fixes with obvious scope (typo, config value)
  • Adding a single test for existing code
  • Documentation-only changes
  • Renaming a variable in one file

Tempted to think "this is too simple for a plan"? If it touches more than one file, write the plan.

The Entry Protocol

Before writing a plan, confirm ALL of these:

  1. Design is approved - An intent-discovery session or human partner has confirmed the approach
  2. Scope is defined - You can enumerate every component that will change
  3. Requirements are concrete - You know what "done" looks like (acceptance criteria, not feelings)
  4. Tech stack is identified - You know the languages, frameworks, and libraries involved
  5. Test strategy is defined - You know how each piece will be verified
  6. Worktree is active - You are working in an isolated branch, not main

Any item unclear? Stop. Return to intent-discovery or consult your human partner. Do NOT write a plan with gaps -- gaps become defects.

Cognitive Traps

RationalizationWhat Is Actually True
"Too simple for a plan"Simple tasks contain hidden complexity. Plans take 5 minutes. Debugging takes hours.
"I'll figure it out as I go"That is called hacking. You will miss edge cases and skip verification steps.
"The spec IS the plan"Specs describe WHAT. Plans describe HOW, step by step, with file paths and commands.
"I already know what to do"Excellent. Write it down. If it is obvious, the plan writes itself in 2 minutes.
"Plans slow me down"Rework slows you down. Plans prevent rework. Net time saved every time.
"I'll add the plan after"A plan written after implementation is documentation, not a plan. It cannot prevent mistakes already made.

Guardrails

Never:

  • Write ambiguous steps like "implement the feature" or "add validation" -- specify exact code
  • Omit test commands or expected output from plan steps
  • Leave out file paths -- every step must reference exact paths
  • Begin implementing before the plan is saved and reviewed

Always:

  • Include complete code snippets, not descriptions of code
  • Specify exact shell commands with expected output for every verification step
  • List every file that will be created, modified, or deleted
  • End each task with a commit step including the precise commit message

Task Granularity

Each step is one action (2-5 minutes):

  • "Write the failing test" -- step
  • "Run it to confirm it fails" -- step
  • "Implement the minimal code to pass" -- step
  • "Run the tests to confirm they pass" -- step
  • "Commit" -- step

Plan Document Header

Every plan MUST open with this header:

# [Feature Name] Implementation Plan

> **For Claude:** REQUIRED SUB-SKILL: Use godmode:task-runner to implement this plan task-by-task.

**Goal:** [One sentence describing what this builds]

**Architecture:** [2-3 sentences about the approach]

**Tech Stack:** [Key technologies/libraries]

---

Task Template

### Task N: [Component Name]

**Files:**
- Create: `exact/path/to/file.py`
- Modify: `exact/path/to/existing.py:123-145`
- Test: `tests/exact/path/to/test.py`

**Step 1: Write the failing test**

def test_specific_behavior(): result = function(input) assert result == expected


**Step 2: Run test to verify failure**

Run: `pytest tests/path/test.py::test_name -v`
Expected: FAIL with "function not defined"

**Step 3: Write minimal implementation**

def function(input): return expected


**Step 4: Run test to verify it passes**

Run: `pytest tests/path/test.py::test_name -v`
Expected: PASS

**Step 5: Commit**

git add tests/path/test.py src/path/file.py git commit -m "feat: add specific feature"

Reminders

  • Exact file paths in every step
  • Complete code in the plan (not "add validation")
  • Exact commands with expected output
  • Reference relevant skills by name (e.g., godmode:test-first)
  • DRY, YAGNI, TDD, frequent commits

Execution Handoff

After saving the plan, offer the user a choice:

"Plan complete and saved to docs/plans/<filename>.md. Two execution options:

1. Delegated Execution (this session) - I dispatch a fresh subagent per task, review between tasks, fast iteration

2. Separate Session - Open a new session with task-runner, batch execution with checkpoints

Which approach?"

If Delegated Execution chosen:

  • REQUIRED SUB-SKILL: Use godmode:delegated-execution
  • Stay in this session
  • Fresh subagent per task + code review

If Separate Session chosen:

  • Guide them to open a new session in the worktree
  • REQUIRED SUB-SKILL: New session uses godmode:task-runner

Connections

Required workflow skills:

  • godmode:intent-discovery - Produces the spec/design that feeds into this skill
  • godmode:workspace-isolation - REQUIRED: Set up isolated workspace before planning
  • godmode:task-runner - Executes the plan this skill produces
  • godmode:delegated-execution - Alternative execution via subagents in same session
  • godmode:test-first - Every task in the plan follows TDD cycle
  • godmode:merge-protocol - Completes development after plan execution

Plan Construction Workflow

digraph plan_construction {
    rankdir=TB;
    node [shape=box, style=filled, fontname="Helvetica"];

    start [label="Task received", shape=ellipse, fillcolor="#e0e0e0"];
    check_scope [label="Multi-step?\nMultiple files?", shape=diamond, fillcolor="#ffffcc"];
    no_plan [label="No plan needed\nJust do it", fillcolor="#ccffcc"];
    gate [label="Entry Protocol\nAll 6 items verified?", shape=diamond, fillcolor="#ffffcc"];
    go_back [label="Return to\nintent-discovery\nor ask human", fillcolor="#ffcccc"];
    write_header [label="Write plan header\nGoal / Architecture / Stack", fillcolor="#cce5ff"];
    write_tasks [label="Write granular tasks\nFiles / Test / Implement / Verify / Commit", fillcolor="#cce5ff"];
    review [label="Review plan\nAll paths exact?\nAll code complete?", shape=diamond, fillcolor="#ffffcc"];
    fix_plan [label="Fill gaps\nin plan", fillcolor="#ffcccc"];
    save [label="Save to\ndocs/plans/", fillcolor="#ccffcc"];
    handoff [label="Offer execution\nchoice to human", fillcolor="#ccffcc"];

    start -> check_scope;
    check_scope -> no_plan [label="no"];
    check_scope -> gate [label="yes"];
    gate -> go_back [label="gaps"];
    gate -> write_header [label="all verified"];
    go_back -> gate [label="resolved"];
    write_header -> write_tasks;
    write_tasks -> review;
    review -> fix_plan [label="gaps found"];
    fix_plan -> review;
    review -> save [label="complete"];
    save -> handoff;
}

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.47%
按下载量换算32

Claude

29.61%
按下载量换算27

Cursor

17.28%
按下载量换算16

Gemini CLI

8.88%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills