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

task任务管理

Agent Skill

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

总安装

490

周安装

20

GitHub Stars

公开资料未说明

下载量

158
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/camacho/ai-skills --skill task

简介

用于查找、检索和筛选相关信息。task 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或命令执行。
  • 支持 Codex、Claude、Cursor、Gemini CLI,通过 GitHub 安装。

SKILL.md

/task

Surface Routing

Before starting, pick the right tool for the job:

ActivityToolWhy
Architecture planningClaude Code /planOpus, 1M context
Feature implementationClaude CodeHooks, subagents, worktrees
Quick single-file fixVS Code Claude extFaster for small scope
DevOps / terminalCodex CLIStrong at terminal tasks
Background refactorCodex CloudFire-and-forget PR
Code reviewGitHub ActionsAsync, no session cost
Test writingsubagent: test-writer (CC) / inline (Codex)Isolated context
Documentationsubagent: doc-writer (CC) / inline (Codex)Cheap, focused
ResearchClaude.ai ProjectsPersistent, web search

Cross-Tool Notes

This skill uses Claude Code features. Portable equivalents for Codex/Cursor:

Claude CodeCodex / Cursor
TaskCreate / TaskUpdateMarkdown checklist in .branch-context.md
EnterWorktreeUse absolute paths + git -C for all ops
/orient, /brainstorming, etc.Read .agents/skills/<name>/SKILL.md and follow manually
Subagent dispatch (implementer, test-writer)Execute sequentially in main session
Agent TeamsNot supported — use sequential work
/review, /plan-reviewRead .agents/skills/review/SKILL.md and follow manually

Args

InvocationBehavior
/task <description>Start new task
/task #<issue>Start from GitHub issue
/taskStart new task — ask what to work on

Copilot Mode

In copilot mode (operating-mode.md), the workflow is a menu, not a pipeline:

  • Present available steps. Execute what the human asks. Don't enforce order.
  • Worktree-first is relaxed — primary worktree writes are allowed.
  • Invariants below still apply except where operating-mode.md explicitly overrides.
  • If the human says "follow the workflow," run step-by-step but pause for approval at each transition.

Invariants

These rules are agent-interpreted guidance, not machine-enforced. They cannot be skipped regardless of task type or scope unless noted:

REQUIRE worktree BEFORE code
REQUIRE orient.complete BEFORE plan
REQUIRE review(plan).pass BEFORE build UNLESS scope == one_sentence
REQUIRE validate.pass BEFORE review(build)
REQUIRE review(build).pass BEFORE archive
REQUIRE branch.base IS CURRENT(origin/main) UNLESS stacking

WHEN ci.down:
  USE local_merge AT step_8
WHEN files_touched MATCH [AGENTS.md, config.toml, sync.sh, skills]:
  REQUIRE codex_specialist IN review_panel

Steps

Persist significant decisions to .branch-context.md during Steps 3-5 — not just at reflect/bail time.

Step 0 — Bootstrap

Create a task list to track progress through the steps:

  • Claude Code: TaskCreate with one item: "Step 1 — Orient." Remaining steps populated after orient.
  • Codex/Cursor: add a markdown checklist to .branch-context.md.

Step 1 — Orient

Invoke /orient with args (Codex: read .agents/skills/orient/SKILL.md). It produces:

  • task_type: feat / fix / chore / docs / test / refactor
  • scope: can the entire diff be described in one sentence? Yes → short path (skip Steps 3-4). No → full path. Note: short description ≠ small change — "update all deps" sounds short but may touch dozens of files.

After orient completes, populate the task list with remaining steps for the detected path. Short path (one-sentence scope) skips Steps 3-4.

Step 2 — Isolate

Invoke /isolate with the branch name from Step 1 (Codex: read .agents/skills/isolate/SKILL.md). It handles freshness (fetch origin main), worktree creation from origin/main, directory selection, gitignore safety, dependency install, and baseline test verification. If already in a worktree, it freshens the branch instead of creating a new one.

