skills$openclaw/pm-visualizer
sairammahadevan3.1k

by sairammahadevan

pm-visualizer – OpenClaw Skill

pm-visualizer is an OpenClaw Skills integration for coding workflows. Visualizes Product Manager thoughts (Why, What, How, User Journey) into an editable Excalidraw diagram. Use when the user asks to "visualize specs", "create a PM diagram", or "map out product thoughts".

3.1k stars9.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namepm-visualizer
descriptionVisualizes Product Manager thoughts (Why, What, How, User Journey) into an editable Excalidraw diagram. Use when the user asks to "visualize specs", "create a PM diagram", or "map out product thoughts". OpenClaw Skills integration.
ownersairammahadevan
repositorysairammahadevan/thought-to-excalidraw
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @sairammahadevan/thought-to-excalidraw
last updatedFeb 7, 2026

Maintainer

sairammahadevan

sairammahadevan

Maintains pm-visualizer in the OpenClaw Skills directory.

View GitHub profile
File Explorer
6 files
.
references
excalidraw-schema.md
2.5 KB
scripts
layout_diagram.py
10.4 KB
_meta.json
360 B
SKILL.md
2.7 KB
SKILL.md

name: pm-visualizer description: Visualizes Product Manager thoughts (Why, What, How, User Journey) into an editable Excalidraw diagram. Use when the user asks to "visualize specs", "create a PM diagram", or "map out product thoughts".

PM Visualizer Skill

This skill converts unstructured Product Manager thoughts into a structured Excalidraw visualization.

Features

  • Smart Layout: Automatically columns "Why, What, How" and creates a horizontal flow for "User Journey".
  • Color Coding: Visual distinction between problem (Why - Yellow), solution (What - Green), implementation (How - Blue), and flow (Journey - Red/Pink).
  • Grouped Elements: Text is properly bound to containers so they move together.

Workflow

  1. Analyze Request: Extract the following sections from the user's prompt or context:

    • Title: The feature or product name.
    • Why: The problem statement, business goals, or "Why are we building this?".
    • What: The solution requirements, features, or "What is it?".
    • How: Technical implementation details, API strategy, or "How will we build it?".
    • Journey: A sequential list of steps for the user journey or process flow.
  2. Prepare Data: Create a JSON file (e.g., temp_visual_data.json) with this structure:

    {
      "title": "Feature Name",
      "why": ["Reason 1", "Reason 2"],
      "what": ["Feature 1", "Feature 2"],
      "how": ["Tech 1", "Tech 2"],
      "journey": ["Step 1", "Step 2", "Step 3"]
    }
    
  3. Generate Diagram: Run the python script to generate the .excalidraw file.

    python3 skills/pm-visualizer/scripts/layout_diagram.py temp_visual_data.json ~/Downloads/Documents/PM_Visuals/Output_Name.excalidraw
    

    Ensure the output directory exists first.

  4. Cleanup: Delete the temporary JSON input file.

  5. Report: Inform the user the file is ready at the output path.

Example

User: "Visualize a new 'Login with Google' feature. Why? Reduce friction. What? Google button on login page. How? OAuth2. Journey: User clicks button -> Google Popup -> Redirect to Dashboard."

Codex Action:

  1. Create login_spec.json:
    {
      "title": "Login with Google",
      "why": ["Reduce friction", "Increase conversion"],
      "what": ["Google Sign-in Button", "Profile Sync"],
      "how": ["OAuth 2.0 Flow", "Google Identity SDK"],
      "journey": ["User clicks 'Sign in with Google'", "Google permissions popup appears", "User approves access", "System verifies token", "User redirected to Dashboard"]
    }
    
  2. mkdir -p ~/Downloads/Documents/PM_Visuals
  3. python3 skills/pm-visualizer/scripts/layout_diagram.py login_spec.json ~/Downloads/Documents/PM_Visuals/Login_Spec.excalidraw
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install pm-visualizer?

Run openclaw add @sairammahadevan/thought-to-excalidraw in your terminal. This installs pm-visualizer into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/sairammahadevan/thought-to-excalidraw. Review commits and README documentation before installing.