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

executing-tasks执行任务

Agent Skill

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

总安装

306

周安装

13

GitHub Stars

2

下载量

107
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/boojack/skills --skill executing-tasks

简介

执行任务技能用于根据项目定义和设计文档规划并落实开发任务。

  • 适用于 L/M 级项目,支持分阶段执行与结果验证。
  • 不参与设计决策,仅按既定规范推进实施流程。
  • 需读取 docs/plans/ 下的输入文件,注意路径和格式要求。
  • executing-tasks 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Executing Tasks

Takes definition.md (required) and design.md (optional, required for L-scope) from docs/plans/YYYY-MM-DD-<slug>/ as input. Plans tasks, then executes each one with validation.

Does NOT make design decisions, skip validation, or perform opportunistic refactors.

Phase 1: Planning

S-SIZE: 4 FIELDS — M/L-SIZE: ALL 8 FIELDS — NO EXCEPTIONS

Step 1: Load Inputs

Read definition.md from the issue folder. Extract: issue statement, current state, non-goals, open questions, scope.

If design.md exists, also read it and extract: design goals, proposed design.

If scope is L and design.md is missing, STOP — direct user to defining-issues first.

Step 2: Explore Codebase

  • Read files referenced in definition's current state
  • Identify patterns, naming conventions, testing style
  • Locate exact insertion points for new code

Step 3: Break into Tasks

Start ## Task List with a Task Index — one line per task:

T1: Add timing instrumentation [S] — T2: Refactor task queue [M] — T3: Add action selector [L]

S-size tasks (single file, <30 lines, no ambiguity) — compact format:

### T<N>: <short imperative title> [S]

**Objective**: One outcome, traceable to design or definition.
**Files**: `exact/path/to/file.ts`
**Implementation**: In `functionName()` (~line N), add X
**Validation**: `exact command` — expected output

M/L-size tasks (multi-file, moderate-to-complex logic) — full format:

### T<N>: <short imperative title> [M|L]

**Objective**: One outcome, traceable to design or definition.
**Size**: M (2-3 files, moderate logic) | L (multiple files, complex state/logic)
**Files**:
- Create: `exact/path/to/new_file.ts`
- Modify: `exact/path/to/existing.ts`
- Test: `tests/path/to/test.test.ts`
**Implementation**:
1. In `path/to/file.ts`: add import X, modify `functionName()` to do Z
2. In `tests/path/to/test.test.ts`: test "should X" — assert Y
**Boundaries**: What this task must NOT do
**Dependencies**: T<N> | None
**Expected Outcome**: Observable result (file exists, test passes, etc.)
**Validation**: `exact command` — expected output

Code detail guidance:

  • ✓ Interfaces, type definitions, function signatures
  • ✓ Key logic as pseudocode or commented outline
  • ❌ Complete function bodies
  • ❌ Complete test implementations

Step 4: Review Plan

Present the full task list to the user. Wait for approval before executing.

If the user requests changes to the plan, adjust and re-present. Do NOT begin execution until the user approves.


Phase 2: Execution

EXECUTE THE APPROVED PLAN — STOP ON SEMANTIC DEVIATIONS

Path Corrections vs Deviations

Continue (record as path correction):

  • File renamed but same purpose (e.g., auth.tsauthentication.ts)
  • Line numbers shifted but function/block is identifiable
  • Import path changed due to refactor

STOP (record as deviation):

  • Function/module doesn't exist and isn't a rename
  • The approach described in the plan doesn't fit the actual code
  • A dependency (library, API, service) is missing or incompatible
  • Task requires touching files not declared in the plan

Step 5: Execute Tasks

For each task:

Execute — Perform only actions in Implementation. Touch only declared files.

Validate — Run exact validation commands. Pass → record. Fail → attempt to fix within scope. If fix fails, STOP.

Record under ## Execution Log:

### T<N>: <title>

**Status**: Completed | Failed | Skipped
**Files Changed**: list
**Validation**: `command` — PASS/FAIL
**Path Corrections**: None | (describe minor corrections applied)
**Deviations**: None | (describe semantic deviation — then STOP)

On failure, include Blocker: what went wrong and what would need to change. Do NOT skip tasks or rationalize deviations.

Step 6: Declare Completion

Exactly one:

  • All tasks completed successfully
  • Execution halted at T<N> due to failure — what failed
  • Execution blocked pending clarification — what's needed

Output

Save to docs/plans/YYYY-MM-DD-<slug>/plan.md (after Step 4) and docs/plans/YYYY-MM-DD-<slug>/execution.md (after Step 6).

plan.md:

## Task List

## Out-of-Scope Tasks

execution.md:

## Execution Log

## Completion Declaration

Anti-patterns

Planning

  • ❌ 50-line function body → ✓ signature + outline
  • ❌ "Update the function" → ✓ "In executeTask() (~line 45), add X"
  • ❌ "Either add new RPC or extend existing" → ✓ pick one
  • ❌ T1 has exact insertion points, T8 says "add component" → ✓ same depth for same size

Execution

  • ❌ "Completed (with deviation)" → ✓ "Failed" + blocker
  • ❌ Skipping validation → ✓ run exact command, record result
  • ❌ Touching undeclared files → ✓ only declared files
  • ❌ "The plan says X but Y is clearly better" → ✓ execute as planned

Red Flags - STOP

If you catch yourself thinking:

  • "I'll make a design decision here to keep things moving"
  • "I don't need to verify this file path exists"
  • "I'll just fix this small thing while I'm here"
  • "This validation is obviously correct, I'll skip it"
  • "This is just a path correction" (when the approach itself changed)
  • "This file isn't in scope but it needs updating too"
  • "One more attempt should fix it"
  • "L-scope but no design.md — I'll just plan from the definition"

All of these mean: STOP. Record the issue. Do not continue.

Related Skills

  • defining-issues — prerequisite: produces definition.md and design.md
  • syncing-linear — push execution results to Linear after completion

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.21%
按下载量换算42

Claude

28.57%
按下载量换算31

Cursor

18.24%
按下载量换算20

Gemini CLI

8.32%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills