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

engineering-design-thinking工程设计思维

Agent Skill

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

总安装

212

周安装

9

GitHub Stars

4

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jimnguyendev/jimmy-skills --skill engineering-design-thinking

简介

工程设计思维用于非平凡功能的五阶段设计决策流程。

  • 适合需要系统化思考的软件工程项目。
  • 包含需求澄清、原型验证和风险评估等环节。
  • 输出设计简报作为编码前置条件。engineering-design-thinking 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 建议与产品经理协作,确保需求理解一致。

SKILL.md

thinking: ultrathink

Design Thinking Process

Use this skill before writing code for any feature that is non-trivial.

Non-trivial = touches multiple files, introduces a new concept, changes data flow, adds a dependency, or requires a migration.

Core Principle

Programming is thinking, not typing. AI can produce 10,000 lines per day. The engineering problem is deciding which lines matter.

This skill enforces that decision process through five gates. No implementation begins until all gates are satisfied.

Modes

Think mode (default)

Walk through all five gates. Produce a design brief at the end. Refuse to write implementation code until the brief is accepted.

Review mode

Given an existing design or PR, evaluate it against the five gates. Flag any gate that was skipped or insufficiently addressed.

Scope mode

Given a feature request, determine scope boundaries and identify which gates require the most attention. Output a prioritized checklist.


The Five Gates

  "Build feature X"
        │
        ▼
  ┌─ GATE 1 ─┐     What is the real problem?
  │  Problem  │     Requirements? Constraints? Who benefits?
  └─────┬─────┘
        ▼
  ┌─ GATE 2 ─┐     What exists today?
  │  Context  │     Codebase state? Dependencies? Team constraints?
  └─────┬─────┘
        ▼
  ┌─ GATE 3 ─┐     What are the options?
  │  Options  │     Solution ideality? Trade-off resolution?
  └─────┬─────┘
        ▼
  ┌─ GATE 4 ─┐     How should it be structured?
  │  Design   │     Boundaries? Data flow? Failure modes?
  └─────┬─────┘
        ▼
  ┌─ GATE 5 ─┐     What skills guide implementation?
  │  Routing  │     Which skills, in what order?
  └───────────┘

Gate 1: Problem Framing

Do not start with "how." Start with "what" and "why."

QuestionMust answer
What is the user-facing outcome?One sentence, no jargon
What are the functional requirements?List, prioritized
What are the non-functional requirements?Latency, throughput, availability, security
What assumptions are we making?Label each as verified or unverified
What is NOT in scope?Explicit exclusions prevent creep

Anti-patterns:

  • Jumping to solution before understanding the problem
  • Anchoring on the first framing without challenging it
  • Treating vague requirements as constraints ("it should be fast" is not a requirement)

Gate 2: Context Analysis

Understand the existing system before proposing changes.

QuestionMust answer
What code exists in this area?Files, packages, data flow
What are the existing dependencies?Internal and external
What is the team's expertise?Relevant tech stack experience
What is the deployment environment?Infra constraints, scaling model
What is the timeline?Hard deadline vs. flexible
What tech debt is in the path?Must fix vs. can work around

Actions:

  1. Read the relevant code before proposing anything
  2. Check git history for recent changes in the area
  3. Identify existing patterns the codebase uses
  4. Note any friction points that will affect implementation

Gate 3: Solution Evaluation

Evaluate options by Solution Ideality, not by elegance.

Solution Ideality = Benefits / (Resources Required + Harmful Effects)
  • Resources: time, cost, people, infrastructure
  • Harmful effects: known AND unknown (coupling, operational burden, maintenance cost)
  • A solution that looks clean but introduces hidden coupling scores low

Process:

  1. List at least 2 distinct approaches (avoid single-option bias)
  2. For each approach, score: benefits, resources, harmful effects
  3. Identify trade-offs — then ask: is this a real trade-off or coupling in disguise?
  4. If it is coupling, resolve it (separate concerns) instead of picking a side
  5. Choose the approach with the highest ideality ratio

Anti-patterns:

  • Evaluating only one option
  • Choosing the most "interesting" or "modern" approach
  • Over-engineering for hypothetical future requirements
  • Under-engineering because "we can refactor later"

Gate 4: Architecture Decision

Structure the solution before writing it.

DecisionCriteria
Feature-first or layer-first?Default: feature-first unless strong reason
How many packages/modules?Start with fewer, split only when pain appears
What are the boundaries?Each unit should own one business capability
What is the dependency direction?Must form a DAG — no cycles
What is the data flow?Request → processing → persistence → response
What are the failure modes?Network, timeout, partial failure, data inconsistency
What is the contention model?Low contention vs. high contention → different patterns

Output: A brief architecture sketch — not a diagram tool, just text:

Feature: [name]
Packages: [list with one-line responsibility each]
Dependencies: [A → B → C, no cycles]
Data flow: [request path, happy and error]
Key decisions: [1-3 non-obvious choices with rationale]

Gate 5: Skill Routing

Map the implementation to the right skills in the right order.

Routing table:

Problem typeStart withThen
Backend architecturejimmy-skills@backend-coreLanguage-specific skill
Go implementationjimmy-skills@backend-go-project-layoutRelevant backend-go-* skill
MyVocab Go featurejimmy-skills@myvocap-backendFeature module template
API designjimmy-skills@engineering-rest-api-designBackend skill for implementation
Performance concernjimmy-skills@engineering-perf-optimization-processLanguage-specific perf skill
Full-stack featureThis skill → backend-coreImplementation skills

Output: An ordered skill sequence for the implementation phase.


Design Brief Template

After all five gates are satisfied, produce this brief:

## Design Brief: [Feature Name]

### Problem
[One paragraph from Gate 1]

### Context
[Key findings from Gate 2]

### Chosen Approach
[Selected option from Gate 3 with ideality rationale]

### Architecture
[Sketch from Gate 4]

### Implementation Plan
[Ordered skill sequence from Gate 5]
[Estimated scope: files to create/modify]

### Risks & Mitigations
[From failure mode analysis in Gate 4]

### Out of Scope
[Explicit exclusions from Gate 1]

Do not begin implementation until the user accepts the brief.


When to Use This Skill

TriggerAction
User says "build feature X" or "implement X"Run full five gates
User says "I need to add..." with scope > 1 fileRun full five gates
User says "/design"Run full five gates
User says "review this design"Run in review mode
User says "what's the scope of X?"Run in scope mode
User asks a single implementation questionSkip — route directly to implementation skill

Recommended Hooks

For teams that want design thinking enforced automatically, add to .claude/settings.json:

{
  "hooks": {
    "PreToolCall": [
      {
        "matcher": "Write",
        "command": "echo 'Creating new file — have you run /design for this feature?'"
      }
    ]
  }
}

This provides a gentle reminder when creating new files, without blocking single-file edits.

Cross-References

  • jimmy-skills@backend-core — Backend-specific design principles
  • jimmy-skills@myvocap-backend — MyVocab project-specific feature module patterns
  • jimmy-skills@engineering-perf-optimization-process — Performance-specific gate process
  • jimmy-skills@engineering-rest-api-design — API contract design

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.86%
按下载量换算27

Claude

29.22%
按下载量换算22

Cursor

19.01%
按下载量换算14

Gemini CLI

9.44%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills