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

autonomous-workflow自主工作流程

Agent Skill

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

总安装

849

周安装

34

GitHub Stars

7

下载量

275
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mthines/gw-tools --skill autonomous-workflow

简介

自主工作流程支持从任务输入到测试通过的 Pull Request 交付全流程自动化执行。

  • 适用于复杂功能开发,采用隔离 Git 工作树确保每次变更独立可追溯。
  • 在执行前强制要求先检测工作模式并完成工件内容规划,避免盲目编码导致混乱。
  • 安装前应检查其是否调用外部构建工具或部署脚本,防范安全风险和环境污染。
  • autonomous-workflow 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Autonomous Workflow

Execute complete feature development cycles autonomously — from task intake through tested PR delivery — using isolated Git worktrees.


CRITICAL: Before Starting ANY Work

You MUST complete these steps IN ORDER before writing any code:

Step 1: Detect Workflow Mode (MANDATORY)

Analyze the task scope to determine the workflow mode:

ModeCriteriaArtifacts Required
Full4+ files OR complex/architecturalYES - MANDATORY
Lite1-3 files AND simple/straightforwardNo

When in doubt, choose Full Mode.

Step 2: Plan Artifact Content (Full Mode ONLY)

For Full Mode, you will need these artifacts. Do NOT create the files yet — they must be created inside the worktree after Phase 2, not on the main branch.

FilePurposeCreated
plan.mdImplementation strategy, decisions, requirements, progress logAfter Phase 2
walkthrough.mdFinal summary for PR deliveryPhase 6

plan.md is the single source of truth. It must be comprehensive enough that a new Claude session can execute from it alone without the original conversation.

DO NOT create artifact files on the main branch.

Step 3: Announce Mode Selection

State your mode selection explicitly:

"This is a Full Mode task (affects 5+ files). Creating .gw/{branch-name}/ artifacts after worktree setup."

or

"This is a Lite Mode task (2 files, simple fix). Proceeding without artifacts."

Prerequisites: gw CLI Installation

Before Phase 2 (Worktree Setup), verify the gw CLI is installed:

which gw

If gw is NOT installed

STOP and prompt the user to install gw. The workflow cannot proceed without it.

Installation options (present to user):

# Via npm (recommended)
npm install -g @gw-tools/gw

# Via Homebrew (macOS)
brew install mthines/gw-tools/gw

# Via pnpm
pnpm add -g @gw-tools/gw

After installation, set up shell integration:

# For zsh (add to ~/.zshrc)
echo 'eval "$(gw install-shell)"' >> ~/.zshrc
source ~/.zshrc

# For bash (add to ~/.bashrc)
echo 'eval "$(gw install-shell)"' >> ~/.bashrc
source ~/.bashrc

Verify installation:

gw --version
gw --help

Then initialize gw in the repository (if not already done):

gw init
gw init --auto-copy-files .env,secrets/ --post-checkout "npm install"

Once gw is installed and configured, resume the workflow from Phase 2.


Rules

RuleDescription
overviewHIGH - Workflow phases, when to use, expected outcomes
smart-worktree-detectionCRITICAL - Fuzzy match task to current worktree before creating new
phase-0-validationCRITICAL - MANDATORY - Validate requirements before any work
phase-1-planningHIGH - Deep codebase analysis and implementation planning
phase-2-worktreeCRITICAL - MANDATORY - Create isolated worktree with gw add
phase-3-implementationHIGH - Incremental implementation with verification after each change
phase-4-testingCRITICAL - Fast iteration loop until tests pass (Ralph Wiggum pattern)
phase-5-documentationMEDIUM - Update README, CHANGELOG, API docs
phase-6-pr-creationHIGH - Create draft PR, deliver results
phase-7-cleanupLOW - Optional worktree removal after merge
decision-frameworkHIGH - Branch naming, test strategy, iteration decisions
error-recoveryHIGH - Recovery procedures for common errors
safety-guardrailsCRITICAL - Validation checkpoints, resource limits, rollback
parallel-coordinationHIGH - Multi-agent coordination, handoff protocol
artifacts-overviewHIGH - Two-artifact pattern (Plan, Walkthrough), file locations
walkthrough-generationMEDIUM - Final summary generation at Phase 6

Templates

TemplatePurpose
plan.template.mdImplementation plan with progress log
walkthrough.template.mdFinal summary for PR delivery
agent.template.mdAgent file (copy to ~/.claude/agents/)
routing-rule.template.mdAuto-trigger rule (copy to .claude/rules/)

Auto-Trigger Setup (Recommended)

Install the agent and routing rule so Claude auto-triggers on phrases like *"independently"*, *"in isolation"*.

Option A: Global (personal use — works in all projects)

mkdir -p ~/.claude/agents && \
  ln -sf ~/.claude/skills/autonomous-workflow/templates/agent.template.md \
     ~/.claude/agents/autonomous-workflow.md

Then add the routing rule per-project:

