Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

workflow-tools工作流程工具

Agent Skill

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

总安装

11,496

周安装

479

GitHub Stars

公开资料未说明

下载量

3,832
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install workflow-tools

简介

workflow-tools 用于智能检测循环、并行决策和文件大小分析。

  • 适合优化任务执行顺序、提升处理效率和避免资源浪费。
  • 通过 clawhub 安装,使用 openclaw skills install workflow-tools 命令部署。
  • 建议定期审查分析结果,结合业务逻辑调整优化策略。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
workflow-tools
version
1.5.0
description
Work smarter with loop detection, parallel decisions, and file size analysis
author
Live Neon <hello@liveneon.ai>
homepage
https://github.com/live-neon/skills/tree/main/agentic/workflow-tools
repository
leegitw/workflow-tools
license
MIT
tags
[agentic, workflow, automation, orchestration, parallel, decision-making, loops, task-management]
layer
extensions
status
active
alias
wt
metadata
openclaw
requires
config
workspace

workflow-tools (工具)

Unified skill for workflow utilities including open loop detection, parallel/serial decision framework, MCE file analysis, and subworkflow spawning. Consolidates 4 skills.

Trigger: 明示呼出 (explicit invocation)

Source skills: loop-closer, parallel-decision, MCE (minimal-context-engineering), subworkflow-spawner

Removed: pbd-strength-classifier (redundant with /fm classify)

Installation

openclaw install leegitw/workflow-tools

Dependencies:

  • leegitw/failure-memory (for loop context)
  • leegitw/constraint-engine (for enforcement context)
# Install with dependencies
openclaw install leegitw/context-verifier
openclaw install leegitw/failure-memory
openclaw install leegitw/constraint-engine
openclaw install leegitw/workflow-tools

Standalone usage: Loop detection, parallel decisions, and MCE analysis work independently. Full integration provides constraint-aware workflow recommendations.

Data handling: This skill operates within your agent's trust boundary. When triggered, it uses your agent's configured model for workflow analysis and decision support. No external APIs or third-party services are called. Results are written to output/ subdirectories in your workspace.

⚠️ File access: This skill reads user-specified directories and files for analysis:

  • /wt loops [path] scans the specified directory (default: current working directory)
  • /wt mce <file> reads the specified file for size analysis

The metadata declares only config and output paths. See Security Considerations for details.

What This Solves

Workflows accumulate friction — loops that never close, decisions about parallel vs serial execution, files that grow too large. This skill provides utilities for common workflow problems:

  1. Loop detection — find DEFERRED, PLACEHOLDER, and TODO markers before marking work complete
  2. Parallel decisions — 5-factor framework for when to parallelize vs serialize
  3. MCE analysis — identify files exceeding size thresholds, suggest splits

The insight: Small tools that do one thing well. Don't overthink the workflow — detect, decide, analyze, move on.

Usage

/wt <sub-command> [arguments]

Sub-Commands

CommandCJKLogicTrigger
/wt loops循環scan(DEFERRED∨PLACEHOLDER∨TODO)→openloop[]Explicit
/wt parallel並列5因子→serial∨parallelExplicit
/wt mce極限file.lines>200→split_suggestions[]Explicit
/wt subworkflow副流task→spawn(clawhub.skill)Explicit

Arguments

/wt loops

ArgumentRequiredDescription
pathNoDirectory to scan (default: current)
--patternNoCustom patterns to detect (comma-separated)
--excludeNoPaths to exclude (comma-separated)

/wt parallel

ArgumentRequiredDescription
taskYesDescription of task to evaluate
--factorsNoSpecific factors to evaluate (default: all 5)

/wt mce

ArgumentRequiredDescription
fileYesFile to analyze
--thresholdNoLine threshold (default: 200)
--suggestNoGenerate split suggestions

/wt subworkflow

ArgumentRequiredDescription
taskYesTask description
--skillNoSpecific ClawHub skill to use
--backgroundNoRun in background

Configuration

Configuration is loaded from (in order of precedence):

  1. .openclaw/workflow-tools.yaml (OpenClaw standard)
  2. .claude/workflow-tools.yaml (Claude Code compatibility)
  3. Defaults (built-in)
# .openclaw/workflow-tools.yaml
loops:
  patterns:                  # Patterns to detect as open loops
    - "TODO:"
    - "FIXME:"
    - "HACK:"
    - "XXX:"
    - "DEFERRED:"
    - "PLACEHOLDER:"
  exclude:                   # Paths to exclude from scanning
    - "vendor/"
    - "node_modules/"
mce:
  threshold: 200             # Line threshold for MCE compliance
  warning_threshold: 300     # Line threshold for warning
parallel:
  default_factors: 5         # Number of factors to evaluate

Core Logic

Open Loop Detection

Scans for unclosed work items:

PatternTypeExample
DEFERRED:Postponed work// DEFERRED: handle edge case
PLACEHOLDER:Temporary code// PLACEHOLDER: implement auth
TODO:Task marker// TODO: add error handling
FIXME:Bug marker// FIXME: race condition
HACK:Technical debt// HACK: workaround for bug
XXX:Attention needed// XXX: review this logic

Parallel vs Serial Decision Framework

Five factors determine parallel suitability:

FactorQuestionParallel IfSerial If
TeamCan different people work on parts?Independent partsShared expertise needed
CouplingHow connected are the tasks?Loose couplingTight coupling
InterfaceAre boundaries clear?Well-definedFluid/evolving
PatternIs approach consistent?Divergent explorationConvergent refinement
IntegrationHow complex is merging?Simple mergeComplex coordination

Decision matrix:

Factors favoring parallelRecommendation
5/5Strongly parallel
4/5Parallel with coordination checkpoints
3/5Consider case-by-case
2/5Serial with parallel sub-tasks
0-1/5Serial

MCE (Minimal Context Engineering)

File size thresholds for context efficiency:

LinesStatusAction
≤200✓ MCE compliantNo action needed
201-300⚠ Approaching limitConsider refactoring
>300✗ Exceeds MCESplit recommended

Split suggestions based on:

  • Function/method boundaries
  • Logical groupings
  • Import dependencies
  • Test coverage boundaries

Subworkflow Spawning

Delegate tasks to specialized ClawHub skills:

Task → Skill Selection → Spawn → Monitor → Collect Results

Available skill categories:

  • research-*: Investigation and analysis
  • generate-*: Content generation
  • validate-*: Verification and testing
  • transform-*: Data transformation

Example: Deployment Workflow Analysis

/wt parallel "Deploy new payment service to production"
[PARALLEL VS SERIAL ANALYSIS]
Task: "Deploy new payment service to production"

Factor Analysis:
1. Team: ✗ Serial - Single SRE team handles deploys
2. Coupling: ✗ Serial - Payment depends on auth service
3. Interface: ✓ Parallel - Clear API contracts defined
4. Pattern: ✗ Serial - Requires sequential rollout (canary → staging → prod)
5. Integration: ✗ Serial - Payment gateway integration must be verified

Score: 1/5 factors favor parallel
Recommendation: SERIAL deployment
Rationale: High-risk service requiring careful sequential verification.

Example: Infrastructure Loop Detection

/wt loops infra/ --pattern "MANUAL:,HARDCODED:"
[OPEN LOOPS DETECTED]
Scanned: ./infra
Files checked: 23

Infrastructure Issues (5):
  infra/terraform/main.tf:45  HARDCODED: AWS region
  infra/k8s/deployment.yaml:78  MANUAL: replica count
  infra/docker/Dockerfile:12  TODO: multi-stage build
  infra/scripts/deploy.sh:34  FIXME: rollback not implemented
  infra/helm/values.yaml:56  PLACEHOLDER: production secrets

Summary: 2 high, 2 medium, 1 low priority
Action: Address HARDCODED and FIXME before next release.

Output

/wt loops output

[OPEN LOOPS DETECTED]
Scanned: ./src
Files checked: 47

Open loops found (12):

High Priority (FIXME, XXX):
  src/auth/handler.go:45  FIXME: race condition in token refresh
  src/api/client.go:123   XXX: review error handling

Medium Priority (TODO):
  src/handlers/user.go:78  TODO: add input validation
  src/db/queries.go:234    TODO: optimize query
  src/utils/hash.go:12     TODO: add caching

Low Priority (DEFERRED, PLACEHOLDER):
  src/config/loader.go:89  DEFERRED: support YAML config
  src/templates/email.go:34 PLACEHOLDER: email templates
  ...

Summary: 2 high, 5 medium, 5 low priority loops
Action: Address high priority loops before release.

/wt parallel output

[PARALLEL VS SERIAL ANALYSIS]
Task: "Implement authentication and authorization"

Factor Analysis:

1. Team (独立性):
   ✓ Parallel - Auth and authz can be assigned separately

2. Coupling (結合度):
   ✗ Serial - Authz depends on auth tokens

3. Interface (境界):
   ✓ Parallel - Clear token interface between them

4. Pattern (手法):
   ✓ Parallel - Both follow established patterns

5. Integration (統合):
   ✗ Serial - Token format must match exactly

Score: 3/5 factors favor parallel

Recommendation: SERIAL with parallel sub-tasks
Rationale: Core dependency between auth and authz, but sub-components
           within each can be developed in parallel.

Suggested approach:
1. Define token interface (serial, required first)
2. Implement auth + authz (parallel, once interface stable)
3. Integration testing (serial, final step)

/wt mce output

[MCE ANALYSIS]
File: src/handlers/user.go
Lines: 347

Status: ✗ EXCEEDS MCE THRESHOLD (200 lines)

Complexity Analysis:
  Functions: 12
  Avg function length: 29 lines
  Max function length: 67 lines (HandleUserUpdate)
  Import groups: 4

Split Suggestions:

1. Extract CRUD handlers (lines 45-180):
   → src/handlers/user_crud.go (~135 lines)
   - CreateUser, GetUser, UpdateUser, DeleteUser

2. Extract validation (lines 181-250):
   → src/handlers/user_validation.go (~70 lines)
   - ValidateUserInput, ValidateEmail, ValidatePassword

3. Keep orchestration (remaining):
   → src/handlers/user.go (~142 lines)
   - Handler setup, middleware, routing

After split: 3 files, all ≤200 lines ✓

/wt subworkflow output

[SUBWORKFLOW SPAWNED]
Task: "Research competitor authentication implementations"
Skill: research-web-analysis
Status: Running in background

Job ID: SW-20260215-001
Monitor: /wt subworkflow --status SW-20260215-001

Expected completion: ~5 minutes
Results will be written to: output/subworkflows/SW-20260215-001/

Integration

  • Layer: Extensions
  • Depends on: failure-memory (for loop context), constraint-engine (for enforcement context)
  • Used by: governance (for loop detection), review-orchestrator (for parallel decisions)

Failure Modes

ConditionBehavior
Invalid sub-commandList available sub-commands
File not foundError: "File not found: {path}"
No patterns foundInfo: "No open loops detected"
Skill not availableError: "Skill not found: {skill}"

Next Steps

After invoking this skill:

ConditionAction
Loops foundPrioritize and address high-priority loops
Parallel recommendedCreate parallel work streams
MCE exceededApply split suggestions
Subworkflow completeReview and integrate results

Workspace Files

This skill reads/writes:

output/
├── loops/
│   └── scan-YYYY-MM-DD.md    # Loop scan results
├── parallel-decisions/
│   └── task-YYYY-MM-DD.md    # Decision records
├── mce-analysis/
│   └── file-YYYY-MM-DD.md    # MCE analysis results
└── subworkflows/
    └── SW-YYYYMMDD-XXX/      # Subworkflow outputs
        ├── status.json
        └── results.md

Security Considerations

What this skill accesses:

  • Configuration files in .openclaw/workflow-tools.yaml and .claude/workflow-tools.yaml
  • User-specified directories via /wt loops [path] — scans for patterns (read-only)
  • User-specified files via /wt mce <file> — reads for size analysis (read-only)
  • Its own output directories (write):

- output/loops/ — loop scan results - output/parallel-decisions/ — decision records - output/mce-analysis/ — file analysis results - output/subworkflows/ — subworkflow outputs

⚠️ IMPORTANT: The metadata declares only config and output paths. However, /wt loops and /wt mce read arbitrary user-specified paths beyond the declared metadata. This is by design — analysis requires reading the files/directories you want to analyze.

What this skill does NOT access:

  • System environment variables
  • Network resources or external APIs

What this skill does NOT do:

  • Send data to external services
  • Execute arbitrary code
  • Modify source files (analysis is read-only)

⚠️ Path scanning (/wt loops): The /wt loops command accepts an arbitrary directory path argument. It will recursively scan the specified directory for loop patterns (TODO, FIXME, etc.). This is a read-only operation but can scan any directory you have filesystem access to. The skill does NOT restrict which paths can be scanned — use caution with sensitive directories. Consider using --exclude to skip sensitive paths.

Subworkflow spawning (/wt subworkflow): The /wt subworkflow command spawns other ClawHub skills installed in your environment.

  • Scope: Can invoke any skill installed via openclaw install
  • Permissions: Spawned skills execute with their own declared permissions (not elevated)
  • Categories: Typically research-*, generate-*, validate-*, transform-* skills
  • Risk: The effective permission footprint is the union of this skill plus any spawned skills

Review your installed skills (openclaw list) to understand the combined permission scope when using subworkflow spawning.

Provenance note: This skill is developed by Live Neon (https://github.com/live-neon/skills) and published to ClawHub under the leegitw account. Both refer to the same maintainer.

Acceptance Criteria

  • [ ] /wt loops detects all standard loop patterns
  • [ ] /wt loops categorizes by priority (high/medium/low)
  • [ ] /wt parallel evaluates all 5 factors
  • [ ] /wt parallel provides clear recommendation with rationale
  • [ ] /wt mce identifies files exceeding threshold
  • [ ] /wt mce --suggest generates actionable split suggestions
  • [ ] /wt subworkflow spawns ClawHub skills correctly
  • [ ] /wt subworkflow supports background execution
  • [ ] Results written to workspace files

*Consolidated from 4 skills as part of agentic skills consolidation (2026-02-15).*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

98.45%
按下载量换算3,773

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install workflow-tools 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills