skills$openclaw/wrike
mrgoodb4.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

namewrike
descriptionManage projects, tasks, and workflows via Wrike API. Create tasks, update statuses, and track work. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/wrike
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/wrike
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains wrike in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
263 B
SKILL.md
836 B
SKILL.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"}'
curl "https://www.wrike.com/api/v4/tasks" -H "Authorization: Bearer $WRIKE_ACCESS_TOKEN"
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.