Source profileQuality 64/100

affaan-m/ECC/docs/zh-CN/skills/parallel-execution-optimizer/SKILL.md

parallel-execution-optimizer

Review parallel-execution-optimizer's use cases, installation, workflow, and original source instructions.

Source repository stars
234,327
Declared platforms
0
Static risk flags
0
Last source update
2026-07-27
Source checked
2026-07-28

Decision brief

What it does—and where it fits

当速度来自同时处理相互独立的工作时,使用此技能: 仓库巡检、文件读取、API 检查、浏览器检查、构建/测试通道、 部署回读,或多 worktree 的实现批次。

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/affaan-m/ECC --skill "docs/zh-CN/skills/parallel-execution-optimizer"
    Safe inspection promptEditorial

    Inspect the Agent Skill "parallel-execution-optimizer" from https://github.com/affaan-m/ECC/blob/4e973d3eaf92d97f8d2e2d8abb39d8bdc8711b38/docs/zh-CN/skills/parallel-execution-optimizer/SKILL.md at commit 4e973d3eaf92d97f8d2e2d8abb39d8bdc8711b38. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      核心模式

      1. 定义目标和完成信号。 2. 把工作拆分成通道(lane)。 3. 给每条通道标注执行方式:并行、串行或门控。 4. 把相互独立的读取/检查放在一起执行。 5. 让写入按文件、worktree、分支、服务或数据集相互隔离。 6. 只有在证据表明各通道相互兼容后才合并。 7. 以一张验证表收尾,而不是一句模糊的"变快了"。

      定义目标和完成信号。把工作拆分成通道(lane)。给每条通道标注执行方式:并行、串行或门控。
    2. 02

      通道矩阵

      Review the “通道矩阵” section in the pinned source before continuing.

      Review and apply the “通道矩阵” source section.
    3. 03

      执行规则

      把文件读取、搜索、状态检查和元数据查询批量化。

      把文件读取、搜索、状态检查和元数据查询批量化。对大型且互不相关的实现通道使用隔离的 worktree。长时间运行的测试、构建、回填和部署放到独立会话中启动,

    Permission review

    Static risk signals and limitations

    No configured static risk pattern was detected

    This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score64/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars234,327SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guidecatalog recordEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    affaan-m/ECC
    Skill path
    docs/zh-CN/skills/parallel-execution-optimizer/SKILL.md
    Commit
    4e973d3eaf92d97f8d2e2d8abb39d8bdc8711b38
    License
    MIT
    Collected
    2026-07-28
    Default branch
    main
    View the original SKILL.md

    并行执行优化器

    当速度来自同时处理相互独立的工作时,使用此技能: 仓库巡检、文件读取、API 检查、浏览器检查、构建/测试通道、 部署回读,或多 worktree 的实现批次。

    核心模式

    行动之前,先把紧迫感转化为依赖图。

    1. 定义目标和完成信号。
    2. 把工作拆分成通道(lane)。
    3. 给每条通道标注执行方式:并行、串行或门控。
    4. 把相互独立的读取/检查放在一起执行。
    5. 让写入按文件、worktree、分支、服务或数据集相互隔离。
    6. 只有在证据表明各通道相互兼容后才合并。
    7. 以一张验证表收尾,而不是一句模糊的"变快了"。

    通道矩阵

    在大规模推进之前,写一张紧凑的矩阵:

    Lane | Can run in parallel? | Write surface | Risk | Verification
    Repo scan | yes | none | low | rg/git status outputs
    Backend patch | maybe | src/api | medium | unit tests
    Frontend patch | maybe | app/components | medium | browser screenshot
    Deploy readback | after build | remote service | high | live URL + logs
    

    只有当各通道的写入面互不冲突时,才并行运行。

    执行规则

    • 把文件读取、搜索、状态检查和元数据查询批量化。
    • 对大型且互不相关的实现通道使用隔离的 worktree。
    • 长时间运行的测试、构建、回填和部署放到独立会话中启动, 然后有节奏地主动轮询。
    • 如果某条通道发现了会改变计划的阻塞点,暂停依赖它的通道 并更新矩阵。
    • 除非用户明确要求持续运行的服务,绝不让后台进程存活超过本轮。
    • 没有明确门控时,不要并行执行破坏性命令、数据迁移、对同一张表的写入, 或影响线上客户的部署。

    输出形态

    汇报时使用:

    Parallel execution result:
    - Lanes run: 5
    - Lanes completed: 4
    - Blocked lane: deploy readback, waiting on DNS propagation
    - Fast path found: batched repo scan + focused tests
    - Verification: lint pass, unit pass, live smoke pass
    

    失败模式

    • 更多并发反而制造了相互冲突的编辑。
    • 在给工具跑分,而不是在完成任务。
    • 在正确性得到证明之前就把"快"当成"做完了"。
    • 忘记轮询正在运行的会话。
    • 用一句成功摘要掩盖被跳过的检查。

    Alternatives

    Compare before choosing