{
  "schemaVersion": "1.0",
  "item": {
    "slug": "workflowy",
    "name": "Workflowy API",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/waldyrious/workflowy",
    "canonicalUrl": "https://clawhub.ai/waldyrious/workflowy",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/workflowy",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=workflowy",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.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",
      "slug": "workflowy",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T04:00:52.474Z",
      "expiresAt": "2026-05-18T04:00:52.474Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=workflowy",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=workflowy",
        "contentDisposition": "attachment; filename=\"workflowy-1.0.7.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "workflowy"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/workflowy"
    },
    "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/workflowy",
    "agentPageUrl": "https://openagent3.xyz/skills/workflowy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/workflowy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/workflowy/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": "workflowy",
        "body": "Use the unofficial workflowy CLI mholzen/workflowy for managing a Workflowy outline. Requires API key setup."
      },
      {
        "title": "Setup (once)",
        "body": "Get your API key at https://workflowy.com/api-key/, and save it to ~/.workflowy/api.key:\n\nmkdir -p ~/.workflowy\necho \"your-api-key-here\" > ~/.workflowy/api.key"
      },
      {
        "title": "Reading",
        "body": "# Get root nodes (depth 2 by default)\nworkflowy get\n\n# Get specific node by UUID or short ID\nworkflowy get <item-id>\nworkflowy get https://workflowy.com/#/59fc7acbc68c\n\n# Show a node's children as a flat list\nworkflowy list <item-id>\n\n# Search (full text, case-insensitive)\nworkflowy search -i \"meeting notes\"\n\n# Search with extended regex\nworkflowy search -E \"<time.*>\"\n\n# Search within a subtree\nworkflowy search \"bug\" --item-id <parent-id>"
      },
      {
        "title": "Writing",
        "body": "# Add a new node to the Inbox\nworkflowy create \"Buy groceries\" --parent-id=inbox\n\n# Add a node to a specific parent\nworkflowy create \"Task\" --parent-id=<uuid>\n\n# Update a node\nworkflowy update <item-id> --name \"New name\"\n\n# Complete/uncomplete\nworkflowy complete <item-id>\nworkflowy uncomplete <item-id>\n\n# Move a node\nworkflowy move <item-id> <new-parent-id>\n\n# Delete a node (includes its children!)\nworkflowy delete <item-id>"
      },
      {
        "title": "Bulk operations",
        "body": "# Search and replace (dry run first!)\nworkflowy replace --dry-run \"foo\" \"bar\"\nworkflowy replace --interactive \"foo\" \"bar\"\n\n# Regex find/replace using capture groups\nworkflowy replace \"TASK-([0-9]+)\" 'ISSUE-$1'\n\n# Transform: split by newlines into children\nworkflowy transform <item-id> split -s \"\\n\"\n\n# Transform: trim whitespace\nworkflowy transform <item-id> trim"
      },
      {
        "title": "Statistics",
        "body": "# Where is most content?\nworkflowy report count --threshold 0.01\n\n# Nodes with most children\nworkflowy report children --top-n 20\n\n# Stale content (oldest modified)\nworkflowy report modified --top-n 50\n\n# Most mirrored nodes (requires backup)\nworkflowy report mirrors --top-n 20"
      },
      {
        "title": "Data Access Methods",
        "body": "MethodSpeedFreshnessUse For--method=getMediumReal-timeSpecific items--method=exportFast (cached)~1 minFull tree access--method=backupFastestStaleBulk ops, offline\n\nFor offline mode, enable Workflowy's Dropbox backup:\n\nworkflowy get --method=backup"
      },
      {
        "title": "Short IDs",
        "body": "Workflowy supports short IDs, obtained from the \"Copy Internal Link\" menu:\n\nWeb URL: https://workflowy.com/#/59fc7acbc68c\nCan be used directly, e.g. workflowy get https://workflowy.com/#/59fc7acbc68c"
      },
      {
        "title": "Special named targets",
        "body": "inbox — user's inbox\nhome — root of outline\n\nworkflowy create \"Quick note\" --parent-id=inbox\nworkflowy id inbox  # resolve to UUID"
      },
      {
        "title": "Notes",
        "body": "Deleting a node also deletes all its children\nResults are sorted by priority (display order)\nUse --method=export for large tree operations (cached, faster)\nMirror analysis requires using the backup method\nMake sure to confirm before performing bulk replace operations"
      }
    ],
    "body": "workflowy\n\nUse the unofficial workflowy CLI mholzen/workflowy for managing a Workflowy outline. Requires API key setup.\n\nSetup (once)\n\nGet your API key at https://workflowy.com/api-key/, and save it to ~/.workflowy/api.key:\n\nmkdir -p ~/.workflowy\necho \"your-api-key-here\" > ~/.workflowy/api.key\n\nCommon commands\nReading\n# Get root nodes (depth 2 by default)\nworkflowy get\n\n# Get specific node by UUID or short ID\nworkflowy get <item-id>\nworkflowy get https://workflowy.com/#/59fc7acbc68c\n\n# Show a node's children as a flat list\nworkflowy list <item-id>\n\n# Search (full text, case-insensitive)\nworkflowy search -i \"meeting notes\"\n\n# Search with extended regex\nworkflowy search -E \"<time.*>\"\n\n# Search within a subtree\nworkflowy search \"bug\" --item-id <parent-id>\n\nWriting\n# Add a new node to the Inbox\nworkflowy create \"Buy groceries\" --parent-id=inbox\n\n# Add a node to a specific parent\nworkflowy create \"Task\" --parent-id=<uuid>\n\n# Update a node\nworkflowy update <item-id> --name \"New name\"\n\n# Complete/uncomplete\nworkflowy complete <item-id>\nworkflowy uncomplete <item-id>\n\n# Move a node\nworkflowy move <item-id> <new-parent-id>\n\n# Delete a node (includes its children!)\nworkflowy delete <item-id>\n\nBulk operations\n# Search and replace (dry run first!)\nworkflowy replace --dry-run \"foo\" \"bar\"\nworkflowy replace --interactive \"foo\" \"bar\"\n\n# Regex find/replace using capture groups\nworkflowy replace \"TASK-([0-9]+)\" 'ISSUE-$1'\n\n# Transform: split by newlines into children\nworkflowy transform <item-id> split -s \"\\n\"\n\n# Transform: trim whitespace\nworkflowy transform <item-id> trim\n\nStatistics\n# Where is most content?\nworkflowy report count --threshold 0.01\n\n# Nodes with most children\nworkflowy report children --top-n 20\n\n# Stale content (oldest modified)\nworkflowy report modified --top-n 50\n\n# Most mirrored nodes (requires backup)\nworkflowy report mirrors --top-n 20\n\nData Access Methods\nMethod\tSpeed\tFreshness\tUse For\n--method=get\tMedium\tReal-time\tSpecific items\n--method=export\tFast (cached)\t~1 min\tFull tree access\n--method=backup\tFastest\tStale\tBulk ops, offline\n\nFor offline mode, enable Workflowy's Dropbox backup:\n\nworkflowy get --method=backup\n\nShort IDs\n\nWorkflowy supports short IDs, obtained from the \"Copy Internal Link\" menu:\n\nWeb URL: https://workflowy.com/#/59fc7acbc68c\nCan be used directly, e.g. workflowy get https://workflowy.com/#/59fc7acbc68c\nSpecial named targets\ninbox — user's inbox\nhome — root of outline\nworkflowy create \"Quick note\" --parent-id=inbox\nworkflowy id inbox  # resolve to UUID\n\nNotes\nDeleting a node also deletes all its children\nResults are sorted by priority (display order)\nUse --method=export for large tree operations (cached, faster)\nMirror analysis requires using the backup method\nMake sure to confirm before performing bulk replace operations"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/waldyrious/workflowy",
    "publisherUrl": "https://clawhub.ai/waldyrious/workflowy",
    "owner": "waldyrious",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/workflowy",
    "downloadUrl": "https://openagent3.xyz/downloads/workflowy",
    "agentUrl": "https://openagent3.xyz/skills/workflowy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/workflowy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/workflowy/agent.md"
  }
}