Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

wrike-automation沃克自动化

Agent Skill

wrike-automation 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,934

周安装

79

GitHub Stars

35,676

下载量

626
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:wrike-automation(沃克自动化)
来源仓库:https://github.com/sickn33/antigravity-awesome-skills
仓库路径:skills/wrike-automation
安装命令:
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill wrike-automation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill wrike-automation

简介

该技能提供 Wrike 自动化相关的信息检索与筛选功能。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中基于关键词的任务匹配。
  • 支持快速定位符合场景的候选结果。wrike-automation 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过 GitHub 仓库安装,注意权限与维护状态。
  • 建议结合原始文档了解具体用途与调用方式。

SKILL.md

Wrike Automation via Rube MCP

Automate Wrike project management operations through Composio's Wrike toolkit via Rube MCP.

Prerequisites

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active Wrike connection via RUBE_MANAGE_CONNECTIONS with toolkit wrike
  • Always call RUBE_SEARCH_TOOLS first to get current tool schemas

Setup

Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.

  1. Verify Rube MCP is available by confirming RUBE_SEARCH_TOOLS responds
  2. Call RUBE_MANAGE_CONNECTIONS with toolkit wrike
  3. If connection is not ACTIVE, follow the returned auth link to complete Wrike OAuth
  4. Confirm connection status shows ACTIVE before running any workflows

Core Workflows

1. Create and Manage Tasks

When to use: User wants to create, assign, or update tasks in Wrike

Tool sequence:

  1. WRIKE_GET_FOLDERS - Find the target folder/project [Prerequisite]
  2. WRIKE_GET_ALL_CUSTOM_FIELDS - Get custom field IDs if needed [Optional]
  3. WRIKE_CREATE_TASK - Create a new task [Required]
  4. WRIKE_MODIFY_TASK - Update task properties [Optional]

Key parameters:

  • folderId: Parent folder ID where the task will be created
  • title: Task title
  • description: Task description (supports HTML)
  • responsibles: Array of user IDs to assign
  • status: 'Active', 'Completed', 'Deferred', 'Cancelled'
  • importance: 'High', 'Normal', 'Low'
  • customFields: Array of {id, value} objects
  • dates: Object with type, start, due, duration

Pitfalls:

  • folderId is required; tasks must belong to a folder
  • responsibles requires Wrike user IDs, not emails or names
  • Custom field IDs must be obtained from GET_ALL_CUSTOM_FIELDS
  • priorityBefore and priorityAfter are mutually exclusive
  • Status field may not be available on Team plan
  • dates.start and dates.due use 'YYYY-MM-DD' format

2. Manage Folders and Projects

When to use: User wants to create, modify, or organize folders and projects

Tool sequence:

  1. WRIKE_GET_FOLDERS - List existing folders [Required]
  2. WRIKE_CREATE_FOLDER - Create a new folder/project [Optional]
  3. WRIKE_MODIFY_FOLDER - Update folder properties [Optional]
  4. WRIKE_LIST_SUBFOLDERS_BY_FOLDER_ID - List subfolders [Optional]
  5. WRIKE_DELETE_FOLDER - Delete a folder permanently [Optional]

Key parameters:

  • folderId: Parent folder ID for creation; target folder ID for modification
  • title: Folder name
  • description: Folder description
  • customItemTypeId: Set to create as a project instead of a folder
  • shareds: Array of user IDs or emails to share with
  • project: Filter for projects (true) or folders (false) in GET_FOLDERS

Pitfalls:

  • DELETE_FOLDER is permanent and removes ALL contents (tasks, subfolders, documents)
  • Cannot modify rootFolderId or recycleBinId as parents
  • Folder creation auto-shares with the creator
  • customItemTypeId converts a folder into a project
  • GET_FOLDERS with descendants=true returns folder tree (may be large)

3. Retrieve and Track Tasks

When to use: User wants to find tasks, check status, or monitor progress

Tool sequence:

  1. WRIKE_FETCH_ALL_TASKS - List tasks with optional filters [Required]
  2. WRIKE_GET_TASK_BY_ID - Get detailed info for a specific task [Optional]

Key parameters:

  • status: Filter by task status ('Active', 'Completed', etc.)
  • dueDate: Filter by due date range (start/end/equal)
  • fields: Additional response fields to include
  • page_size: Results per page (1-100)
  • taskId: Specific task ID for detailed retrieval
  • resolve_user_names: Auto-resolve user IDs to names (default true)

Pitfalls:

  • FETCH_ALL_TASKS paginates at max 100 items per page
  • dueDate filter supports 'equal', 'start', and 'end' fields
  • Date format: 'yyyy-MM-dd' or 'yyyy-MM-ddTHH:mm:ss'
  • GET_TASK_BY_ID returns read-only detailed information
  • customFields are returned by default for single task queries

4. Launch Task Blueprints

When to use: User wants to create tasks from predefined templates

Tool sequence:

  1. WRIKE_LIST_TASK_BLUEPRINTS - List available blueprints [Prerequisite]
  2. WRIKE_LIST_SPACE_TASK_BLUEPRINTS - List blueprints in a specific space [Alternative]
  3. WRIKE_LAUNCH_TASK_BLUEPRINT_ASYNC - Launch a blueprint [Required]

Key parameters:

  • task_blueprint_id: ID of the blueprint to launch
  • title: Title for the root task
  • parent_id: Parent folder/project ID (OR super_task_id)
  • super_task_id: Parent task ID (OR parent_id)
  • reschedule_date: Target date for task rescheduling
  • reschedule_mode: 'RescheduleStartDate' or 'RescheduleFinishDate'
  • entry_limit: Max tasks to copy (1-250)

Pitfalls:

  • Either parent_id or super_task_id is required, not both
  • Blueprint launch is asynchronous; tasks may take time to appear
  • reschedule_date requires reschedule_mode to be set
  • entry_limit caps at 250 tasks/folders per blueprint launch
  • copy_descriptions defaults to false; set true to include task descriptions

5. Manage Workspace and Members

When to use: User wants to manage spaces, members, or invitations

Tool sequence:

  1. WRIKE_GET_SPACE - Get space details [Optional]
  2. WRIKE_GET_CONTACTS - List workspace contacts/members [Optional]
  3. WRIKE_CREATE_INVITATION - Invite a user to the workspace [Optional]
  4. WRIKE_DELETE_SPACE - Delete a space permanently [Optional]

Key parameters:

  • spaceId: Space identifier
  • email: Email for invitation
  • role: User role ('Admin', 'Regular User', 'External User')
  • firstName/lastName: Invitee name

Pitfalls:

  • DELETE_SPACE is irreversible and removes all space contents
  • userTypeId and role/external are mutually exclusive in invitations
  • Custom email subjects/messages require a paid Wrike plan
  • GET_CONTACTS returns workspace-level contacts, not task-specific assignments

Common Patterns

Folder ID Resolution

1. Call WRIKE_GET_FOLDERS (optionally with project=true for projects only)
2. Navigate folder tree to find target
3. Extract folder id (e.g., 'IEAGKVLFK4IHGQOI')
4. Use as folderId in task/folder creation

Custom Field Setup

1. Call WRIKE_GET_ALL_CUSTOM_FIELDS to get definitions
2. Find field by name, extract id and type
3. Format value according to type (text, dropdown, number, date)
4. Include as {id: 'FIELD_ID', value: 'VALUE'} in customFields array

Task Assignment

1. Call WRIKE_GET_CONTACTS to find user IDs
2. Use user IDs in responsibles array when creating tasks
3. Or use addResponsibles/removeResponsibles when modifying tasks

Pagination

  • FETCH_ALL_TASKS: Use page_size (max 100) and check for more results
  • GET_FOLDERS: Use nextPageToken when descendants=false and pageSize is set
  • LIST_TASK_BLUEPRINTS: Use next_page_token and page_size (default 100)

Known Pitfalls

ID Formats:

  • Wrike IDs are opaque alphanumeric strings (e.g., 'IEAGTXR7I4IHGABC')
  • Task IDs, folder IDs, space IDs, and user IDs all use this format
  • Custom field IDs follow the same pattern
  • Never guess IDs; always resolve from list/search operations

Permissions:

  • Operations depend on user role and sharing settings
  • Shared folders/tasks are visible only to shared users
  • Admin operations require appropriate role
  • Some features (custom statuses, billing types) are plan-dependent

Deletion Safety:

  • DELETE_FOLDER removes ALL contents permanently
  • DELETE_SPACE removes the entire space and contents
  • Consider using MODIFY_FOLDER to move to recycle bin instead
  • Restore from recycle bin is possible via MODIFY_FOLDER with restore=true

Date Handling:

  • Dates use 'yyyy-MM-dd' format
  • DateTime uses 'yyyy-MM-ddTHH:mm:ssZ' or with timezone offset
  • Task dates include type ('Planned', 'Actual'), start, due, duration
  • Duration is in minutes

Quick Reference

TaskTool SlugKey Params
Create taskWRIKE_CREATE_TASKfolderId, title, responsibles, status
Modify taskWRIKE_MODIFY_TASKtaskId, title, status, addResponsibles
Get task by IDWRIKE_GET_TASK_BY_IDtaskId
Fetch all tasksWRIKE_FETCH_ALL_TASKSstatus, dueDate, page_size
Get foldersWRIKE_GET_FOLDERSproject, descendants
Create folderWRIKE_CREATE_FOLDERfolderId, title
Modify folderWRIKE_MODIFY_FOLDERfolderId, title, addShareds
Delete folderWRIKE_DELETE_FOLDERfolderId
List subfoldersWRIKE_LIST_SUBFOLDERS_BY_FOLDER_IDfolderId
Get custom fieldsWRIKE_GET_ALL_CUSTOM_FIELDS(none)
List blueprintsWRIKE_LIST_TASK_BLUEPRINTSlimit, page_size
Launch blueprintWRIKE_LAUNCH_TASK_BLUEPRINT_ASYNCtask_blueprint_id, title, parent_id
Get spaceWRIKE_GET_SPACEspaceId
Delete spaceWRIKE_DELETE_SPACEspaceId
Get contactsWRIKE_GET_CONTACTS(none)
Invite userWRIKE_CREATE_INVITATIONemail, role

When to Use

This skill is applicable to execute the workflow or actions described in the overview.

Limitations

  • Use this skill only when the task clearly matches the scope described above.
  • Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
  • Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.68%
按下载量换算223

Claude

30.85%
按下载量换算193

Cursor

17.26%
按下载量换算108

Gemini CLI

8.94%
按下载量换算56

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills