AgentSkillsCN

architecture-design

围绕系统边界、数据流与模块组织,设计架构与代码结构。

SKILL.md
--- frontmatter
name: architecture-design
description: Architecture and code structure design for system boundaries, data flow, and module organization.
argument-hint: Ask for system design, data flow, or code structure decisions.

Architecture Design

Use this skill for system-level structure, module boundaries, and data flow decisions.

Core Guidance

  • Align with documented architecture and layering (app, components, services, lib, utils).
  • Keep responsibilities separated and avoid cross-layer leakage.
  • Design for clear data flow, error handling, and testability.

Checklist

  • Boundaries are explicit (UI vs business logic vs integration).
  • Types flow across layers without duplication.
  • Data access is centralized in services/lib.

References