# Send PM Toolkit - Excalidraw - "Messy Thoughts" to "Visual Spec" in 30 seconds. to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "thought-to-excalidraw",
    "name": "PM Toolkit - Excalidraw - \"Messy Thoughts\" to \"Visual Spec\" in 30 seconds.",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/sairammahadevan/thought-to-excalidraw",
    "canonicalUrl": "https://clawhub.ai/sairammahadevan/thought-to-excalidraw",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/thought-to-excalidraw",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=thought-to-excalidraw",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/layout_diagram.py",
      "references/excalidraw-schema.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/thought-to-excalidraw"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/thought-to-excalidraw",
    "downloadUrl": "https://openagent3.xyz/downloads/thought-to-excalidraw",
    "agentUrl": "https://openagent3.xyz/skills/thought-to-excalidraw/agent",
    "manifestUrl": "https://openagent3.xyz/skills/thought-to-excalidraw/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/thought-to-excalidraw/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: sairammahadevan
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/thought-to-excalidraw)
- [Send to Agent page](https://openagent3.xyz/skills/thought-to-excalidraw/agent)
- [JSON manifest](https://openagent3.xyz/skills/thought-to-excalidraw/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/thought-to-excalidraw/agent.md)
- [Download page](https://openagent3.xyz/downloads/thought-to-excalidraw)