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

workflow-orchestration工作流程编排

Agent Skill

用于辅助提示词、系统指令、Agent 行为约束和工作流模板的整理。它适合让 Agent 规范任务边界、统一输出格式、拆分操作步骤或优化提示词可复用性。使用时需要保留真实业务约束,不要把示例当硬规则;涉及自动执行、外部工具或高风险操作时,应在提示词中明确确认步骤、权限边界和失败处理方式。

总安装

517

周安装

22

GitHub Stars

11

下载量

181
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/b-open-io/prompts --skill workflow-orchestration

简介

工作流程编排技能将复杂任务拆解为并行子任务,由专用子代理协同执行以提升效率。

  • 适用于多领域协作、时间敏感型操作或需同时开展研究、开发与测试的复合场景。
  • 核心策略是任务分解、代理分配与结果聚合,显著缩短整体完成时间。
  • 使用前需明确任务边界与依赖关系,避免子任务间产生冲突或资源争用。
  • 建议在小规模原型验证后再扩展至多代理并行,防止失控或成本激增。

SKILL.md

Workflow Orchestration

Orchestrate complex workflows by breaking them into parallel sub-tasks executed by specialized subagents, dramatically reducing completion time while maintaining quality.

When to Use

  • Complex multi-step tasks that can be decomposed
  • Tasks requiring multiple domain expertise areas
  • Time-sensitive operations needing parallel execution
  • Work requiring research, implementation, testing, and documentation simultaneously
  • Any task where "throwing more compute at it" via parallel agents makes sense

Core Strategy

1. Task Decomposition

Break complex tasks into independent, parallel-executable subtasks:

Example: Authentication System Implementation

Sequential (5+ hours):
Research → Design → Code → Test → Document → Review

Parallel (1 hour):
├── research-specialist: OAuth 2.1 patterns research
├── auth-specialist: Core authentication implementation
├── test-specialist: Test suite creation
├── documentation-writer: API documentation
└── code-auditor: Security review

2. Agent Selection

Match subtasks to specialized agents:

Task TypeRecommended Agent
Researchresearch-specialist
Authenticationauth-specialist
Security Reviewcode-auditor
API Integrationintegration-expert
UI/UX Designdesign-specialist
Documentationdocumentation-writer
Testingtest-specialist
Architecturearchitecture-reviewer

3. Clear Boundaries

Define exactly what each agent should accomplish:

## Agent Task Specification

**Agent**: research-specialist
**Task**: Research OAuth 2.1 PKCE flow
**Deliverable**:
- Summary of PKCE benefits
- Code examples in TypeScript
- Security considerations
**Constraints**: Focus on browser-based flows only

Implementation Pattern

Step 1: Analyze and Decompose

Original Task: "Build a complete SaaS billing system"

Decomposition:
1. Database schema design (db-specialist)
2. Stripe integration (payments-specialist)
3. Billing UI components (design-specialist)
4. Webhook handling (integration-expert)
5. Testing (test-specialist)
6. Documentation (documentation-writer)

Step 2: Launch Parallel Agents

Use the Task tool to launch agents simultaneously:

Task 1: db-specialist - Design database schema
Task 2: payments-specialist - Set up Stripe integration
Task 3: design-specialist - Create billing UI components
Task 4: integration-expert - Implement webhooks
Task 5: test-specialist - Write test suite
Task 6: documentation-writer - Document the API

Step 3: Coordinate Results

Collect all agent outputs and integrate:

## Integration Checklist

- [ ] Database schema approved
- [ ] Stripe integration tested
- [ ] UI components match design system
- [ ] Webhooks properly secured
- [ ] Tests passing
- [ ] Documentation complete

Best Practices

DO

  • Give each agent a single, focused task
  • Provide detailed context in task descriptions
  • Set clear deliverables and constraints
  • Use 3-5 agents for most complex tasks
  • Plan integration points before starting

DON'T

  • Overload one agent with multiple responsibilities
  • Launch agents without clear deliverables
  • Forget to plan how results will be integrated
  • Use parallel execution for simple sequential tasks
  • Skip the decomposition analysis phase

Example Workflows

Feature Implementation

Task: "Add user profiles with avatars"

Parallel:
├── design-specialist: Avatar upload UI
├── db-specialist: User profile schema
├── integration-expert: Image storage (S3/Cloudinary)
└── test-specialist: Profile update tests

Security Audit

Task: "Audit authentication system"

Parallel:
├── code-auditor: Vulnerability scan
├── auth-specialist: Auth flow review
├── test-specialist: Penetration tests
└── documentation-writer: Security report

Documentation Sprint

Task: "Document entire API"

Parallel:
├── documentation-writer: Endpoint docs
├── code-auditor: Code example verification
└── test-specialist: Test case documentation

Error Handling

When a subagent fails:

  1. Retry: Simple failures (timeouts, temporary errors)
  2. Reassign: Task misalignment → different specialist
  3. Decompose further: Task too large → break into smaller pieces
  4. Sequential fallback: Dependencies discovered → reorder tasks

Performance Tips

  • Agent Reuse: Keep successful agents for related follow-up tasks
  • Context Preservation: Pass key findings between related agents
  • Result Caching: Store agent outputs for reuse in future tasks
  • Progress Tracking: Monitor all agents' progress simultaneously

Integration with Other Skills

  • reinforce-skills: Persist workflow patterns to CLAUDE.md
  • critique: Review parallel agent results for quality
  • confess: Audit if parallel approach was optimal

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.18%
按下载量换算67

Claude

28.8%
按下载量换算52

Cursor

17.44%
按下载量换算32

Gemini CLI

9.9%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills