Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

design-orchestrator设计协调者

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

318

周安装

13

GitHub Stars

1

下载量

103
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/freeacger/loom --skill design-orchestrator

简介

设计阶段入口技能,负责状态检查与下一技能精准调度。

  • 持续推动设计分解、决策分析与就绪评审直至产出可实施方案。
  • 使用时需判断是否需要设计前置,或当前设计状态是否明确。
  • 安装方式:GitHub,命令为 npx skills add https://github.com/freeacger/loom --skill design-orchestrator。
  • 注意:不处理具体设计细节,仅做流程推进与异常熔断处理。

SKILL.md

Design Orchestrator

Overview

This skill is the entrypoint for design-stage work.

It does not do the deep design work itself. Its job is to inspect the current design state, choose exactly one next design skill, and keep the workflow moving until the design is ready for writing-plans.

When to Use

Use this skill when:

  • the task needs design before implementation
  • the user wants to turn an idea into an implementation-ready design
  • the design exists, but the next step is unclear
  • the task needs routing between design decomposition, decision analysis, and readiness review

Do not use this skill when:

  • the user is asking for direct execution
  • the task is already in implementation planning
  • the task is a single-step coding or editing request
  • the task is a writing request such as a report, note, or summary
  • the task is a simple linear SOP with no real design state

Shared Design State

Assume the design workflow passes around a shared design_state with these logical fields:

  • problem
  • scope
  • design_tree
  • open_branches
  • decision_nodes
  • external_dependencies
  • decisions
  • risks
  • validation
  • status
  • design_target_type

Treat design_target_type as required. Do not silently infer it from an incomplete design-state input.

Core Responsibilities

Your responsibilities are:

  1. Determine whether the task is actually in the design stage.
  2. Inspect the current design_state and identify the single most useful next skill.
  3. Route the task to exactly one next design skill.
  4. Re-evaluate after each handoff until the design either becomes ready for planning or the user stops.
  5. Prevent premature transition into writing-plans.

Routing Rules

Apply routing in this order.

1. Missing Required State

Route to design-structure when:

  • the task should already be in design-state form, but design_target_type is missing
  • a design tree exists, but the target type has not been set explicitly

In this case, do not continue to any other design skill first. The next step is to make the target type explicit.

2. No Real Tree Yet

Route to design-structure when:

  • there is no real design tree yet
  • the task is still a vague idea or feature request
  • scope, boundaries, core objects, or key flows are still missing

3. Derived Tree Candidate

Before routing to design-refinement, check whether the current tree is beginning to contain a second stable problem domain.

Use the shared derivation rules in ../design-tree-core/REFERENCE.md as the source of truth for this judgment.

A derived tree should be created only if all of the following are true:

  • the current tree is starting to answer a second distinct core question
  • that question appears repeatedly, not as a one-off exception
  • the branch now behaves like a stable decision system
  • a child tree can define its own scope and done criteria
  • deriving it will make the parent tree smaller and clearer

If those conditions are met:

  • route to design-structure to create a derived tree
  • require an explicit parent/child handoff
  • require the parent tree to shrink the extracted branch after derivation

If those conditions are not met:

  • do not derive
  • continue routing within the current tree

4. Explicit Decision Blocker

Route to decision-evaluation when:

  • there is a bounded decision node with real alternatives
  • the blocking issue is a concrete choice rather than an under-specified branch

5. Mostly Complete

Route to design-readiness-check when:

  • the design appears mostly complete
  • the remaining question is whether it is safe to move into implementation planning

6. Everything Else

Route to design-refinement when:

  • a design tree exists
  • major branches are still shallow, vague, or unresolved
  • the main need is deeper decomposition, edge-case coverage, or failure-path clarification

When design-structure has just completed the initial tree's main body:

  • expect that tree to be persisted before routing onward
  • treat design-refinement as the default next step unless a bounded decision or readiness check is the clearer blocker

Diagram Conventions

After routing, show the current workflow position as a character DAG inside a code block (no language tag):

[task-brief]
     │
     ▼
[design-orchestrator]  ← you are here
     │
     ▼
[design-structure]

Or when showing branching:

          [orchestrator]
          │    │    │
     ┌────┘    │    └────┐
     ▼         ▼         ▼
[structure] [refine] [evaluate]

Rules:

  • Components in [brackets], vertical flow with and
  • Fan-out: ┌────┘ / └────┐; fan-in: └────┬────┘
  • Max width: 78 characters
  • Only include when routing changes or the user asks for a status overview

Entry and Exit Criteria

Enter when:

  • the task needs design-stage coordination
  • the user has not asked to skip design

Exit when:

  • design-readiness-check returns that the design is ready for planning
  • the user explicitly stops the design workflow
  • the task turns out not to require design-stage work after all

Handoff Rules

  • Never expand a branch in depth yourself if a specialized design skill should do it.
  • Never compare options broadly if the real next step is to structure or refine the design.
  • If a downstream skill changes the design materially, re-check routing instead of assuming the next step.
  • After design-structure completes a main tree, prefer design-refinement as the default continuation.
  • Only send the task to writing-plans after design-readiness-check has clearly passed.
  • If a downstream skill cannot be invoked in the current context, still name it explicitly as the next step and stop. Do not execute its responsibilities inline as a substitute.
  • Never route to more than one next step in the same turn.
  • Never continue a design flow that is missing design_target_type.
  • Never derive a new tree just because the current tree is long.
  • Never keep expanding a branch inline after deciding that it should become a derived tree.
  • Never absorb report writing, note production, or SOP drafting into design routing.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.42%
按下载量换算38

Claude

30.17%
按下载量换算31

Cursor

20.35%
按下载量换算21

Gemini CLI

10.08%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills