Agent skill

wrike

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

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/wrike

Metadata

Additional technical details for this skill

clawdbot
{
    "emoji": "\ud83d\udcca",
    "requires": {
        "env": [
            "WRIKE_ACCESS_TOKEN"
        ]
    }
}

SKILL.md

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

Didn't find tool you were looking for?

Be as detailed as possible for better results