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

process-mapping流程图

Agent Skill

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

总安装

21,050

周安装

705

GitHub Stars

公开资料未说明

下载量

7,401
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/danhvb/my-ba-skills --skill 'Process Mapping'

简介

流程图技能用于创建专业的业务流程可视化图表,识别流程瓶颈和改进机会。

  • 适用于文档当前流程、设计未来流程和跨部门协作沟通。
  • 支持多种流程图类型,使用标准符号体系,便于理解和分享复杂工作流程。
  • 使用时需要结合实际业务场景,确保流程图的准确性和可操作性。
  • process-mapping 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Process Mapping Skill

Purpose

Create clear, professional business process diagrams that visualize workflows, identify inefficiencies, and communicate processes to stakeholders and development teams.

When to Use

  • Documenting current state (As-Is) processes
  • Designing future state (To-Be) processes
  • Identifying process gaps and inefficiencies
  • Communicating workflows to stakeholders
  • System design and integration planning

Process Mapping Types

1. Flowcharts

Best for: Simple, linear processes Symbols:

  • ⬭ Oval: Start/End
  • ▭ Rectangle: Process/Activity
  • ◇ Diamond: Decision
  • ▱ Parallelogram: Input/Output
  • → Arrow: Flow direction

Example - Order Processing:

Start → Receive Order → Validate Order → [Valid?]
                                           ├── Yes → Process Payment → [Paid?]
                                           │                            ├── Yes → Ship Order → End
                                           │                            └── No → Notify Customer → End
                                           └── No → Reject Order → End

2. BPMN 2.0 (Business Process Model and Notation)

Best for: Complex processes with multiple participants Key Elements:

  • Events: Start (○), Intermediate (◎), End (◉)
  • Activities: Tasks (▭), Sub-processes (▭+)
  • Gateways: Exclusive (◇×), Parallel (◇+), Inclusive (◇○)
  • Swimlanes: Pools and lanes for different actors

Example - Invoice Approval BPMN:

Pool: Invoice Approval Process
├── Lane: Requester
│   ├── Start Event
│   ├── Task: Submit Invoice
│   └── Task: Revise Invoice (if rejected)
├── Lane: Manager
│   ├── Task: Review Invoice
│   └── Gateway: Approve? (Yes/No)
├── Lane: Finance
│   ├── Task: Process Payment
│   └── End Event: Invoice Paid

3. Swimlane Diagrams

Best for: Cross-functional processes showing responsibilities Structure: Horizontal or vertical lanes for each role/department

Example - Customer Support:

| Customer        | Support Agent    | Technical Team   | Manager         |
|-----------------|------------------|------------------|-----------------|
| Submit Ticket   |                  |                  |                 |
|       ↓         |                  |                  |                 |
|                 | Receive & Triage |                  |                 |
|                 |       ↓          |                  |                 |
|                 | [Can Resolve?]   |                  |                 |
|                 | Yes: Resolve     |                  |                 |
|                 | No: ────────────→| Investigate      |                 |
|                 |                  |       ↓          |                 |
|                 |                  | [Need Escalation?]               |
|                 |                  | No: Fix & Return |                 |
|                 |                  | Yes: ───────────→| Approve Fix    |
|                 | Update Customer  |←─────────────────|                 |
| Receive Update  |←─────────────────|                  |                 |

4. Value Stream Mapping

Best for: Lean process improvement, identifying waste Elements: Process steps, wait times, value-add vs. non-value-add

Process Levels

L0: Context Diagram

  • High-level view of the entire system
  • Shows external entities and interactions
  • One page, executive summary level

L1: Process Area View

  • Major process areas/modules
  • Shows key inputs/outputs between areas
  • 5-10 major processes

L2: Detailed Process Flow

  • Step-by-step activities within a process
  • Includes decisions and branches
  • Shows roles responsible

L3: Procedural Steps

  • Detailed procedures/work instructions
  • Screen-by-screen guidance
  • Used for training/SOPs

Mermaid Diagrams (Code-based)

Flowchart Example

flowchart TD
    A[Start: Customer Order] --> B{Inventory Available?}
    B -->|Yes| C[Reserve Inventory]
    B -->|No| D[Backorder]
    C --> E[Process Payment]
    E --> F{Payment Successful?}
    F -->|Yes| G[Create Shipment]
    F -->|No| H[Notify Customer]
    G --> I[Ship Order]
    I --> J[End: Order Delivered]
    D --> K[Notify Customer of Delay]
    H --> L[End: Order Cancelled]

Sequence Diagram Example

sequenceDiagram
    participant Customer
    participant WebApp
    participant PaymentAPI
    participant OrderService

    Customer->>WebApp: Submit Order
    WebApp->>OrderService: Create Order
    OrderService-->>WebApp: Order ID
    WebApp->>PaymentAPI: Process Payment
    PaymentAPI-->>WebApp: Payment Confirmed
    WebApp->>OrderService: Confirm Order
    OrderService-->>WebApp: Order Confirmed
    WebApp-->>Customer: Order Confirmation

State Diagram Example (Order Status)

stateDiagram-v2
    [*] --> Pending: Order Created
    Pending --> Processing: Payment Confirmed
    Pending --> Cancelled: Payment Failed
    Processing --> Shipped: Shipment Created
    Processing --> Cancelled: Customer Request
    Shipped --> Delivered: Delivery Confirmed
    Delivered --> Returned: Return Requested
    Returned --> Refunded: Refund Processed
    Delivered --> [*]
    Refunded --> [*]
    Cancelled --> [*]

Domain-Specific Process Examples

E-commerce: Checkout Flow

Start → View Cart → Enter Shipping → Select Shipping Method →
Enter Payment → Review Order → Place Order →
[Payment OK?] → Yes: Confirmation → End
              → No: Payment Error → Retry/Cancel

ERP: Purchase-to-Pay (P2P)

Requisition → Approval Workflow → Purchase Order →
Goods Receipt → Invoice Receipt → 3-Way Match →
[Match OK?] → Yes: Payment → End
           → No: Exception Handling

CRM: Lead-to-Close

Lead Capture → Lead Scoring → [Qualified?] →
Yes: Create Opportunity → Discovery → Proposal →
Negotiation → [Won?] → Yes: Close → Account Created
                     → No: Lost Analysis

CDP: Data Activation Flow

Data Collection → Identity Resolution → Profile Unification →
Segmentation → Audience Building → Channel Activation →
Campaign Execution → Response Tracking → Analytics

Best Practices

Design Principles

Do:

  • Keep it simple and readable
  • Use consistent notation throughout
  • Include clear start and end points
  • Show decision points clearly
  • Document exceptions and error paths
  • Use swimlanes for multi-role processes
  • Add annotations for complex steps
  • Version control diagrams

Don't:

  • Overcomplicate with too many details
  • Mix notation styles
  • Forget exception/error flows
  • Skip validation with stakeholders
  • Create without understanding the process first

Validation

  • Walk through with process owners
  • Verify with actual users
  • Test with real scenarios
  • Document assumptions
  • Get stakeholder sign-off

Tools

Figma

  • Design custom process diagrams
  • Use component libraries for BPMN symbols
  • Share for collaboration

Mermaid (Code-based)

  • Embed in markdown documentation
  • Version control friendly
  • Quick diagrams in Lark/Notion

Lucidchart/Miro

  • Professional BPMN diagrams
  • Real-time collaboration
  • Template libraries

Process Analysis Tips

  1. Identify bottlenecks: Where do things slow down?
  2. Find redundancies: What's duplicated?
  3. Spot handoff issues: Where do things fall between cracks?
  4. Question value: Does this step add value?
  5. Consider automation: What can be automated?

Next Steps

After process mapping:

  1. Gap analysis (see gap-analysis skill)
  2. Process optimization recommendations
  3. Requirements for system changes
  4. UAT scenarios based on process flows

References

  • BPMN 2.0 Specification (OMG)
  • Value Stream Mapping (Lean)
  • Business Process Mapping best practices

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.03%
按下载量换算2,519

Claude

29.49%
按下载量换算2,183

Cursor

17.65%
按下载量换算1,306

Gemini CLI

9.6%
按下载量换算710

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills