โ† All skills
Tencent SkillHub ยท Content Creation

PM Toolkit - Excalidraw - "Messy Thoughts" to "Visual Spec" in 30 seconds.

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".

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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".

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/layout_diagram.py, references/excalidraw-schema.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 4 sections Open source page

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

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. 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"] } 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. Cleanup: Delete the temporary JSON input file. 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: 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"] } mkdir -p ~/Downloads/Documents/PM_Visuals python3 skills/pm-visualizer/scripts/layout_diagram.py login_spec.json ~/Downloads/Documents/PM_Visuals/Login_Spec.excalidraw

Category context

Writing, remixing, publishing, visual generation, and marketing content production.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • references/excalidraw-schema.md Docs
  • scripts/layout_diagram.py Scripts