원클릭으로
source-command-extract
Extract design patterns from existing code to create a system.md file.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Extract design patterns from existing code to create a system.md file.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
REST API design patterns including resource naming, status codes, pagination, filtering, error responses, versioning, and rate limiting for production APIs.
Django testing strategies with pytest-django, TDD methodology, factory_boy, mocking, coverage, and testing Django REST Framework APIs.
Spring Security best practices for authn/authz, validation, CSRF, secrets, headers, rate limiting, and dependency security in Java Spring Boot services.
为网页应用快速接入 OpenClaw 通道配置,自动输出可直接复制的 Webhook URL 与 Token。用于用户说“帮我配置 OpenClaw 通道”“给我 Webhook 和 Token”“一键生成接入参数”“OpenClaw 对话接入配置”这类场景,支持外部网页与本地网页两种模式,减少手工查配置和复制错误。
基于 AI 自动生成高质量 PPT 图片和视频,支持智能转场和交互式播放。
Enforce TDD workflow for Kotlin. Write Kotest tests first, then implement. Verify 80%+ coverage with Kover.
| name | source-command-extract |
| description | Extract design patterns from existing code to create a system.md file. |
Use this skill when the user asks to run the migrated source command extract.
Extract design patterns from existing code to create a system.
/extract # Extract from common UI paths
/extract <path> # Extract from specific directory
Scan UI files (tsx, jsx, vue, svelte) for:
Repeated spacing values
Found: 4px (12x), 8px (23x), 12px (18x), 16px (31x), 24px (8x)
→ Suggests: Base 4px, Scale: 4, 8, 12, 16, 24
Repeated radius values
Found: 6px (28x), 8px (5x)
→ Suggests: Radius scale: 6px, 8px
Button patterns
Found 8 buttons:
- Height: 36px (7/8), 40px (1/8)
- Padding: 12px 16px (6/8), 16px (2/8)
→ Suggests: Button pattern: 36px h, 12px 16px padding
Card patterns
Found 12 cards:
- Border: 1px solid (10/12), none (2/12)
- Padding: 16px (9/12), 20px (3/12)
→ Suggests: Card pattern: 1px border, 16px padding
Depth strategy
box-shadow found: 2x
border found: 34x
→ Suggests: Borders-only depth
Then prompt:
Extracted patterns:
Spacing:
Base: 4px
Scale: 4, 8, 12, 16, 24, 32
Depth: Borders-only (34 borders, 2 shadows)
Patterns:
Button: 36px h, 12px 16px pad, 6px radius
Card: 1px border, 16px pad
Create .interface-design/system.md with these? (y/n/customize)