mkdir -p .claude/rules && \
  ln -sf ~/.claude/skills/autonomous-workflow/templates/routing-rule.template.md \
     .claude/rules/autonomous-workflow-routing.md

Option B: Project-level (team use — committable to git, customizable)

mkdir -p .claude/agents .claude/rules && \
  ln -sf ~/.claude/skills/autonomous-workflow/templates/agent.template.md \
     .claude/agents/autonomous-workflow.md && \
  ln -sf ~/.claude/skills/autonomous-workflow/templates/routing-rule.template.md \
     .claude/rules/autonomous-workflow-routing.md

To customize the agent for a specific project, copy instead of symlink and edit directly. See routing-rule.template.md and agent.template.md for details.

Quick Reference

Full Mode (4+ files, complex changes)

PhaseCommand/Action
0. ValidationAsk clarifying questions, get user confirmation, detect mode
1. PlanningAnalyze codebase, prepare plan content in conversation (verbose, all detail)
2. Worktreegw add feat/feature-name, then CREATE & POPULATE .gw/{branch}/plan.md
3. ImplementationCode in worktree, verify after editing, update Progress Log at milestones
4. Testingnpm test, iterate until passing, log results in Progress Log
5. DocumentationUpdate README, CHANGELOG
6. PR CreationCREATE walkthrough.md, gh pr create --draft, SHOW walkthrough to user
7. Cleanupgw remove feat/feature-name (after merge)

Lite Mode (1-3 files, simple changes)

PhaseCommand/Action
0. ValidationQuick clarification if needed
1. PlanningBrief mental plan (no artifact files)
2. Worktreegw add fix/bug-name
3. ImplementationCode directly, commit when done
4. Testingnpm test, fix any failures
5. PR Creationgh pr create --draft

Key Principles

  1. Detect workflow mode FIRST: Determine Full vs Lite before any other action.
  2. plan.md is the single source of truth: Must be comprehensive enough for a new session to execute alone.
  3. Always validate first (Phase 0): Never skip directly to implementation.
  4. Always create worktree (Phase 2): Isolation is mandatory.
  5. Verify after editing: Run fast checks after each change, full suite before PR.
  6. Iterate until correct: No artificial iteration limits (Ralph Wiggum pattern).
  7. CREATE walkthrough.md AND SHOW IT at Phase 6: MANDATORY for Full Mode.
  8. Stop and ask when blocked: Don't guess on ambiguity.

Artifact System

The workflow produces two artifacts in .gw/{branch-name}/:

ArtifactFileCreatedPurpose
Planplan.mdPhase 2 (end)Implementation strategy, decisions, progress log
Walkthroughwalkthrough.mdPhase 6Final summary for PR delivery

Files are gitignored and grouped by branch for easy browsing.

All timestamps in artifact frontmatter MUST use full ISO 8601 with time: YYYY-MM-DDTHH:MM:SSZ (e.g. 2026-03-07T14:30:00Z).

Workflow Flow

Phase 0: Validation <- MANDATORY
    | (user confirms)
Phase 1: Planning (prepare content IN CONVERSATION, no files yet)
    | (plan validated)
Phase 2: Worktree Setup <- MANDATORY
    | Full Mode: CREATE & POPULATE plan.md INSIDE worktree
    | (worktree created, plan.md populated)
Phase 3: Implementation
    | Verify after editing. Update Progress Log at milestones.
    | (code complete)
Phase 4: Testing <- iterate until passing
    | (all tests pass)
Phase 5: Documentation
    | (docs complete)
Phase 6: PR Creation
    | Full Mode: CREATE walkthrough.md + SHOW to user
    | (draft PR delivered)
Phase 7: Cleanup (optional)

Smart Worktree Detection

Before creating a new worktree, the workflow checks if the current context matches the task:

ScenarioAction
On main/masterAlways create new worktree
Worktree name matches task keywordsPrompt user to continue or create new
No keyword matchCreate new worktree

Fast Iteration Loop (Phase 4)

Based on the Ralph Wiggum pattern:

while not all_tests_pass:
    1. Run tests
    2. If pass: done
    3. If fail: analyze -> fix -> commit -> continue
    4. Safety: warn at 10 iterations, stop at 20

Troubleshooting Quick Reference

IssueCheckRecovery
Wrong worktreegw list, pwdgw cd <correct-branch>
gw command not foundwhich gwnpm install -g @gw-tools/gw
Secrets missingcat.gw/config.jsongw sync <branch>.env
Tests keep failingplan.md Progress LogFocus on ONE failure, escalate at 7+
Agent hallucinated cmdError messageSee error-recovery
plan.md emptycat.gw/{branch}/plan.mdSTOP, populate plan.md before proceeding
walkthrough.md missingls.gw/{branch}/Create before announcing completion

Related Skills

References

Detailed examples and scenarios (loaded on-demand):

Research Sources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.63%
按下载量换算103

Claude

27.59%
按下载量换算76

Cursor

18.63%
按下载量换算51

Gemini CLI

10.37%
按下载量换算29

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills