Manage projects, tasks, and workflows via Wrike API. Create tasks, update statuses, and track work.
Scanned 2/12/2026
Install via CLI
openskills install openclaw/skills---
name: wrike
description: Manage projects, tasks, and workflows via Wrike API. Create tasks, update statuses, and track work.
metadata: {"clawdbot":{"emoji":"📊","requires":{"env":["WRIKE_ACCESS_TOKEN"]}}}
---
# Wrike
Project management platform.
## Environment
```bash
export WRIKE_ACCESS_TOKEN="xxxxxxxxxx"
```
## List Folders
```bash
curl "https://www.wrike.com/api/v4/folders" -H "Authorization: Bearer $WRIKE_ACCESS_TOKEN"
```
## Create Task
```bash
curl -X POST "https://www.wrike.com/api/v4/folders/{folderId}/tasks" \
-H "Authorization: Bearer $WRIKE_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"title": "New Task", "status": "Active"}'
```
## List Tasks
```bash
curl "https://www.wrike.com/api/v4/tasks" -H "Authorization: Bearer $WRIKE_ACCESS_TOKEN"
```
## Links
- Docs: https://developers.wrike.com
No comments yet. Be the first to comment!
Interact with the Paperclip control plane API to manage tasks, coordinate with other agents, and follow company governance. Use when you need to check assignments, update task status, delegate work, post comments, set up or manage routines (recurring scheduled tasks), or call any Paperclip API endpoint. Do NOT use for the actual domain work itself (writing code, research, etc.) — only for Paperclip coordination.