# Wrike

> Manage projects, tasks, and workflows via Wrike API. Create tasks, update statuses, and track work.

- Skill: `modbender/wrike` (Agent Skill)
- Install (CLI): `npx skillmds add modbender/wrike`
- Raw SKILL.md: https://api.skillmd.com/api/skills/modbender/wrike/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: modbender (https://skillmd.com/u/modbender)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/modbender/wrike

---

# 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

