Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
buiducnhat avatar

Visualize

  • 42 installs
  • 52 repo stars
  • Updated July 6, 2026
  • buiducnhat/cobrew

visualize is a Claude Code skill that turns repository docs, markdown, and plan folders into source-adjacent HTML visualizations with flows and Mermaid diagrams.

About

visualize is a Claude Code skill that creates source-adjacent HTML visualizations from repository documentation, markdown, and standardized plan folders. A developer uses it to turn docs, plans, process flows, and decisions into readable maps, timelines, and Mermaid diagrams. It is documentation-focused, escapes source text into templates, and refuses to invent facts. It is not for marketing pages or product prototypes.

  • Generates source-adjacent HTML with a fixed theme CSS and optional Mermaid diagrams
  • Routes to plan, context, or document templates based on the source material
  • Refuses to invent facts, metrics, or decisions and flags missing source with assumption blocks

Visualize by the numbers

  • 42 all-time installs (skills.sh)
  • Ranked #856 of 1,879 Documentation skills by installs in the Skillselion catalog
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

visualize capabilities & compatibility

Capabilities
documentation · docs
Use cases
documentation
Pricing
Free
From the docs

What visualize says it does

Create source-adjacent HTML visualizations for /visualize requests, docs, markdown, standardized plans, process flows, charts, Mermaid diagrams, context maps, and recommendation diagrams.
SKILL.md
it is intentionally documentation-focused: it turns real source material into readable maps, timelines, flows, risk blocks, and recommendation diagrams.
SKILL.md
Do not invent facts, fake metrics, fake decisions, fake users, fake constraints, or unsupported recommendations.
SKILL.md
npx skills add https://github.com/buiducnhat/cobrew --skill visualize

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs42
repo stars52
Last updatedJuly 6, 2026
Repositorybuiducnhat/cobrew

What it does

Turn repository docs, markdown, and standardized plan folders into source-adjacent HTML visualizations with flows, maps, and Mermaid diagrams.

Who is it for?

Documentation and plan visualization: maps, flows, decision views, and Mermaid diagrams from real source.

Skip if: Brand sites, marketing pages, product prototypes, production web apps, or slide decks.

When should I use this skill?

You need HTML visualizations of docs, markdown, standardized plans, process flows, charts, or context maps.

What you get

A source-adjacent HTML visualization with maps, flows, risks, and Mermaid diagrams backed by the source.

  • A source-adjacent visualize.html
  • A visualize-assets folder with theme CSS

By the numbers

  • Routes across 3 template types: plan, context, document

Files

SKILL.mdMarkdownGitHub ↗

Visualize

Overview

Create source-adjacent HTML visualizations from repository documentation, markdown files, standardized plan folders, and arbitrary user context. This skill is Huashu-derived in workflow discipline, but it is intentionally documentation-focused: it turns real source material into readable maps, timelines, flows, risk blocks, and recommendation diagrams.

Scope

Use this skill for:

  • Documentation and markdown visualization
  • Standardized plan folder visualization
  • Flow, chart, Mermaid, context map, and recommendation diagram requests
  • Source-adjacent HTML summaries that help users inspect structure, risks, decisions, and next steps

Do not use this skill for:

  • Brand sites or marketing pages
  • Product prototypes or production web apps
  • Slide decks, long motion demos, or broad visual design systems

Output Conventions

  • Plan folder: create visualize.html and visualize-assets/ inside the plan folder.
  • Brainstorm folder: create visualize.html and visualize-assets/ inside the brainstorm folder.
  • Current context tied to an active plan or brainstorm artifact folder: create visualize.html and visualize-assets/ inside that artifact folder.
  • Markdown or document file: create <source-base>.visualize.html and <source-base>.visualize-assets/ beside the source file.
  • Source-less context with no associated artifact folder: create docs/.visualizations/<slug>-YYMMDD-HHmm/visualize.html and docs/.visualizations/<slug>-YYMMDD-HHmm/visualize-assets/ unless the user specifies a target. Generate the timestamp with date +%y%m%d-%H%M.

Always copy references/templates/visualize-theme.css into the adjacent assets folder and link the copied local CSS from the generated HTML. Mermaid CDN usage is allowed for diagrams.

Workflow

1. Load project context when visualizing repository files (if the current session does not already have it).

  • If docs/SUMMARY.md exists, read it first.
  • Load only task-relevant detail docs.
  • Prioritize Code Standard docs for implementation conventions.
  • If docs conflict with code or user intent, use the available input/question tool before broad changes.

2. Load the source material.

  • For plan folders, read SUMMARY.md and relevant phase-XX-*.md files.
  • For brainstorm folders, read SUMMARY.md and relevant section-XX-*.md files.
  • For markdown or document files, read the requested source directly.
  • For current context tied to an active plan or brainstorm artifact folder, use the conversation/request content plus the artifact folder as the output target.
  • For source-less user context with no associated artifact folder, use only the provided conversation/request content.

3. Identify the visualization intent.

  • Determine whether the user needs a plan map, document map, process flow, decision view, recommendation view, or mixed visualization.
  • Ask with the input/question tool only when the source, target, or output ambiguity cannot be resolved safely.

4. Build a compact source inventory before choosing layout.

  • Use references/workflow.md and references/content-patterns.md.
  • Capture the source hierarchy, entities or files, phases or tasks, dependencies, decisions, risks, blockers, recommendations, verification steps, and missing evidence when present.
  • Treat templates as shells. A block belongs in the output only when it summarizes source-backed content, clarifies a relationship, or exposes a meaningful gap.

5. Choose the template with references/router.md.

  • Plan folders use references/templates/plan.html.
  • Brainstorm folders use references/templates/context.html.
  • Single documents use references/templates/document.html.
  • Source-less context uses references/templates/context.html.

6. Extract facts and assumptions into the selected block set.

  • Preserve source facts, file paths, statuses, risks, decisions, verification steps, and recommendations.
  • Label assumptions clearly when the source leaves gaps.

7. Compose the HTML.

  • Start from the selected template.
  • Replace VISUALIZE: marker regions with source-backed content and remove blocks that do not earn their place.
  • Escape source-derived text before inserting it into HTML unless the text is intentionally authored generated markup.
  • Copy visualize-theme.css beside the output before linking it.

8. Add Mermaid diagrams where they clarify structure.

  • Use references/mermaid-recipes.md.
  • Prefer several small diagrams over one dense diagram.
  • Skip Mermaid when a diagram would only restate headings or duplicate nearby prose.
  • Use readable HTML/CSS fallback blocks when Mermaid syntax is uncertain.

9. Verify the output with references/verification.md.

Rules

  • Do not invent facts, fake metrics, fake decisions, fake users, fake constraints, or unsupported recommendations.
  • Do not hide missing source content. Add an assumption or warning block instead.
  • Keep visualizations factual, source-adjacent, and easy to inspect.
  • Keep templates and generated HTML focused on documentation visualization, not broad design/prototype work.
  • Avoid large inline style blocks; use the copied fixed theme CSS.
  • Escape source-derived text before writing it into HTML unless it is intentional generated markup authored by the agent.
  • Preserve source links and paths when they help the user trace content back to origin.

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.