# Send Workflowy API 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": "workflowy",
    "name": "Workflowy API",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/waldyrious/workflowy",
    "canonicalUrl": "https://clawhub.ai/waldyrious/workflowy",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/workflowy",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=workflowy",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### workflowy

Use the unofficial workflowy CLI mholzen/workflowy for managing a Workflowy outline. Requires API key setup.

### Setup (once)

Get your API key at https://workflowy.com/api-key/, and save it to ~/.workflowy/api.key:

mkdir -p ~/.workflowy
echo "your-api-key-here" > ~/.workflowy/api.key

### Reading

# Get root nodes (depth 2 by default)
workflowy get

# Get specific node by UUID or short ID
workflowy get <item-id>
workflowy get https://workflowy.com/#/59fc7acbc68c

# Show a node's children as a flat list
workflowy list <item-id>

# Search (full text, case-insensitive)
workflowy search -i "meeting notes"

# Search with extended regex
workflowy search -E "<time.*>"

# Search within a subtree
workflowy search "bug" --item-id <parent-id>

### Writing

# Add a new node to the Inbox
workflowy create "Buy groceries" --parent-id=inbox

# Add a node to a specific parent
workflowy create "Task" --parent-id=<uuid>

# Update a node
workflowy update <item-id> --name "New name"

# Complete/uncomplete
workflowy complete <item-id>
workflowy uncomplete <item-id>

# Move a node
workflowy move <item-id> <new-parent-id>

# Delete a node (includes its children!)
workflowy delete <item-id>

### Bulk operations

# Search and replace (dry run first!)
workflowy replace --dry-run "foo" "bar"
workflowy replace --interactive "foo" "bar"

# Regex find/replace using capture groups
workflowy replace "TASK-([0-9]+)" 'ISSUE-$1'

# Transform: split by newlines into children
workflowy transform <item-id> split -s "\\n"

# Transform: trim whitespace
workflowy transform <item-id> trim

### Statistics

# Where is most content?
workflowy report count --threshold 0.01

# Nodes with most children
workflowy report children --top-n 20

# Stale content (oldest modified)
workflowy report modified --top-n 50

# Most mirrored nodes (requires backup)
workflowy report mirrors --top-n 20

### Data Access Methods

MethodSpeedFreshnessUse For--method=getMediumReal-timeSpecific items--method=exportFast (cached)~1 minFull tree access--method=backupFastestStaleBulk ops, offline

For offline mode, enable Workflowy's Dropbox backup:

workflowy get --method=backup

### Short IDs

Workflowy supports short IDs, obtained from the "Copy Internal Link" menu:

Web URL: https://workflowy.com/#/59fc7acbc68c
Can be used directly, e.g. workflowy get https://workflowy.com/#/59fc7acbc68c

### Special named targets

inbox — user's inbox
home — root of outline

workflowy create "Quick note" --parent-id=inbox
workflowy id inbox  # resolve to UUID

### Notes

Deleting a node also deletes all its children
Results are sorted by priority (display order)
Use --method=export for large tree operations (cached, faster)
Mirror analysis requires using the backup method
Make sure to confirm before performing bulk replace operations
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: waldyrious
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-11T04:00:52.474Z
- Expires at: 2026-05-18T04:00:52.474Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/workflowy)
- [Send to Agent page](https://openagent3.xyz/skills/workflowy/agent)
- [JSON manifest](https://openagent3.xyz/skills/workflowy/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/workflowy/agent.md)
- [Download page](https://openagent3.xyz/downloads/workflowy)