Step 3 — Plan

One-sentence scope: SKIP — proceed to Step 5. Log: "Step 3 — Plan: SKIPPED (one-sentence scope)."

Full scope:

3a. Brainstorm. Invoke /brainstorming with the task description. One round — refine the idea, confirm constraints, explore 2-3 approaches.

3b. Write plan. Write a plan to ai-workspace/plans/<name>.md using the template at ai-workspace/plans/TEMPLATE.md. Fill all template fields including:

  • Branch, created date, status
  • Threat model (advisory or adversarial)
  • Scope ceiling
  • Task description and scope
  • Steps with checkboxes (include files to create/modify and testing strategy)
  • Confidence scaffold (recommended for adversarial threat models)

Do NOT review the plan here — that's Step 4.

Step 4 — Review Plan

No plan (one-sentence scope): SKIP — proceed to Step 5.

Has plan:

Run /review against the plan file (Codex: read .agents/skills/review/SKILL.md and follow manually).

  • Auto-assemble the plan review panel:

- Always: technical-editor - Code architecture: add architect-reviewer - AGENTS.md / config.toml / sync.sh / skills: add codex-specialist - Auth / credentials / permissions: add security-auditor - UI / component / CSS: add ui-designer

  • Gate: P2 (fix P0-P2, record P3+)
  • Cap: 3 rounds

On APPROVE: proceed to Step 5. On ESCALATE after 3 rounds: stop and present unresolved findings to human.

Step 5 — Build

Invoke /build (Codex: read .agents/skills/build/SKILL.md). It handles plan parsing, batch-sequential/task-parallel subagent dispatch, TDD, inter-batch regression checks, and the validate hard gate. For hotfixes or one-sentence scope, it implements directly with TDD. Step 6 cannot begin until /build reports validate passing.

Step 6 — Review Build

Run /review against the changed files (git diff main...HEAD) (Codex: read .agents/skills/review/SKILL.md and follow manually).

  • Auto-assemble the code review panel (differs from Step 4's plan panel):

- Always: code-reviewer - Code architecture: add architect-reviewer - AGENTS.md / config.toml / sync.sh / skills: add codex-specialist - Auth / credentials / permissions: add security-auditor - UI / component / CSS: add design-reviewer

  • Gate: P2
  • Cap: 3 rounds

On APPROVE: proceed to Step 7. On ESCALATE: stop and present unresolved findings to human.

Step 7 — Archive

Has plan:

Invoke /archive (Codex: fill Outcomes & Learnings in plan file, rename to .done.md). It fills Outcomes & Learnings in the plan file and renames to .done.md.

No plan (hotfix / one-sentence):

Ensure root cause or change rationale is documented in the commit message body. No plan file to archive.

Step 8 — Ship

Invoke /ship (Codex: read .agents/skills/ship/SKILL.md). It handles validation, option presentation (PR + auto-merge vs local merge vs keep vs discard), CI up/down routing, shallow-clone merge for the local path, and worktree cleanup. CI status comes from conversation context — if the user said CI is down, /ship uses the local merge path.

When files touched include AGENTS.md, config.toml, sync.sh, or skills → codex-specialist must be in the review panel (enforced at Step 6).

Step 9 — Reflect

Invoke /reflect (Codex: read .agents/skills/reflect/SKILL.md). It handles:

  • Reading .branch-context.md for session learnings
  • Writing to MEMORY.md on main
  • Filing follow-up issues if needed
  • Cleaning up branch artifacts

Bail

Invoke /bail at any step to abort cleanly. It handles: learnings capture to .branch-context.md, issue update, PR close if open, worktree cleanup. Bail replaces Step 9 (Reflect) — it captures learnings itself. Clean up any open task list items.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.19%
按下载量换算56

Claude

30.57%
按下载量换算48

Cursor

17.89%
按下载量换算28

Gemini CLI

10.93%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills