Learning Commands · Learning

/visualize command

Create visual representations of a concept

1 min read

Create visual representations of a concept

At a glance

Field Value
Command /visualize
Usage `/visualize [--type=diagram
Category learning
Execution server
Context pok
Response type markdown
Active PoK required yes

Parameters

  • concept (required) — Concept to visualize

Examples

neural network layers
gradient descent path
OAuth2 flow
machine learning

How it works

The visualize command creates visual representations of concepts using Mermaid.js diagrams.

How it works:

  1. Enter a concept and optionally choose a visualization type
  2. The AI creates a Mermaid diagram (or ASCII art for --type=ascii)
  3. Click the Preview button on the code block to see the rendered diagram in a fullscreen split view

Parameters:

  • concept (required): The topic or concept to visualize
  • --type (optional): Visualization type. Default: diagram
    • diagram — structural diagrams (components & relationships)
    • flowchart — process flows (steps & decisions)
    • graph — data relationships & hierarchies
    • sequence — interaction sequences between actors/systems
    • mindmap — hierarchical topic maps
    • timeline — chronological events & milestones
    • pie — proportional distribution charts
    • er — entity-relationship data models
    • architecture — system architecture with grouped components
    • ascii — creative ASCII art (no Mermaid)

Tips:

  • Use --type=flowchart for processes and algorithms
  • Use --type=sequence for API or protocol flows
  • Use --type=mindmap for topic exploration
  • Use --type=er for database schema visualization
  • Click Preview to see the rendered diagram side-by-side with code

Was this article helpful?