# Send Wrike 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": "wrike",
    "name": "Wrike",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/tallhamn/wrike",
    "canonicalUrl": "https://clawhub.ai/tallhamn/wrike",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/wrike",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wrike",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "wrike",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T04:18:24.083Z",
      "expiresAt": "2026-05-18T04:18:24.083Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wrike",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wrike",
        "contentDisposition": "attachment; filename=\"wrike-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "wrike"
      },
      "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/wrike"
    },
    "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/wrike",
    "downloadUrl": "https://openagent3.xyz/downloads/wrike",
    "agentUrl": "https://openagent3.xyz/skills/wrike/agent",
    "manifestUrl": "https://openagent3.xyz/skills/wrike/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/wrike/agent.md"
  }
}
```
## Documentation

### Wrike CLI

Manage Wrike tasks, projects, folders, and comments. All commands return JSON: {"ok": true, "data": ...} on success, {"ok": false, "error": "..."} on failure.

### Setup

claw-wrike config set --token <WRIKE_TOKEN>
# Auto-detects US/EU data center. Token is stored in ~/.claw-wrike/config.json

### Quick Reference

claw-wrike <entity> <command> [--flags]

### Account & Spaces

claw-wrike account                          # Account info (name, root folder ID, etc.)
claw-wrike space list                       # List all spaces
claw-wrike space get --id <id>              # Get a space

### Folders & Projects

Wrike treats folders and projects as the same entity. Projects are folders with extra properties (owners, dates, status).

claw-wrike folder list                      # List all folders (tree structure)
claw-wrike folder list --space <id>         # List folders in a space
claw-wrike folder list --parent <id>        # List child folders
claw-wrike folder get --id <id>             # Get folder details

claw-wrike folder create --parent <id> --title "Folder name"
claw-wrike folder create --parent <id> --title "Project name" --project
claw-wrike folder create --parent <id> --title "Project name" --project --owner <contactId> --start-date 2026-03-01 --end-date 2026-06-01
claw-wrike folder create --parent <id> --title "Folder name" --dry-run   # Preview without creating

claw-wrike folder update --id <id> --title "New title"
claw-wrike folder update --id <id> --description "New description"
claw-wrike folder update --id <id> --add-parent <folderId>              # Move into another parent
claw-wrike folder update --id <id> --remove-parent <folderId>           # Remove from a parent
claw-wrike folder update --id <id> --dry-run                            # Preview without updating

claw-wrike folder delete --id <id>                                      # Moves to recycle bin
claw-wrike folder delete --id <id> --dry-run                            # Preview without deleting

### Tasks

claw-wrike task list                        # List tasks (default: 100, Active)
claw-wrike task list --folder <id>          # Tasks in a folder/project
claw-wrike task list --space <id>           # Tasks in a space
claw-wrike task list --status Active        # Filter: Active|Completed|Deferred|Cancelled
claw-wrike task list --assignee "Jane"      # Filter by assignee name
claw-wrike task list --importance High      # Filter: High|Normal|Low
claw-wrike task list --limit 20             # Limit results

claw-wrike task get --id <id>               # Full task details (description, custom fields, etc.)

claw-wrike task create --folder <id> --title "Task name"
claw-wrike task create --folder <id> --title "Task name" --assignee "Jane" --due 2026-03-01 --importance High
claw-wrike task create --folder <id> --title "Task name" --dry-run   # Preview without creating

claw-wrike task update --id <id> --title "New title"
claw-wrike task update --id <id> --add-assignee "Jane"
claw-wrike task update --id <id> --remove-assignee "Jane"
claw-wrike task update --id <id> --due 2026-04-01 --importance Low
claw-wrike task update --id <id> --status <customStatusId>
claw-wrike task update --id <id> --dry-run                           # Preview without updating

claw-wrike task delete --id <id>                                     # Moves to recycle bin
claw-wrike task delete --id <id> --dry-run                           # Preview without deleting

### Comments

claw-wrike comment list --task <id>         # List comments on a task
claw-wrike comment add --task <id> --text "Comment text"
claw-wrike comment update --id <id> --text "Updated text"
claw-wrike comment delete --id <id>

### Contacts, Workflows, Custom Fields

claw-wrike contact list                     # All contacts (users) in the account
claw-wrike contact get --id <id>            # Single contact details
claw-wrike workflow list                    # Workflows with custom statuses
claw-wrike customfield list                 # All custom field definitions

### Utilities

claw-wrike lookup --permalink <url>         # Resolve a Wrike permalink to task details
claw-wrike cache refresh                    # Force refresh cached contacts/workflows/fields
claw-wrike config show                      # Show current config (token masked)

### Important Notes

IDs: Wrike API IDs are alphanumeric strings like IEABMHYCI5P7AYDW. They are NOT the numeric IDs in permalink URLs.
Assignee resolution: Use names ("Jane", "Jane Doe") or IDs. Names are resolved via cached contacts.
Custom statuses: Use claw-wrike workflow list to find custom status IDs, then pass them to --status.
Folders = Projects: A project is a folder with a project property. Use folder commands for both.
Tasks can have multiple parents: A task can belong to multiple folders/projects.
Dry run: Use --dry-run on create/update commands to see the API call without executing it.
Rate limit: ~400 requests/minute. The CLI handles rate limiting and retries automatically.

### Before Any Operation

Use claw-wrike space list or claw-wrike folder list to find the right container ID.
Use claw-wrike workflow list to understand available statuses before changing task status.
Use claw-wrike task get --id <id> to read current state before updating.

### NEVER

Never guess task or folder IDs. Always look them up first.
Never update tasks without reading their current state.
Never bulk-modify tasks without user confirmation.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: tallhamn
- Version: 0.1.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:18:24.083Z
- Expires at: 2026-05-18T04:18:24.083Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/wrike)
- [Send to Agent page](https://openagent3.xyz/skills/wrike/agent)
- [JSON manifest](https://openagent3.xyz/skills/wrike/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/wrike/agent.md)
- [Download page](https://openagent3.xyz/downloads/wrike)