원클릭으로
flowchart
Generate flowcharts and diagrams using typst with cetz
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate flowcharts and diagrams using typst with cetz
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when user wants to sync, push, or add BibTeX entries to a Zotero collection/folder. Handles deduplication by DOI, arXiv ID, or title.
Update skills with concise concrete practices, keeping SKILL.md minimal
Log ML experiments with hyperparameters, metrics, and plots; human interprets results and plans next experiments
Evaluate necessity and difficulty of issues, polish body, and create on GitHub with AI-assisted triage
Research academic papers and questions, write typst documents with cetz visualizations, teach until human understands
Autonomous daily digest of relevant arxiv papers in physics and ML based on your interests
| name | flowchart |
| description | Generate flowcharts and diagrams using typst with cetz |
You are executing the flowchart skill.
$ARGUMENTS
Generate flowcharts, state diagrams, and process flows using typst and cetz.
Describe your flowchart in plain text or structured format:
start -> process A -> decision?
yes -> process B -> end
no -> process C -> process A
#import "@preview/cetz:0.3.2"
#cetz.canvas({
import cetz.draw: *
// Styles
let node(pos, label, name, shape: "rect") = {
if shape == "rect" {
rect(
(pos.at(0) - 1, pos.at(1) - 0.4),
(pos.at(0) + 1, pos.at(1) + 0.4),
name: name
)
} else if shape == "diamond" {
// Decision node
let s = 0.6
line(
(pos.at(0), pos.at(1) + s),
(pos.at(0) + s, pos.at(1)),
(pos.at(0), pos.at(1) - s),
(pos.at(0) - s, pos.at(1)),
close: true,
name: name
)
} else if shape == "circle" {
circle(pos, radius: 0.4, name: name)
}
content(pos, label)
}
let arrow(from, to, label: none, anchor: "south") = {
line(from, to, mark: (end: ">"))
if label != none {
content((from, 50%, to), label, anchor: anchor)
}
}
// Nodes
node((0, 4), "Start", "start", shape: "circle")
node((0, 2), "Process A", "a")
node((0, 0), "Decision?", "d", shape: "diamond")
node((2, 0), "Process B", "b")
node((-2, 0), "Process C", "c")
node((2, -2), "End", "end", shape: "circle")
// Arrows
arrow("start.south", "a.north")
arrow("a.south", "d.north")
arrow("d.east", "b.west", label: "yes")
arrow("d.west", "c.east", label: "no")
arrow("b.south", "end.north")
arrow("c.south", (rel: (0, -1)), (rel: (0, 0)), "a.west")
})
| Shape | Use | Cetz |
|---|---|---|
| Rectangle | Process/Action | rect() |
| Diamond | Decision | 4-point line() |
| Circle | Start/End | circle() |
| Parallelogram | Input/Output | skewed line() |
A -> B -> C -> D
A -> B?
yes -> C
no -> D
A -> B -> check?
continue -> B
done -> C