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

team-execute团队执行

Agent Skill

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

总安装

225

周安装

9

GitHub Stars

公开资料未说明

下载量

73
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/wjaszczuk/agent-team-skills --skill team-execute

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用于任务执行跟踪、进度监控或结果验证等操作场景。
  • 支持多宿主环境,便于在不同 AI 工具间迁移使用。

SKILL.md

Team Execute

Orchestrate implementation of a plan using named Developer and Architect agents.

Announce at start: "I'm using the team-execute skill to implement this plan."

Setup

Step 1: Locate plan and state

Ask user for plan path if not provided. State file is <plan-path-without-extension>.state.json.

Read both files. If state file doesn't exist, assume all tasks pending.

Step 2: Set up worktree

REQUIRED SUB-SKILL: Use superpowers:using-git-worktrees to create or switch to the feature worktree.

Save worktree path and branch to .state.json.

Step 3: Generate and display resume prompt

Generate the resume prompt and show it to the user:

=== RESUME PROMPT ===
If this session is interrupted, start a new session and paste this:

Resume implementation:
- Plan: <plan path>
- State: <state.json path>
- Worktree: <worktree path> (branch: <branch>)
- Next task: #<N> "<title>"

Use team-execute skill to continue.
====================

Save this prompt to .state.jsonresumePrompt field.

Step 4: Determine starting point

Check .state.json for tasks with status: "completed" — skip those. Find first pending or in_progress task — start there.

Show initial progress checklist:

Progress:
✅ Task 1: <title>    (completed)
🔄 Task 2: <title>    (in progress / next up)
⏳ Task 3: <title>    (pending)

Per-Task Loop

For each pending task (in order):

Phase A: Developer

Step A1: Update state Set task status: "in_progress", startedAt: <timestamp>, agent: "developer" in .state.json.

Step A2: Print checklist update

🔄 Task N: <title> — Developer agent starting...

Progress:
✅ Task 1: <title>
🔄 Task 2: <title>
⏳ Task 3: <title>

Step A3: Dispatch Developer agent

Use the Agent tool to launch a team-developer agent. Provide:

  • Full task text (copy from plan — do NOT ask agent to read the plan)
  • Project context: tech stack, conventions, ADRs location, design doc location
  • Worktree path and branch
  • .state.json path

Wait for Developer agent to complete and report back.

Step A4: Handle questions If Developer agent asks questions before starting, answer them. Provide all needed context.

Step A5: Update state with commit Update .state.json: set commit: <SHA> from Developer report.

Phase B: Architect Review

Step B1: Get diff

git -C <worktree> diff HEAD~1 HEAD

Step B2: Dispatch Architect agent

Use the Agent tool to launch a team-architect agent. Provide:

  • The git diff
  • Full task spec (copy from plan)
  • Paths to ADRs and design documents (let agent read them)
  • Project conventions summary

Wait for Architect agent verdict.

Step B3: Handle CHANGES_REQUIRED

If CHANGES_REQUIRED:

  • Show issues to user
  • Dispatch Developer agent again with: original task + list of issues to fix
  • After fix: re-dispatch Architect agent
  • Repeat until APPROVED

Step B4: Mark task complete

Update .state.json:

{
  "status": "completed",
  "completedAt": "<timestamp>"
}

Update plan file — check off task in ## Progress:

- [x] Task N: <title>

Step B5: Push and print checklist

git -C <worktree> push origin <branch>

Print updated checklist:

✅ Task N complete — pushed to <branch>

Progress:
✅ Task 1: <title>
✅ Task 2: <title>
🔄 Task 3: <title>
⏳ Task 4: <title>

Completion

After all tasks complete:

Step 1: Cleanup state file

rm docs/plans/*.state.json
git add -A docs/plans/
git commit -m "chore: remove plan state file (implementation complete)"
git push

Step 2: Update plan Progress section

All checkboxes should be [x]. Commit the plan file update:

git add docs/plans/<plan>.md
git commit -m "docs: mark plan complete"
git push

Step 3: Final summary

Print:

✅ All tasks complete!

Progress:
✅ Task 1: <title>
✅ Task 2: <title>
...

Step 4: Finish branch

REQUIRED SUB-SKILL: Use superpowers:finishing-a-development-branch

Resume After Interruption

If user pastes a resume prompt:

  1. Read .state.json — it has current state
  2. Skip completed tasks
  3. Resume from first pending or in_progress task
  4. Continue per-task loop as normal

Red Flags

Never:

  • Skip the resume prompt display at start
  • Let an agent read the plan file themselves (provide full text)
  • Move to Architect before Developer is done
  • Skip Architect review
  • Proceed to next task if Architect returns CHANGES_REQUIRED
  • Delete .state.json before all tasks are complete
  • Push to main/master

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.74%
按下载量换算28

Claude

31.62%
按下载量换算23

Cursor

17.77%
按下载量换算13

Gemini CLI

9.55%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills