{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/thought-to-excalidraw",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=thought-to-excalidraw",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/layout_diagram.py",
      "references/excalidraw-schema.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/thought-to-excalidraw",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "PM Visualizer Skill",
        "body": "This skill converts unstructured Product Manager thoughts into a structured Excalidraw visualization."
      },
      {
        "title": "Features",
        "body": "Smart Layout: Automatically columns \"Why, What, How\" and creates a horizontal flow for \"User Journey\".\nColor Coding: Visual distinction between problem (Why - Yellow), solution (What - Green), implementation (How - Blue), and flow (Journey - Red/Pink).\nGrouped Elements: Text is properly bound to containers so they move together."
      },
      {
        "title": "Workflow",
        "body": "Analyze Request: Extract the following sections from the user's prompt or context:\n\nTitle: The feature or product name.\nWhy: The problem statement, business goals, or \"Why are we building this?\".\nWhat: The solution requirements, features, or \"What is it?\".\nHow: Technical implementation details, API strategy, or \"How will we build it?\".\nJourney: A sequential list of steps for the user journey or process flow.\n\n\n\nPrepare Data: Create a JSON file (e.g., temp_visual_data.json) with this structure:\n{\n  \"title\": \"Feature Name\",\n  \"why\": [\"Reason 1\", \"Reason 2\"],\n  \"what\": [\"Feature 1\", \"Feature 2\"],\n  \"how\": [\"Tech 1\", \"Tech 2\"],\n  \"journey\": [\"Step 1\", \"Step 2\", \"Step 3\"]\n}\n\n\n\nGenerate Diagram: Run the python script to generate the .excalidraw file.\npython3 skills/pm-visualizer/scripts/layout_diagram.py temp_visual_data.json ~/Downloads/Documents/PM_Visuals/Output_Name.excalidraw\n\nEnsure the output directory exists first.\n\n\nCleanup: Delete the temporary JSON input file.\n\n\nReport: Inform the user the file is ready at the output path."
      },
      {
        "title": "Example",
        "body": "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.\"\n\nCodex Action:\n\nCreate login_spec.json:\n{\n  \"title\": \"Login with Google\",\n  \"why\": [\"Reduce friction\", \"Increase conversion\"],\n  \"what\": [\"Google Sign-in Button\", \"Profile Sync\"],\n  \"how\": [\"OAuth 2.0 Flow\", \"Google Identity SDK\"],\n  \"journey\": [\"User clicks 'Sign in with Google'\", \"Google permissions popup appears\", \"User approves access\", \"System verifies token\", \"User redirected to Dashboard\"]\n}\n\n\nmkdir -p ~/Downloads/Documents/PM_Visuals\npython3 skills/pm-visualizer/scripts/layout_diagram.py login_spec.json ~/Downloads/Documents/PM_Visuals/Login_Spec.excalidraw"
      }
    ],
    "body": "PM Visualizer Skill\n\nThis skill converts unstructured Product Manager thoughts into a structured Excalidraw visualization.\n\nFeatures\nSmart Layout: Automatically columns \"Why, What, How\" and creates a horizontal flow for \"User Journey\".\nColor Coding: Visual distinction between problem (Why - Yellow), solution (What - Green), implementation (How - Blue), and flow (Journey - Red/Pink).\nGrouped Elements: Text is properly bound to containers so they move together.\nWorkflow\n\nAnalyze Request: Extract the following sections from the user's prompt or context:\n\nTitle: The feature or product name.\nWhy: The problem statement, business goals, or \"Why are we building this?\".\nWhat: The solution requirements, features, or \"What is it?\".\nHow: Technical implementation details, API strategy, or \"How will we build it?\".\nJourney: A sequential list of steps for the user journey or process flow.\n\nPrepare Data: Create a JSON file (e.g., temp_visual_data.json) with this structure:\n\n{\n  \"title\": \"Feature Name\",\n  \"why\": [\"Reason 1\", \"Reason 2\"],\n  \"what\": [\"Feature 1\", \"Feature 2\"],\n  \"how\": [\"Tech 1\", \"Tech 2\"],\n  \"journey\": [\"Step 1\", \"Step 2\", \"Step 3\"]\n}\n\n\nGenerate Diagram: Run the python script to generate the .excalidraw file.\n\npython3 skills/pm-visualizer/scripts/layout_diagram.py temp_visual_data.json ~/Downloads/Documents/PM_Visuals/Output_Name.excalidraw\n\n\nEnsure the output directory exists first.\n\nCleanup: Delete the temporary JSON input file.\n\nReport: Inform the user the file is ready at the output path.\n\nExample\n\nUser: \"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.\"\n\nCodex Action:\n\nCreate login_spec.json:\n{\n  \"title\": \"Login with Google\",\n  \"why\": [\"Reduce friction\", \"Increase conversion\"],\n  \"what\": [\"Google Sign-in Button\", \"Profile Sync\"],\n  \"how\": [\"OAuth 2.0 Flow\", \"Google Identity SDK\"],\n  \"journey\": [\"User clicks 'Sign in with Google'\", \"Google permissions popup appears\", \"User approves access\", \"System verifies token\", \"User redirected to Dashboard\"]\n}\n\nmkdir -p ~/Downloads/Documents/PM_Visuals\npython3 skills/pm-visualizer/scripts/layout_diagram.py login_spec.json ~/Downloads/Documents/PM_Visuals/Login_Spec.excalidraw"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/sairammahadevan/thought-to-excalidraw",
    "publisherUrl": "https://clawhub.ai/sairammahadevan/thought-to-excalidraw",
    "owner": "sairammahadevan",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}