一键导入
implement-pattern
Apply common patterns (external integration, async processing, multi-tier, caching). Provides tested templates.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Apply common patterns (external integration, async processing, multi-tier, caching). Provides tested templates.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Design views with proper includes/excludes and basic layout. Use for include patterns, tag filtering, and simple rank hints. For advanced styling/navigation, use customize-view.
Model deployment infrastructure (environments, zones, VMs, apps) with proper hierarchy and instanceOf links. Organize zones into tiers (DMZ, App, Data, Processing) with rich descriptions including VLAN/network specifications.
Use metadata for system models (business/technical context) and markdown tables for deployment models (infrastructure specs). Makes models queryable and self-documenting.
C4 modeling methodology - design system hierarchy top-to-bottom from Context to Components. Ensures consistent, stakeholder-focused architecture documentation.
Manage likec4.config.json includes and image aliases. Ensures relative paths and preserves existing configuration. Support multi-file organization (system-model + system-views + deployment + operations).
Create elements with proper naming (PascalCase kinds, camelCase vars), required metadata (technology, description), and correct hierarchy.
基于 SOC 职业分类
| name | implement-pattern |
| description | Apply common patterns (external integration, async processing, multi-tier, caching). Provides tested templates. |
Use this skill when implementing standard architectural patterns.
externalService = System_External 'Third-Party API' {
technology 'REST API'
description 'External payment processor'
#External
}
mySystem.api -[calls]-> externalService 'Process payment'
queue = Container_Queue 'Job Queue' {
technology 'RabbitMQ'
description 'Async job processing'
}
api -[async]-> queue 'Publishes jobs'
worker -[async]-> queue 'Consumes jobs'
webapp = Container_Webapp 'Web App' {
technology 'React'
description 'User interface'
}
api = Container_Api 'API' {
technology 'Node.js'
description 'Business logic'
}
database = Container_Database 'Database' {
technology 'PostgreSQL'
description 'Data persistence'
}
webapp -[calls]-> api 'API requests'
api -[reads]-> database 'Queries'
api -[writes]-> database 'Updates'