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

system-design-generator系统设计生成器

Agent Skill

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

总安装

2,546

周安装

103

GitHub Stars

33

下载量

799
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/patricio0312rev/skills --skill system-design-generator

简介

system-design-generator 用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化,适合让 Agent 整理页面结构、生成 UI 方案或改进组件层级。

  • 适用于界面设计与用户体验优化场景,需结合现有品牌和设计系统使用。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和维护状态。
  • 涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出和对齐。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

System Design Generator

Create comprehensive system architecture plans from requirements.

System Design Document Template

# System Design: [Feature/Product Name]

## Overview

Brief description of what we're building and why.

## Requirements

### Functional

- User can upload videos (max 1GB)
- System processes video within 5 minutes
- User receives notification when complete

### Non-Functional

- Handle 1000 uploads/day
- 99.9% uptime
- Process videos in <5 minutes (p95)
- Cost: <$0.50 per video

## High-Level Architecture

┌─────────┐ ┌──────────┐ ┌─────────────┐ │ Client │─────▶│ API │─────▶│ Upload │ │ │ │ Gateway │ │ Service │ └─────────┘ └──────────┘ └─────────────┘ │ ▼ ┌─────────────┐ │ Storage │ │ (S3) │ └─────────────┘ │ ▼ ┌─────────────┐ │ Processing │◀─┐ │ Queue │ │ └─────────────┘ │ │ │ ▼ │ ┌─────────────┐ │ │ Processor │─┘ │ Workers │ └─────────────┘ │ ▼ ┌─────────────┐ │Notification │ │ Service │ └─────────────┘

## Components

### 1. API Gateway
**Responsibilities:**
- Authentication
- Rate limiting
- Request routing

**Technology:** Kong/AWS API Gateway
**Scaling:** Auto-scale based on requests/sec

### 2. Upload Service
**Responsibilities:**
- Generate pre-signed S3 URLs
- Validate file metadata
- Enqueue processing jobs

**API:**

POST /uploads Request: {filename, size, content_type} Response: {upload_url, upload_id}

**Technology:** Node.js + Express
**Scaling:** Horizontal (stateless)

### 3. Storage (S3)
**Responsibilities:**
- Store raw videos
- Store processed outputs
- Serve content via CDN

**Structure:**

/uploads/{user_id}/{upload_id}/original.mp4 /processed/{user_id}/{upload_id}/output.mp4

### 4. Processing Queue
**Responsibilities:**
- Buffer processing jobs
- Ensure at-least-once delivery
- DLQ for failed jobs

**Technology:** AWS SQS
**Configuration:**
- Visibility timeout: 15 minutes
- DLQ after 3 retries

### 5. Processor Workers
**Responsibilities:**
- Transcode videos
- Generate thumbnails
- Update database

**Technology:** Python + FFmpeg
**Scaling:** Auto-scale on queue depth

## Data Flow

### Upload Flow
1. Client requests upload URL from Upload Service
2. Upload Service generates pre-signed S3 URL
3. Client uploads directly to S3
4. Client notifies Upload Service of completion
5. Upload Service enqueues processing job
6. Returns upload_id to client

### Processing Flow
1. Worker polls queue for jobs
2. Downloads video from S3
3. Processes video (transcode, thumbnail)
4. Uploads results to S3
5. Updates database status
6. Sends notification
7. Deletes message from queue

## Data Model

interface Upload { id: string; user_id: string; filename: string; size: number; status: 'pending' | 'processing' | 'complete' | 'failed'; original_url: string; processed_url?: string; created_at: Date; processed_at?: Date; }

interface ProcessingJob { upload_id: string; attempts: number; error?: string; }


## API Contract

### Upload Endpoints

POST /uploads - Request upload URL GET /uploads/:id - Get upload status DELETE /uploads/:id - Cancel upload GET /uploads - List user uploads


### Webhooks

POST {webhook_url} { "event": "upload.completed", "upload_id": "...", "status": "complete", "processed_url": "..." }


## Scaling Considerations

### Current Capacity

- 1000 uploads/day = ~1 per minute
- Single worker can process 1 video every 5 minutes
- Need 5 workers for current load

### 10x Scale (10,000/day)

- ~10 uploads per minute
- Need 50 workers
- Use spot instances for cost savings
- Add Redis cache for status checks

### 100x Scale (100,000/day)

- ~100 uploads per minute
- Partition by region
- Use Kafka instead of SQS
- Database sharding by user_id

## Failure Modes

### S3 Unavailable

- Impact: Uploads fail
- Mitigation: Multi-region S3 replication

### Queue Backed Up

- Impact: Processing delays
- Mitigation: Auto-scale workers faster

### Worker Crash During Processing

- Impact: Job retried
- Mitigation: Idempotent processing

## Cost Estimate

**Monthly (1000 uploads/day):**

- S3 Storage: $50
- S3 Transfer: $100
- SQS: $10
- Workers (EC2): $300
- Database: $100 **Total: ~$560/month**

## Security

- Pre-signed URLs expire in 1 hour
- Videos in private S3 buckets
- CloudFront signed URLs for delivery
- Rate limiting per user

## Monitoring

**Metrics:**

- Upload success rate
- Processing time (p50, p95, p99)
- Queue depth
- Worker CPU/memory
- Error rate by type

**Alerts:**

- Queue depth >1000
- Processing time p95 >10 minutes
- Error rate >5%

## Open Questions

- Video retention policy? (30 days? 1 year?)
- Maximum video duration? (affects processing time)
- Regional data residency requirements?

Component Template

### Component Name

**Responsibilities:**
- Primary responsibility
- Secondary responsibility

**Technology Stack:**
- Language: [Python/Node/Go]
- Framework: [Express/FastAPI/Gin]
- Database: [PostgreSQL/MongoDB]

**API/Interface:**

interface ComponentAPI { method(params): ReturnType; }


**Scaling Strategy:**

- Horizontal: Stateless, load balanced
- Vertical: Cache layer, connection pooling

**Dependencies:**

- Service A (for X)
- Database B (for persistence)

**Failure Handling:**

- Retry with exponential backoff
- Circuit breaker for downstream services
- Fallback to cached data

Best Practices

  1. Start with requirements: Functional + non-functional
  2. Draw diagrams first: Visual clarity
  3. Define boundaries: What's in scope vs out
  4. Document tradeoffs: Every choice has costs
  5. Plan for failure: What breaks and how to handle
  6. Consider scale: Current, 10x, 100x
  7. Estimate costs: Build vs buy decisions
  8. Leave open questions: Don't pretend to know everything

Output Checklist

  • [ ] Requirements documented (functional + non-functional)
  • [ ] High-level architecture diagram
  • [ ] Component breakdown (3-7 components)
  • [ ] Data flow documented
  • [ ] Data model defined
  • [ ] API contracts specified
  • [ ] Scaling considerations (1x, 10x, 100x)
  • [ ] Failure modes identified
  • [ ] Cost estimate provided
  • [ ] Security considerations
  • [ ] Monitoring plan

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

27.65%
按下载量换算221

Gemini CLI

23.86%
按下载量换算191

Antigravity

16.57%
按下载量换算132

windsurf

12.82%
按下载量换算102

github-copilot

7.14%
按下载量换算57

Codex

2.86%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills