sickn33/agentic-awesome-skills

asana-automation

Automate Asana tasks via Rube MCP (Composio): tasks, projects, sections, teams, workspaces. Always search tools first for current schemas.

First seen Feb 15, 2026

Installation

$ npx skills add sickn33/agentic-awesome-skills --skill asana-automation

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from sickn33/agentic-awesome-skills · top by installs.

npx skills add sickn33/agentic-awesome-skills

Browse all from sickn33/agentic-awesome-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 46.2K
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 6,468 B
  • docs SUMMARY.md 162 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 146 installs

SKILL.md

Asana Automation via Rube MCP

Automate Asana operations through Composio's Asana toolkit via Rube MCP.

Prerequisites

  • Rube MCP must be connected (RUBESEARCHTOOLS available)
  • Active Asana connection via RUBEMANAGECONNECTIONS with toolkit asana
  • Always call RUBESEARCHTOOLS 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 RUBESEARCHTOOLS responds
  2. Call RUBEMANAGECONNECTIONS with toolkit asana
  3. If connection is not ACTIVE, follow the returned auth link to complete Asana OAuth
  4. Confirm connection status shows ACTIVE before running any workflows

Core Workflows

1. Manage Tasks

When to use: User wants to create, search, list, or organize tasks

Tool sequence:

  1. ASANAGETMULTIPLE_WORKSPACES - Get workspace ID [Prerequisite]
  2. ASANASEARCHTASKSINWORKSPACE - Search tasks [Optional]
  3. ASANAGETTASKSFROMA_PROJECT - List project tasks [Optional]
  4. ASANACREATEA_TASK - Create a new task [Optional]
  5. ASANAGETA_TASK - Get task details [Optional]
  6. ASANACREATESUBTASK - Create a subtask [Optional]
  7. ASANAGETTASK_SUBTASKS - List subtasks [Optional]

Key parameters:

  • workspace: Workspace GID (required for search/creation)
  • projects: Array of project GIDs to add task to
  • name: Task name
  • notes: Task description
  • assignee: Assignee (user GID or email)
  • due_on: Due date (YYYY-MM-DD)

Pitfalls:

  • Workspace GID is required for most operations; get it first
  • Task GIDs are returned as strings, not integers
  • Search is workspace-scoped, not project-scoped

2. Manage Projects and Sections

When to use: User wants to create projects, manage sections, or organize tasks

Tool sequence:

  1. ASANAGETWORKSPACE_PROJECTS - List workspace projects [Optional]
  2. ASANAGETA_PROJECT - Get project details [Optional]
  3. ASANACREATEA_PROJECT - Create a new project [Optional]
  4. ASANAGETSECTIONSINPROJECT - List sections [Optional]
  5. ASANACREATESECTIONINPROJECT - Create a new section [Optional]
  6. ASANAADDTASKTOSECTION - Move task to section [Optional]
  7. ASANAGETTASKSFROMA_SECTION - List tasks in section [Optional]

Key parameters:

  • project_gid: Project GID
  • name: Project or section name
  • workspace: Workspace GID for creation
  • task: Task GID for section assignment
  • section: Section GID

Pitfalls:

  • Projects belong to workspaces; workspace GID is needed for creation
  • Sections are ordered within a project
  • DUPLICATE_PROJECT creates a copy with optional task inclusion

3. Manage Teams and Users

When to use: User wants to list teams, team members, or workspace users

Tool sequence:

  1. ASANAGETTEAMSINWORKSPACE - List workspace teams [Optional]
  2. ASANAGETUSERSFORTEAM - List team members [Optional]
  3. ASANAGETUSERSFORWORKSPACE - List all workspace users [Optional]
  4. ASANAGETCURRENT_USER - Get authenticated user [Optional]
  5. ASANAGETMULTIPLE_USERS - Get multiple user details [Optional]

Key parameters:

  • workspace_gid: Workspace GID
  • team_gid: Team GID

Pitfalls:

  • Users are workspace-scoped
  • Team membership requires the team GID

4. Parallel Operations

When to use: User needs to perform bulk operations efficiently

Tool sequence:

  1. ASANASUBMITPARALLEL_REQUESTS - Execute multiple API calls in parallel [Required]

Key parameters:

  • actions: Array of action objects with method, path, and data

Pitfalls:

  • Each action must be a valid Asana API call
  • Failed individual requests do not roll back successful ones

Common Patterns

ID Resolution

Workspace name -> GID:

1. Call ASANA_GET_MULTIPLE_WORKSPACES
2. Find workspace by name
3. Extract gid field

Project name -> GID:

1. Call ASANA_GET_WORKSPACE_PROJECTS with workspace GID
2. Find project by name
3. Extract gid field

Pagination

  • Asana uses cursor-based pagination with offset parameter
  • Check for next_page in response
  • Pass offset from next_page.offset for next request

Known Pitfalls

GID Format:

  • All Asana IDs are strings (GIDs), not integers
  • GIDs are globally unique identifiers

Workspace Scoping:

  • Most operations require a workspace context
  • Tasks, projects, and users are workspace-scoped

Quick Reference

Task Tool Slug Key Params
List workspaces ASANAGETMULTIPLE_WORKSPACES (none)
Search tasks ASANASEARCHTASKSINWORKSPACE workspace, text
Create task ASANACREATEA_TASK workspace, name, projects
Get task ASANAGETA_TASK task_gid
Create subtask ASANACREATESUBTASK parent, name
List subtasks ASANAGETTASK_SUBTASKS task_gid
Project tasks ASANAGETTASKSFROMA_PROJECT project_gid
List projects ASANAGETWORKSPACE_PROJECTS workspace
Create project ASANACREATEA_PROJECT workspace, name
Get project ASANAGETA_PROJECT project_gid
Duplicate project ASANADUPLICATEPROJECT project_gid
List sections ASANAGETSECTIONSINPROJECT project_gid
Create section ASANACREATESECTIONINPROJECT project_gid, name
Add to section ASANAADDTASKTOSECTION section, task
Section tasks ASANAGETTASKSFROMA_SECTION section_gid
List teams ASANAGETTEAMSINWORKSPACE workspace_gid
Team members ASANAGETUSERSFORTEAM team_gid
Workspace users ASANAGETUSERSFORWORKSPACE workspace_gid
Current user ASANAGETCURRENT_USER (none)
Parallel requests ASANASUBMITPARALLEL_REQUESTS actions

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.