ワンクリックで
visual-organizer
Converts prose, meeting notes, or overwhelm-dumps into Mermaid diagrams (flowchart / sequence / mindmap).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Converts prose, meeting notes, or overwhelm-dumps into Mermaid diagrams (flowchart / sequence / mindmap).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Motor-aware pacing — decomposes a goal, shows each estimate padded by the profile buffer, names why.
Motor-aware pacing — decomposes a goal, shows each estimate padded by the profile buffer, names why.
Morning brief — what changed overnight, what matters today, one next-action per project.
Transcript → four-section brief (my asks, others' asks, decisions, ambiguous items with verbatim quotes). Records decisions into the cognitive graph.
/resume command — reconstruct yesterday's mental state from the cognitive graph, without inventing facts.
Reformats responses to Answer-First when sessions run long; surfaces the user's own prior intent if past their break threshold. Also activates on design-critique contexts (Figma reviews, comp reviews, prototype walk-throughs, spec reviews) so the verdict lands before the reasoning.
| name | visual-organizer |
| version | 0.1.0 |
| description | Converts prose, meeting notes, or overwhelm-dumps into Mermaid diagrams (flowchart / sequence / mindmap). |
| neurotypes | ["adhd","audhd","asd"] |
| status | stable |
| triggers | [{"command":"/visualize"},{"command":"/diagram"},{"phrase":"draw this out"},{"phrase":"make a diagram"},{"phrase":"i can't see the structure"},{"phrase":"make a mermaid chart of this"},{"phrase":"show me the flow visually"},{"phrase":"map out the relationships"}] |
| mcp_dependencies | [] |
| profile_dependencies | ["preferences.motion"] |
| license | AGPL-3.0-or-later |
Turns a wall of related ideas into a Mermaid diagram so the user can see structure instead of paragraphs. Pure formatting skill — no MCP calls in v0.1.0.
Activate when any of the following holds:
/visualize or /diagram.The user picked the trigger. Respect it. Do not editorialise their state.
| Input shape | Diagram |
|---|---|
| Linear cause-and-effect, a process, or a pipeline | flowchart TD |
| Interactions between named actors over time | sequenceDiagram |
| Loose related concepts the user dumped in one go | mindmap |
| Branching decisions and consequences | flowchart LR with diamond {decision?} nodes |
If two fit, pick the one with fewer nodes. Cognitive load cap below is the tie-breaker.
```mermaid code block. Close it cleanly.camelCase (e.g. prRaised, staging, merge).[brackets] (rectangles), ("parens") (rounded), or {braces} (decisions).-- short label -->. Keep them under five words.subgraph name["Label"] ... end when grouping clarifies; do not over-group.Put both at the very top of the block, before any other content.
%%{init: {'theme':'neutral'}}%% — single neutral hue, matches the project palette.profile.preferences.motion == "reduced", also add %%{init: {'flowchart': {'animation': false}}}%%.The two init blocks can be merged into one when both apply. Either form is acceptable as long as both keys are honoured.
Hard cap: 25 nodes per diagram. If the input has more, split into two diagrams or roll up sub-concepts into a single node and surface the detail in prose underneath. This is the project default — do not exceed it without an explicit user instruction.
In this order, every time:
_Accessible description: <plain-prose summary>_
Length: 20–200 characters. Screen-reader users get the same content as sighted users.animation: false (when set) keeps motion out.mcp-cognitive-graph is available, optionally call recall_entity to populate node labels with the user's existing terminology and link concepts to prior decisions.See tests/01-flowchart-from-prose.md, tests/02-sequence-from-meeting-notes.md, tests/03-mindmap-from-overwhelm-dump.md, and tests/04-flowchart-from-cant-see-structure.md for full input → output pairs that the CI replays against a reference client.