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

design-readiness-check设计准备情况检查

Agent Skill

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

总安装

318

周安装

13

GitHub Stars

1

下载量

102
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

判断设计工作是否具备进入实施规划阶段的条件,作为质量门禁机制。

  • 适合在设计接近完成时评估剩余风险,聚焦于能否支撑下一步开发计划。
  • 不替代独立设计审计,而是针对进行中工作的就绪程度给出明确结论。
  • 安装需通过 npx 添加指定 GitHub 仓库,适用于敏捷开发中的设计验收环节。
  • design-readiness-check 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Design Readiness Check

Overview

This skill is the quality gate between design work and implementation planning.

Its job is to answer one question clearly: is the current design complete enough to move into writing-plans?

It is not a replacement for design-decision-audit. That skill audits standalone design or plan documents. This skill checks the readiness of an in-progress design workflow before planning.

When to Use

Use this skill when:

  • the design looks mostly complete
  • the next possible step is writing-plans
  • the user asks whether the design is ready to implement
  • the remaining concern is completeness, not discovery

Do not use this skill when:

  • the design tree is still missing
  • major branches remain vague
  • core decisions are still unresolved
  • the user is asking for a general audit of an external design document
  • design_target_type is missing from the design state

Workflow

Phase A: Context Preparation

Goal: Load design state and assemble context for parallel checks.

  1. Load the current design_state from the conversation context.
  2. Read the design tree content and all related context (open branches, decision nodes, risks, validation state).
  3. If design_state does not exist or the design tree is empty, return NOT READY immediately with a handoff to design-structure.
  4. If design_target_type is missing, return NOT READY immediately with a blocking issue for missing required state.
  5. Assemble a context package containing: design tree text, open branches, decision nodes, existing risks, validation entries, and design_target_type.
  6. Perform a lightweight structural integrity check using the shared rules in ../design-tree-core/REFERENCE.md:

- mixed responsibilities inside one tree - parent/child ownership confusion - duplicated parent/child logic on the same branch - branches that likely should have been derived but were kept inline

Phase B: Parallel Readiness Checks

Goal: Run four independent checks in parallel using specialized subagents.

  1. Launch four parallel Sonnet subagents, each using one of the checker agent templates:

- branch-checker: reads skills/design-readiness-check/agents/branch-checker.md. Fill {{DESIGN_TREE}} and {{CONTEXT}}. - assumption-checker: reads skills/design-readiness-check/agents/assumption-checker.md. Fill {{DESIGN_TREE}} and {{CONTEXT}}. - failure-checker: reads skills/design-readiness-check/agents/failure-checker.md. Fill {{DESIGN_TREE}} and {{CONTEXT}}. - risk-checker: reads skills/design-readiness-check/agents/risk-checker.md. Fill {{DESIGN_TREE}} and {{CONTEXT}}.

  1. Collect results from all four subagents.

Fallback: If any subagent fails or times out, the main agent performs that check inline using the same rubric from the agent template.

Phase C: Verdict Synthesis

Goal: Combine check results into a clear readiness judgment.

  1. Map each subagent's status to a pass/fail entry in the readiness checklist:

- required-state check → "Design target type present" - branch-checker → "Design tree present" and "Key branches refined" - assumption-checker → "Decisions resolved" (if assumptions are unresolved) - failure-checker → "Failure paths documented" and "Validation strategy defined" - risk-checker → "Blocking risks mitigated" - structural integrity check → "Structural integrity preserved"

  1. Build the ✓/✗ checklist diagram following Diagram Conventions.
  2. Determine verdict:
  • READY: required state is present, all four checks return pass, and no structural integrity issue is blocking
  • NOT READY: required state is missing, any check returns fail, or structural integrity issues are blocking
  1. If NOT READY, determine the handoff target based on which check failed:

- required-state fails → hand off to design-structure - branch-checker fails → hand off to design-structure (branches missing) or design-refinement (branches weak) - assumption-checker fails → hand off to design-refinement (assumptions need expansion) - failure-checker fails → hand off to design-refinement (failure paths need adding) - risk-checker fails → hand off to decision-evaluation (unresolved risk decision) or design-refinement (risk documentation weak) - structural integrity fails → hand off to design-orchestrator (re-route ownership), design-structure (derive a child tree), or design-refinement (shrink duplicated inline logic)

  1. Update design_state with:

- status.ready_for_planning: true or false - status.blocking_issues: list from failed checks - Updated open_branches, risks, validation if new information emerged - If a persisted design artifact exists, keep its document status aligned with the verdict: draft for NOT READY, ready-for-planning for READY

  1. Return the explicit verdict with checklist diagram. Never give a "probably ready" answer.

Readiness Standard

A design is ready for planning only when:

  • design_target_type is present
  • the main design tree is present
  • key branches are refined enough to guide implementation for the current target type
  • major decision nodes are resolved or explicitly deferred with acceptable rationale
  • failure paths and validation strategy are not missing
  • blocking risks are either mitigated or clearly acknowledged
  • tree responsibilities are not mixed in a way that breaks routing clarity

Expected Outputs

Produce or update a design_state that includes:

  • design_target_type
  • open_branches
  • risks
  • validation
  • status.ready_for_planning
  • status.blocking_issues

Always return an explicit result:

  • ready for planning
  • not ready for planning

If a persisted design file is part of the workflow, its document status should also be explicit:

  • draft while the design is not ready
  • ready-for-planning after the readiness gate passes

Diagram Conventions

Present the readiness verdict as a status checklist inside a code block (no language tag):

Readiness Check
├── Design target type present   ✓
├── Design tree present          ✓
├── Key branches refined         ✓
├── Decisions resolved           ✗ (storage choice pending)
├── Failure paths documented     ✓
├── Validation strategy defined  ✓
├── Blocking risks mitigated     ✗ (migration cutover risk)
└── Structural integrity preserved ✓

Verdict: NOT READY — 2 blocking issues

Rules:

  • Use (pass) and (fail) markers with inline reason for failures
  • Max width: 78 characters
  • Always include this checklist in the readiness verdict

Entry and Exit Criteria

Enter when:

  • the design is near completion
  • the next meaningful step may be implementation planning

Exit when:

  • you have issued a clear readiness decision
  • you have identified the next route if the design is not ready

Handoff Rules

  • Hand off to writing-plans only when the design is clearly ready.
  • Hand off to design-structure when foundational branches are still missing.
  • Hand off to design-refinement when important branches exist but are still weak.
  • Hand off to decision-evaluation when the real blocker is an unresolved decision node.
  • Hand off to design-orchestrator when the real blocker is tree ownership or routing drift rather than branch weakness.
  • Treat missing design_target_type as an immediate blocker, not as a soft warning.
  • Never give a "probably ready" answer. The result must be explicit.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.61%
按下载量换算38

Claude

31.01%
按下载量换算32

Cursor

18.59%
按下载量换算19

Gemini CLI

9.45%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills