一键导入
create-sequence-view
Use when documenting a LikeC4 use case, temporal flow, or async behavior as a dynamic view, especially when order matters more than structure.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when documenting a LikeC4 use case, temporal flow, or async behavior as a dynamic view, especially when order matters more than structure.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Use when working with `.c4`/`.likec4` files or LikeC4 CLI/config questions where exact DSL/CLI syntax is required, especially for strict command/snippet-first answers, validate/export flags, predicates `*`/`_`/`**`, deployment snippets, dynamic views, or relationship extension matching.
Use when planning, reviewing, or correcting a LikeC4 model and you need to decide the right top-down design order (C1→C2→C3), whether C3 detail is warranted, or when to hand off from structural modeling to deployment or dynamic-view skills.
Use when editing `likec4.config.json`, include paths, image aliases, or splitting one project into a small set of focused LikeC4 files without redesigning the whole workspace.
Use when creating or modifying LikeC4 elements (systems, containers, components, nodes) with proper naming conventions, required metadata, and correct C4 hierarchy placement.
Use when connecting LikeC4 elements and you need to choose the exact logical or deployment relationship kind, place technology in the right field, or decide whether a connection belongs in the model or only in deployment.
Use when adjusting an existing LikeC4 view with styling, layout hints, drill-down navigation, or external links, without changing the structural contents of the view.
基于 SOC 职业分类
| name | create-sequence-view |
| description | Use when documenting a LikeC4 use case, temporal flow, or async behavior as a dynamic view, especially when order matters more than structure. |
Show who starts the flow, what happens next, and in what order.
Default answer shape:
views 'Use Cases'Do not use for static C1/C2/C3/deployment views — use design-view for those.
-> arrows onlyviews 'Use Cases'views 'Use Cases' {
dynamic view uploadFlow {
title 'Upload Flow'
user -> webApp 'Opens upload form'
webApp -> api 'POST /upload'
api -> objectStorage 'Stores file'
api -> jobQueue 'Queues processing'
jobQueue -> worker 'Delivers job'
worker -> primaryDatabase 'Updates metadata'
}
}
// ❌ Wrong in a dynamic view
user -> webApp
webApp -> webApp.authComponent
// ✅ Better
user -> webApp.authComponent 'Starts login'
webApp.authComponent -> directoryService 'Validates credentials'
You can still help:
-[calls]-> instead of plain ->views 'Use Cases'