Token导航 LogoToken导航TokenDH.com
开发执行命令github未标认证来源可访问许可证需确认审计提醒

design-sync设计同步

Agent Skill

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

总安装

1,063

周安装

43

GitHub Stars

215

下载量

334
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/chmouel/lazyworktree --skill design-sync

简介

用于检查 DESIGN.md 文件是否准确反映当前代码库架构,确保设计与实现一致。

  • 适合维护大型项目的设计文档同步,识别目录结构与关键文件的偏差。
  • 使用时需运行内置 shell 命令对比差异,重点关注内部模块和最近更新内容。
  • 涉及系统命令执行前必须人工复核,防止误删或覆盖重要代码。
  • design-sync 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

DESIGN.md Synchronization Check

Verify that DESIGN.md accurately reflects the current codebase architecture.

Current Directory Structure

!ls -la internal/ | grep '^d'

DESIGN.md Directory Section

!sed -n '/^## Directory Structure/,/^## /p' DESIGN.md | head -50

Critical File References from DESIGN.md

!grep -oE 'internal/[a-z/]+\.go:[0-9]+-[0-9]+' DESIGN.md | sort -u

Recent Changes Since Last DESIGN.md Update

!git log --since="$(git log -1 --format=%ai DESIGN.md 2>/dev/null || echo '1 month ago')" --name-only --oneline -- 'internal/**/*.go' | grep -E '^internal/' | sort -u

Current Package Import Graph

!go list -f '{{.ImportPath}}: {{join.Imports ", "}}'./internal/... 2>/dev/null | grep 'lazyworktree/internal' | head -30

DESIGN.md Metadata

!head -20 DESIGN.md | grep -E '(Last updated|Version)'

Theme Fields Documented vs Actual

!echo "=== Documented theme fields ===" && grep -A 20 'type Theme struct' DESIGN.md | grep -oE '^\s+[A-Z][a-zA-Z]+' | wc -l && echo "=== Actual theme fields ===" && grep -A 30 'type Theme struct' internal/app/theme.go | grep -oE '^\s+[A-Z][a-zA-Z]+' | wc -l


Analysis Instructions

Based on the data above, check for:

1. Directory Structure Drift

  • Are there new directories under internal/ not documented in DESIGN.md?
  • Have documented directories been removed or renamed?
  • Compare the actual directory listing with the documented structure section

2. Critical File References

  • Extract all file:line-range references from DESIGN.md (e.g., app.go:77-210)
  • For each reference:

- Verify the file still exists at that path - Check if line numbers still point to the documented code section - If lines have shifted due to refactoring, report the new correct line numbers

  • Report any broken references or significant drift

3. Recent Architectural Changes

  • Review files changed since the last DESIGN.md update
  • Identify if changes affect documented abstractions:

- BubbleTea Model/Update/View pattern - Git service semaphore implementation - Screen manager stack - Theme system - Config cascade

  • Flag changes to critical files that may require DESIGN.md updates

4. Import Graph Consistency

  • Compare current package imports with the documented dependency graph
  • Flag new internal dependencies not mentioned in DESIGN.md
  • Flag removed dependencies still documented
  • Check for circular dependencies (which violate documented patterns)

5. Theme System Accuracy

  • Verify the count of theme fields matches between documentation and actual code
  • If counts differ, identify which fields are missing from documentation

6. Staleness Check

  • Report if DESIGN.md hasn't been updated in >90 days
  • Suggest updating the "Last updated" date if structural changes were made

Report Format

Provide output as:

✅ Up to Date

  • List specific aspects that are still accurate and synchronized

⚠️ Needs Minor Updates

  • Line number corrections (e.g., app.go:77-210 → app.go:87-220)
  • New directories to add to documentation
  • Minor import graph changes
  • Theme field count discrepancies

🔴 Needs Major Updates

  • New abstractions or components not documented
  • Documented components removed or significantly changed
  • Architecture decisions that have changed
  • Broken file references

📝 Recommended Actions

  1. Specific edits with DESIGN.md line numbers to update
  2. New sections to add (with suggested content outline)
  3. Sections to remove or rewrite
  4. Line number corrections for all file references

Usage Workflow

When to Invoke /design-sync

Proactive triggers (before committing):

  • Added new package under internal/
  • Refactored critical files (app.go, service.go, model.go, etc.)
  • Changed architecture pattern (Model-Update-View, semaphore, etc.)
  • Added new screen type or theme field
  • Modified config cascade or precedence rules

Periodic triggers:

  • Quarterly maintenance review
  • Before major release
  • After merging large architectural PRs
  • When DESIGN.md feels outdated

Recommended Workflow

# 1. Make architectural changes

# 2. Run design-sync skill
/design-sync

# 3. Review output for needed updates

# 4. Update DESIGN.md based on recommendations

# 5. Update "Last updated" date in DESIGN.md

# 6. Re-run to verify
/design-sync  # Should now show ✅ Up to Date

# 7. Commit changes together

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.46%
按下载量换算115

Claude

28.4%
按下载量换算95

Cursor

19.49%
按下载量换算65

Gemini CLI

9.5%
按下载量换算32

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/chmouel/lazyworktree --skill design-sync 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills