一键导入
create-sequence-view
Create sequence views showing temporal flows and user interactions. Uses plain arrows with descriptive labels (no relationship kinds).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create sequence views showing temporal flows and user interactions. Uses plain arrows with descriptive labels (no relationship kinds).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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.
| name | create-sequence-view |
| description | Create sequence views showing temporal flows and user interactions. Uses plain arrows with descriptive labels (no relationship kinds). |
Use this skill when documenting use case flows and interactions.
Dynamic views MUST explicitly show the actor(s) that initiate the flow for context:
Place sequence/dynamic views in the 'Use Cases' subfolder to show temporal flows - how the system behaves during important operations.
Types of use cases to document:
views 'Use Cases' {
dynamic view upload_flow { ... }
dynamic view retrieval_flow { ... }
dynamic view backup_replication { ... }
dynamic view error_handling { ... }
}
dynamic view with descriptive ID-> not -[kind]->views 'Use Cases' subfolderviews 'Use Cases' {
dynamic view sequence_upload {
title 'Use Cases / Document Upload Flow'
user -> mySystem.webapp 'Opens upload form'
mySystem.webapp -> mySystem.api 'POST /upload'
mySystem.api -> mySystem.storage 'Store file'
mySystem.api -> mySystem.queue 'Queue processing job'
mySystem.queue -> mySystem.worker 'Execute job'
mySystem.worker -> mySystem.database 'Update metadata'
}