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

workflows-work工作流程工作

Agent Skill

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

总安装

242

周安装

10

GitHub Stars

35

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ratacat/claude-skills --skill workflows-work

简介

workflows-work 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围和维护状态,注意是否触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Arguments

[plan file, specification, or todo file path]

Work Plan Execution Command

Execute a work plan efficiently while maintaining quality and finishing features.

Introduction

This command takes a work document (plan, specification, or todo file) and executes it systematically. The focus is on shipping complete features by understanding requirements quickly, following existing patterns, and maintaining quality throughout.

Input Document

<input_document> #$ARGUMENTS </input_document>

Execution Workflow

Phase 1: Quick Start

  1. Read Plan and Clarify

- Read the work document completely - Review any references or links provided in the plan - If anything is unclear or ambiguous, ask clarifying questions now - Get user approval to proceed - Do not skip this - better to ask questions now than build the wrong thing

  1. Setup Environment First, check the current branch: current_branch=$(git branch --show-current) default_branch=$(git symbolic-ref refs/remotes/origin/HEAD 2>/dev/null | sed 's@^refs/remotes/origin/@@') # Fallback if remote HEAD isn't set if [-z "$default_branch"]; then default_branch=$(git rev-parse --verify origin/main >/dev/null 2>&1 && echo "main" || echo "master") fi If already on a feature branch (not the default branch): If on the default branch, choose how to proceed: Option A: Create a new branch git pull origin [default_branch] git checkout -b feature-branch-name Use a meaningful name based on the work (e.g., feat/user-authentication, fix/email-validation). Option B: Use a worktree (recommended for parallel development) skill: git-worktree # The skill will create a new branch from the default branch in an isolated worktree Option C: Continue on the default branch Recommendation: Use worktree if:

- Ask: "Continue working on [current_branch], or create a new branch?" - If continuing, proceed to step 3 - If creating new, follow Option A or B below - Requires explicit user confirmation - Only proceed after user explicitly says "yes, commit to [default_branch]" - Never commit directly to the default branch without explicit permission - You want to work on multiple features simultaneously - You want to keep the default branch clean while experimenting - You plan to switch between branches frequently

  1. Create Todo List

- Use TodoWrite to break plan into actionable tasks - Include dependencies between tasks - Prioritize based on what needs to be done first - Include testing and quality check tasks - Keep tasks specific and completable

Phase 2: Execute

  1. Task Execution Loop For each task in priority order: while (tasks remain): - Mark task as in_progress in TodoWrite - Read any referenced files from the plan - Look for similar patterns in codebase - Implement following existing conventions - Write tests for new functionality - Run tests after changes - Mark task as completed in TodoWrite - Mark off the corresponding checkbox in the plan file ([] → [x]) - Evaluate for incremental commit (see below) IMPORTANT: Always update the original plan document by checking off completed items. Use the Edit tool to change - [] to - [x] for each task you finish. This keeps the plan as a living document showing progress and ensures no checkboxes are left unchecked.
  2. Incremental Commits After completing each task, evaluate whether to create an incremental commit: Commit when... Don't commit when... Logical unit complete (model, service, component) Small part of a larger unit Tests pass + meaningful progress Tests failing About to switch contexts (backend → frontend) Purely scaffolding with no behavior About to attempt risky/uncertain changes Would need a "WIP" commit message Heuristic: "Can I write a commit message that describes a complete, valuable change? If yes, commit. If the message would be 'WIP' or 'partial X', wait." Commit workflow: ` # 1. Verify tests pass (use project's test command) # Examples: bin/rails test, npm test, pytest, go test, etc. # 2. Stage only files related to this logical unit (not git add.) git add <files related to this logical unit> # 3. Commit with conventional message git commit -m "feat(scope): description of this unit" ` Handling merge conflicts: If conflicts arise during rebasing or merging, resolve them immediately. Incremental commits make conflict resolution easier since each commit is small and focused. Note: Incremental commits use clean conventional messages without attribution footers. The final Phase 4 commit/PR includes the full attribution.
  3. Follow Existing Patterns

- The plan should reference similar code - read those files first - Match naming conventions exactly - Reuse existing components where possible - Follow project coding standards (see CLAUDE.md) - When in doubt, grep for similar implementations

  1. Test Continuously

- Run relevant tests after each significant change - Don't wait until the end to test - Fix failures immediately - Add new tests for new functionality

  1. Figma Design Sync (if applicable) For UI work with Figma designs:

- Implement components following design specs - Use figma-design-sync agent iteratively to compare - Fix visual differences identified - Repeat until implementation matches design

  1. Track Progress

- Keep TodoWrite updated as you complete tasks - Note any blockers or unexpected discoveries - Create new tasks if scope expands - Keep user informed of major milestones

