4.7k★by mrgoodb
wrike – OpenClaw Skill
wrike is an OpenClaw Skills integration for coding workflows. Manage projects, tasks, and workflows via Wrike API. Create tasks, update statuses, and track work.
4.7k stars3.0k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding
Skill Snapshot
| name | wrike |
| description | Manage projects, tasks, and workflows via Wrike API. Create tasks, update statuses, and track work. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/wrike |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/wrike |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
263 BSKILL.md
836 BSKILL.md
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
export WRIKE_ACCESS_TOKEN="xxxxxxxxxx"
List Folders
curl "https://www.wrike.com/api/v4/folders" -H "Authorization: Bearer $WRIKE_ACCESS_TOKEN"
Create Task
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
curl "https://www.wrike.com/api/v4/tasks" -H "Authorization: Bearer $WRIKE_ACCESS_TOKEN"
Links
README.md
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install wrike?
Run openclaw add @mrgoodb/wrike in your terminal. This installs wrike into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/wrike. Review commits and README documentation before installing.
