terminal-visualizer

Render interactive terminal visualizations. Only trigger when the user's prompt contains a "visual" keyword — visualize, visualization, visualizing, visual, visually (e.g. "Visualize our API architecture", "Create a visualization of revenue"). Do NOT trigger on unrelated words like "chart", "diagram", "compare", or "show".

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "terminal-visualizer" with this command: npx skills add gocodeweb/terminal-visualizer/gocodeweb-terminal-visualizer-terminal-visualizer

Terminal Visualizer

Prerequisites

Requires terminal-visualizer CLI installed globally:

npm install -g terminal-visualizer

When to Use

Only use terminal-visualizer when the user's prompt contains a "visual" keyword: visualize, visualization, visualizing, visual, visually. Do NOT trigger on generic words like "chart", "diagram", "compare", or "show".

How to Invoke

Pipe JSON to the CLI via the Bash tool. Use a heredoc for safe JSON passing:

terminal-visualizer <<'EOF'
{
  "type": "bar-chart",
  "title": "Revenue by Quarter",
  "data": [
    { "label": "Q1", "value": 120, "color": "blue" },
    { "label": "Q2", "value": 180, "color": "green" }
  ]
}
EOF

The CLI opens an interactive viewer in a split pane. The user navigates with arrow keys, selects with Enter, or quits with q. The selection is returned as text in the Bash output — use it to generate follow-up visualizations.

Visualization Types

bar-chart

{"type": "bar-chart", "title": "...", "data": [{"label": "Q1", "value": 120, "color": "blue"}]}

line-chart

{"type": "line-chart", "title": "...", "series": [{"name": "Mobile", "data": [100, 150], "color": "blue"}], "labels": ["Jan", "Feb"]}

flow-diagram

{"type": "flow-diagram", "title": "...", "nodes": [{"id": "api", "label": "API", "description": "Routes requests", "color": "blue"}], "edges": [{"from": "api", "to": "db", "label": "query"}]}

tree

{"type": "tree", "title": "...", "data": {"label": "Root", "children": [{"label": "Child A"}, {"label": "Child B", "children": [{"label": "Grandchild"}]}]}}

table

{"type": "table", "title": "...", "headers": ["Name", "Score"], "rows": [["Alice", 95], ["Bob", 87]]}

grid

2D spatial layouts — periodic tables, keyboard maps, game boards.

{"type": "grid", "title": "...", "cells": [{"row": 0, "col": 0, "label": "H", "sublabel": "1", "description": "Hydrogen", "color": "coral"}], "legend": [{"color": "coral", "label": "Nonmetal"}]}

timeline

Gantt-style temporal ranges with parallel lanes.

{"type": "timeline", "title": "...", "lanes": [{"label": "Backend", "items": [{"label": "API", "start": 0, "end": 3, "color": "blue"}]}], "axisLabels": ["W1", "W2", "W3"]}

heatmap

2D intensity matrix with color gradient.

{"type": "heatmap", "title": "...", "xLabels": ["Mon", "Tue"], "yLabels": ["9am", "12pm"], "data": [[5, 12], [8, 3]], "colorRamp": "green"}

stacked-bar-chart

Compositional bars showing segment breakdown.

{"type": "stacked-bar-chart", "title": "...", "categories": ["Q1", "Q2"], "segments": [{"name": "SaaS", "values": [80, 110], "color": "blue"}, {"name": "Services", "values": [40, 55], "color": "teal"}]}

sequence-diagram

Actor-to-actor message flows.

{"type": "sequence-diagram", "title": "...", "actors": [{"id": "client", "label": "Client", "color": "blue"}, {"id": "api", "label": "API", "color": "teal"}], "messages": [{"from": "client", "to": "api", "label": "POST /login"}, {"from": "api", "to": "client", "label": "200 JWT", "style": "dashed"}]}

Color Ramps

purple, teal, coral, pink, gray, blue, green, amber, red

Assign by meaning: blue=info, green=success, amber=warning, red=danger, purple=primary, teal=secondary.

Routing Logic

Request PatternType
"Visualize how X works"flow-diagram
"Visualize components of..."tree
"Visualize X vs Y"table
"Visualize the data/stats"bar-chart or line-chart
"Visualize the architecture"flow-diagram
"Visualize the timeline"timeline
"Visualize activity"heatmap
"Visualize breakdown by group"stacked-bar-chart
"Visualize the message flow"sequence-diagram
"Visualize the periodic table"grid

Guidelines

  • Keep labels short (1-3 words)
  • Flow diagrams: max 8-10 nodes
  • Charts: round numbers
  • Tables: max 8-10 columns
  • Use 2-3 colors per visualization

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

openclaw-version-monitor

监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明

Archived SourceRecently Updated
Coding

ask-claude

Delegate a task to Claude Code CLI and immediately report the result back in chat. Supports persistent sessions with full context memory. Safe execution: no data exfiltration, no external calls, file operations confined to workspace. Use when the user asks to run Claude, delegate a coding task, continue a previous Claude session, or any task benefiting from Claude Code's tools (file editing, code analysis, bash, etc.).

Archived SourceRecently Updated
Coding

ai-dating

This skill enables dating and matchmaking workflows. Use it when a user asks to make friends, find a partner, run matchmaking, or provide dating preferences/profile updates. The skill should execute `dating-cli` commands to complete profile setup, task creation/update, match checking, contact reveal, and review.

Archived SourceRecently Updated
Coding

clawhub-rate-limited-publisher

Queue and publish local skills to ClawHub with a strict 5-per-hour cap using the local clawhub CLI and host scheduler.

Archived SourceRecently Updated