Phase 3: Quality Check

  1. Run Core Quality Checks Always run before submitting: # Run full test suite (use project's test command) # Examples: bin/rails test, npm test, pytest, go test, etc. # Run linting (per CLAUDE.md) # Use linting-agent before pushing to origin
  2. Consider Reviewer Agents (Optional) Use for complex, risky, or large changes: Run reviewers in parallel with Task tool: Task(code-simplicity-reviewer): "Review changes for simplicity" Task(kieran-rails-reviewer): "Check Rails conventions" Present findings to user and address critical issues.

- code-simplicity-reviewer: Check for unnecessary complexity - kieran-rails-reviewer: Verify Rails conventions (Rails projects) - performance-oracle: Check for performance issues - security-sentinel: Scan for security vulnerabilities - cora-test-reviewer: Review test quality (Rails projects with comprehensive test coverage)

  1. Final Validation

- All TodoWrite tasks marked completed - All tests pass - Linting passes - Code follows existing patterns - Figma designs match (if applicable) - No console errors or warnings

Phase 4: Ship It

  1. Create Commit git add. git status # Review what's being committed git diff --staged # Check the changes # Commit with conventional format git commit -m "$(cat <<'EOF' feat(scope): description of what and why Brief explanation if needed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> EOF)"
  2. Capture and Upload Screenshots for UI Changes (REQUIRED for any UI work) For any design changes, new views, or UI modifications, you MUST capture and upload screenshots: Step 1: Start dev server (if not running) bin/dev # Run in background Step 2: Capture screenshots with agent-browser CLI agent-browser open http://localhost:3000/[route] agent-browser snapshot -i agent-browser screenshot output.png See the agent-browser skill for detailed usage. Step 3: Upload using imgup skill skill: imgup # Then upload each screenshot: imgup -h pixhost screenshot.png # pixhost works without API key # Alternative hosts: catbox, imagebin, beeimg What to capture: IMPORTANT: Always include uploaded image URLs in PR description. This provides visual context for reviewers and documents the change.

- New screens: Screenshot of the new UI - Modified screens: Before AND after screenshots - Design implementation: Screenshot showing Figma design match

  1. Create Pull Request git push -u origin feature-branch-name gh pr create --title "Feature: [Description]" --body "$(cat <<'EOF' ## Summary - What was built - Why it was needed - Key decisions made ## Testing - Tests added/modified - Manual testing performed ## Before / After Screenshots | Before | After | |--------|-------| |![before](URL) |![after](URL) | ## Figma Design [Link if applicable] --- [![Compound Engineered](https://img.shields.io/badge/Compound-Engineered-6366f1)](https://github.com/EveryInc/compound-engineering-plugin) 🤖 Generated with [Claude Code](https://claude.com/claude-code) EOF)"
  2. Notify User

- Summarize what was completed - Link to PR - Note any follow-up work needed - Suggest next steps if applicable


Key Principles

Start Fast, Execute Faster

  • Get clarification once at the start, then execute
  • Don't wait for perfect understanding - ask questions and move
  • The goal is to finish the feature, not create perfect process

The Plan is Your Guide

  • Work documents should reference similar code and patterns
  • Load those references and follow them
  • Don't reinvent - match what exists

Test As You Go

  • Run tests after each change, not at the end
  • Fix failures immediately
  • Continuous testing prevents big surprises

Quality is Built In

  • Follow existing patterns
  • Write tests for new code
  • Run linting before pushing
  • Use reviewer agents for complex/risky changes only

Ship Complete Features

  • Mark all tasks completed before moving on
  • Don't leave features 80% done
  • A finished feature that ships beats a perfect feature that doesn't

Quality Checklist

Before creating PR, verify:

  • All clarifying questions asked and answered
  • All TodoWrite tasks marked completed
  • Tests pass (run project's test command)
  • Linting passes (use linting-agent)
  • Code follows existing patterns
  • Figma designs match implementation (if applicable)
  • Before/after screenshots captured and uploaded (for UI changes)
  • Commit messages follow conventional format
  • PR description includes summary, testing notes, and screenshots
  • PR description includes Compound Engineered badge

When to Use Reviewer Agents

Don't use by default. Use reviewer agents only when:

  • Large refactor affecting many files (10+)
  • Security-sensitive changes (authentication, permissions, data access)
  • Performance-critical code paths
  • Complex algorithms or business logic
  • User explicitly requests thorough review

For most features: tests + linting + following patterns is sufficient.

Common Pitfalls to Avoid

  • Analysis paralysis - Don't overthink, read the plan and execute
  • Skipping clarifying questions - Ask now, not after building wrong thing
  • Ignoring plan references - The plan has links for a reason
  • Testing at the end - Test continuously or suffer later
  • Forgetting TodoWrite - Track progress or lose track of what's done
  • 80% done syndrome - Finish the feature, don't move on early
  • Over-reviewing simple changes - Save reviewer agents for complex work

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.3%
按下载量换算28

Claude

31.12%
按下载量换算25

Cursor

20.92%
按下载量换算17

Gemini CLI

10.62%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills