Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

software-design-philosophy软件设计理念

Agent Skill

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

总安装

2,893

周安装

123

GitHub Stars

303

下载量

1,014
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/luoling8192/software-design-philosophy-skill --skill software-design-philosophy

简介

software-design-philosophy 用于辅助界面设计、视觉规范和交互体验优化。

  • 适合整理页面结构、生成 UI 方案或检查视觉一致性,需结合品牌与设计系统。
  • 通过 npx skills add 命令安装,避免仅堆砌装饰元素。
  • 涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出与对齐问题。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

A Philosophy of Software Design — Distilled Guide

Source: John Ousterhout, *A Philosophy of Software Design* Central thesis: The core challenge of software design is managing complexity.

I. Complexity: Know the Enemy

Definition

Complexity is anything related to the structure of a software system that makes it hard to understand and modify. Complexity is not the same as system size — a small system can be complex, and a large well-designed system can be manageable.

Three Symptoms of Complexity

  1. Change Amplification: A seemingly simple change requires code modifications in many different places.
  2. Cognitive Load: Developers must absorb a large amount of information to complete a task safely. Note: fewer lines of code ≠ simpler — sometimes more code is actually simpler because it reduces cognitive load.
  3. Unknown Unknowns: It's unclear which code must be modified or what information is needed to complete a task. This is the most dangerous symptom.

Two Root Causes

  1. Dependencies: A piece of code cannot be understood or modified in isolation; it relates to other code that must also be considered.
  2. Obscurity: Important information is not obvious — vague names, missing docs, implicit conventions, hidden constraints.

Key Insight

  • Complexity is incremental: It's not caused by a single catastrophic error; it accumulates through thousands of small decisions.
  • Therefore you must adopt a zero-tolerance mindset — every bit of "minor" complexity matters.

II. Strategic vs. Tactical Programming

Tactical Programming (Anti-pattern)

  • Goal: get features working as quickly as possible.
  • Mindset: "Just make it work", "We'll refactor later."
  • Result: complexity accumulates fast, tech debt spirals out of control.

Strategic Programming (Recommended)

  • Goal: produce great design; working code is a byproduct.
  • Mindset: invest roughly 10–20% of development time in design improvements.
  • Practices:

- Look for opportunities to improve design with every change. - Working code is not enough — design quality matters equally. - The increments of software development should be abstractions, not features.


III. Deep Modules: The Most Important Design Concept

Core Metaphor

Think of a module as a rectangle:

  • Width = complexity of its interface
  • Height/Depth = amount of functionality hidden inside

Deep module: simple interface, rich implementation. (Good design) Shallow module: complex interface, does very little. (Bad design 🚩)

Classic Examples

  • Deep: Unix file I/O — just 5 syscalls (open, read, write, lseek, close) expose a powerful file system.
  • Shallow: Java I/O — reading a file requires composing FileInputStream, BufferedInputStream, ObjectInputStream, etc.

Practical Principles

  • Design interfaces so the most common usage is as simple as possible.
  • A simple interface matters more than a simple implementation.
  • Rare use cases can accept more complex calling patterns, but the common path should never pay for them.

IV. Information Hiding and Information Leakage

Information Hiding

  • Each module should encapsulate design decisions (knowledge), exposing only a simplified interface.
  • Hidden information includes: data structures, algorithms, low-level mechanisms, policy decisions.
  • Information hiding minimizes inter-module dependencies.

Information Leakage 🚩 Red Flag

  • When the same design decision is reflected in multiple modules, information has leaked.
  • Temporal decomposition is a common source: splitting modules by execution order (rather than by information hiding) causes steps to share excessive knowledge.

Fixing Leakage

  • Merge shared knowledge into a single module.
  • If merging isn't possible, unify the shared information behind a single deep module.

V. General-Purpose vs. Special-Purpose Modules

Core Principle: General-purpose modules are usually deeper.

  • A general interface is simpler than a specialized one because it covers more use cases with fewer methods.
  • When designing a new module, ask: What is the most general-purpose interface that can satisfy my current needs?

Judgment Criteria

  • The interface should be general enough to support multiple use cases without modification.
  • But the implementation can do only what's currently needed (don't over-build).
  • General-purpose and special-purpose code should be cleanly separated.

VI. Different Layers, Different Abstractions

Principle

  • A software system has multiple layers; each layer should provide a different abstraction from its adjacent layers.
  • If two layers have similar abstractions, the layering is wrong.

Pass-Through Method 🚩 Red Flag

  • A method that does almost nothing except forward its arguments to another method with a similar signature.
  • This signals that the layers don't offer different abstractions — the responsibility split is flawed.

Pass-Through Variable 🚩 Red Flag

  • A variable threaded from top to bottom through layers that don't use it.
  • Solutions: context objects, dependency injection, or rethinking module boundaries.

VII. Pull Complexity Downward

Core Principle

  • When complexity is unavoidable, the module should absorb it internally rather than pushing it to callers.
  • Most modules have more users than developers — it's better for developers to suffer than for every user to suffer.

Anti-patterns

  • Turning hard decisions into configuration parameters and pushing them to sysadmins.
  • Throwing exceptions for uncertain conditions and letting callers handle them.
  • These save effort in the short term but amplify complexity system-wide.

VIII. Define Errors Out of Existence

Core Insight

  • Exception handling is one of the biggest sources of complexity.
  • Reducing the number of exceptions that must be handled is one of the best techniques for reducing complexity.

Strategies

  1. Redefine semantics so the error condition cannot arise.

- Example: unset(key) succeeds even if the key doesn't exist — it simply guarantees "after the call, the key does not exist." - Example: substring(start, end) auto-clips out-of-bounds parameters instead of throwing.

  1. Exception Masking: Detect and handle exceptions at a low level so they never reach callers.
  2. Exception Aggregation: Handle multiple exception types in one centralized place instead of scattering handlers at every call site.

Important Distinction

  • This is not about ignoring errors — it's about designing better semantics so error conditions simply aren't errors.
  • Errors that truly require reporting (e.g., lost network packets) must still be handled properly.

IX. Design It Twice

  • For any important design decision, conceive at least two different approaches before choosing.
  • Even if the first idea seems great, force yourself to think of an alternative.
  • Comparison dimensions: interface simplicity, generality, performance, implementation difficulty.
  • This habit significantly improves design quality.

X. The Philosophy of Comments

Why Write Comments

  1. Comments capture design decisions and intent that code cannot express.
  2. Comments are part of the abstraction — good interface docs mean users don't have to read the implementation.
  3. Writing comments early exposes design problems before you invest in code.
  4. Good comments dramatically reduce cognitive load.

What Comments Should Describe

  • Non-obvious information: the *why*, constraints, boundary conditions, side effects — things you can't see in the code.
  • Comments should NOT repeat what the code already says. 🚩 Red Flag: Comment Repeats Code

Comment Layers

  • Interface comments: describe *what* and *why* — no implementation details.
  • Implementation comments: explain *how* and *why this approach* — why the code is written this way.
  • Cross-module comments: document design decisions and dependencies that span module boundaries.

Comments-First Approach

  • Write interface comments *before* writing the implementation — use comments as a design tool.
  • If you can't write a clear comment, the design itself probably has a problem.

XI. The Art of Naming

Standards for Good Names

  • Precise: conveys meaning to the reader without ambiguity.
  • Consistent: the same name always means the same thing across the codebase.
  • Informative: a good name is lightweight documentation by itself.

Naming Red Flags 🚩

  • Vague names: too generic (e.g., data, result, tmp, info) — carry no useful information.
  • Hard to name: if you struggle to find a precise, intuitive name for an entity, the design itself may be flawed.

XII. Consistency

  • Handle the same thing the same way throughout the entire system.
  • Consistency covers: naming, coding style, interface patterns, design patterns, invariants.
  • Consistency dramatically reduces cognitive load — once a developer learns one pattern, it applies everywhere.
  • Don't break consistency for "better" unless the improvement is significant enough and the old way can be fully replaced.

XIII. Code Should Be Obvious

Goal

  • A reader should be able to quickly understand the behavior and intent of code without significant mental effort.
  • Obviousness is the ultimate test of good design.

Techniques for Obvious Code

  • Good naming and consistency.
  • Judicious use of whitespace and formatting to reveal structure.
  • Comments that explain the non-obvious.
  • Avoid implicit control flow in event-driven code (unless necessary).

Non-Obvious Code 🚩 Red Flag

  • If a reader cannot easily understand the behavior or meaning of a piece of code, it is not obvious enough.

XIV. Red Flags Quick Reference

Use these signals during code reviews and self-reviews:

SignalMeaning
Shallow ModuleInterface is nearly as complex as its implementation
Information LeakageSame design decision reflected in multiple modules
Temporal DecompositionModules split by execution order, not information hiding
OverexposureCommon API forces callers to know about rarely-used features
Pass-Through MethodMethod just forwards args to another method with similar signature
RepetitionNon-trivial code duplicated across locations
Special-General MixtureGeneral-purpose and special-purpose code not cleanly separated
Conjoined MethodsUnderstanding one method requires understanding another
Comment Repeats CodeComment is just an English translation of the code
Impl Contaminates InterfaceInterface docs expose implementation details users don't need
Vague NameName too generic to convey useful information
Hard to Pick NameCan't find a precise, intuitive name — design may be flawed
Hard to DescribeDocumentation must be long to be complete — module may be too complex
Non-Obvious CodeBehavior or meaning of code is not easily understood

XV. Design Principles Summary

  1. Complexity is incremental — sweat the small stuff.
  2. Working code isn't enough.
  3. Make continual small investments to improve system design.
  4. Modules should be deep.
  5. Interfaces should make the most common usage as simple as possible.
  6. A simple interface matters more than a simple implementation.
  7. General-purpose modules are deeper.
  8. Separate general-purpose and special-purpose code.
  9. Different layers should have different abstractions.
  10. Pull complexity downward.
  11. Define errors (and special cases) out of existence.
  12. Design it twice.
  13. Comments should describe things not obvious from the code.
  14. Software should be designed for ease of reading, not ease of writing.
  15. The increments of software development should be abstractions, not features.

Usage Guide

Reference this guide in the following scenarios:

  • Code review: Use the Red Flags quick reference to spot design problems.
  • API/Interface design: Aim for deep modules; ensure interfaces are simple for common usage.
  • Module decomposition: Split based on information hiding, not execution order or line count.
  • Error handling: Prefer "define errors out of existence" to reduce exception propagation.
  • Refactoring: Spend 10–20% of each change improving surrounding design.
  • Naming and comments: Names should be precise; comments should describe what the code doesn't show.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.77%
按下载量换算383

Claude

27.96%
按下载量换算284

Cursor

18.2%
按下载量换算185

Gemini CLI

9.21%
按下载量换算93

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills