asana-automation

asana-automation is a skill for Claude Code, Codex from marysatasselshaped667/skills-collection-1. It costs 37 tokens per session (1,576 once invoked), scanned A, a copy of asana-automation, MIT.

A set of workflows for managing Asana, a project-management tool, through connected automation tools.

In plain words
What is it for?
Use it to manage tasks, projects, sections, teams, and workspaces, after connecting an Asana account.
Why use it?
It reduces manual work when finding, creating, organizing, and inspecting tasks across Asana workspaces and projects.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to manage tasks, projects, sections, teams, and workspaces, after connecting an Asana account.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/marysatasselshaped667/skills-collection-1/asana-automation
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add marysatasselshaped667/skills-collection-1 --skill asana-automation
Clone the repo
git clone --depth 1 https://github.com/marysatasselshaped667/skills-collection-1

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for asana-automation

README.md
[![agentmods](https://agentmods.dev/badge/skills/marysatasselshaped667/skills-collection-1/asana-automation/github.svg)](https://agentmods.dev/skills/marysatasselshaped667/skills-collection-1/asana-automation)
Your own site
<a href="https://agentmods.dev/skills/marysatasselshaped667/skills-collection-1/asana-automation"><img src="https://agentmods.dev/badge/skills/marysatasselshaped667/skills-collection-1/asana-automation/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for asana-automation

Your own site · 80×15
<a href="https://agentmods.dev/skills/marysatasselshaped667/skills-collection-1/asana-automation"><img src="https://agentmods.dev/badge/skills/marysatasselshaped667/skills-collection-1/asana-automation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,576 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 97% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00037 $0.01576
Opus 5 $0.00018 $0.00788
Sonnet 5 $0.00007 $0.00315
Haiku 4.5 $0.00004 $0.00158

Measured 8d ago against content hash 2cf3896a174c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

asana-automation scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

97% identical to asana-automation — 7 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

SKILLS/asana-automation/SKILL.md · 176 lines

How it starts

The opening of the file, as written. The whole thing — 176 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Asana Automation via Rube MCP

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

Prerequisites

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active Asana connection via RUBE_MANAGE_CONNECTIONS with toolkit asana
  • 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 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. ASANA_GET_MULTIPLE_WORKSPACES - Get workspace ID [Prerequisite]
  2. ASANA_SEARCH_TASKS_IN_WORKSPACE - Search tasks [Optional]
  3. ASANA_GET_TASKS_FROM_A_PROJECT - List project tasks [Optional]
  4. ASANA_CREATE_A_TASK - Create a new task [Optional]
  5. ASANA_GET_A_TASK - Get task details [Optional]
  6. ASANA_CREATE_SUBTASK - Create a subtask [Optional]
  7. ASANA_GET_TASK_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. ASANA_GET_WORKSPACE_PROJECTS - List workspace projects [Optional]
  2. ASANA_GET_A_PROJECT - Get project details [Optional]
  3. ASANA_CREATE_A_PROJECT - Create a new project [Optional]
  4. ASANA_GET_SECTIONS_IN_PROJECT - List sections [Optional]
  5. ASANA_CREATE_SECTION_IN_PROJECT - Create a new section [Optional]
  6. ASANA_ADD_TASK_TO_SECTION - Move task to section [Optional]
  7. ASANA_GET_TASKS_FROM_A_SECTION - List tasks in section [Optional]

Read the full file on GitHub · 176 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 176 lines · 37 tokens per session scan A 2cf3896a174c

Subscribe to this mod's changes

asana-automation is a skill published in the GitHub repository marysatasselshaped667/skills-collection-1 (1 stars, last pushed yesterday), licensed MIT. It adds 37 tokens to every session and 1,576 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 97% identical to asana-automation, differing in 7 lines, and is treated as a copy.

Related

Other skills, from other repositories

pr-review-expert

Professional Pr Review Expert skill. Orchestrate technical collaboration, design reviews, sprint planning, and system diagnostics.

AtulPurohit/Antigravity-Awesome-Skills · 27 tokens

issue

You are a senior engineering lead and product architect. Given an observation, bug, or gap, conduct a thorough multi-dimensional investigation, find the root cause, plan the resolution, and create a detailed actionable GitHub issue.

rajitsaha/100xprism · 46 tokens

chief-customer-officer-advisor

Chief Customer Officer advisory for startups: retention decomposition (gross retention vs NRR honesty, churn root-cause taxonomy), customer segmentation strategy (differential investment across tiers + ICP fit scoring), CS team coverage model (pooled vs named CSM thresholds + ratio math), and CS team org evolution (CS…

sinhoneyy/master-skills · 109 tokens

agentflow

Orchestrate autonomous AI development pipelines through your Kanban board (Asana, GitHub Projects, Linear). Manages multi-worker Claude Code dispatch, deterministic quality gates, adversarial review, per-task cost tracking, and crash-proof pipeline execution.

sinhoneyy/master-skills · 52 tokens

chief-of-staff

C-suite orchestration layer. Routes founder questions to the right advisor role(s), triggers multi-role board meetings for complex decisions, synthesizes outputs, and tracks decisions. Every C-suite interaction starts here. Loads company context automatically. Use when a founder question needs routing to the right…

sinhoneyy/master-skills · 88 tokens

event-staffing-ordering

Order W-2 compliant temporary event staff for conventions, trade shows, festivals, concerts, sporting events, and brand activations across 300+ US and Canadian markets via TempGuru. Covers city coverage, role pricing, availability, state compliance lookups via MCP, and request submission.

sinhoneyy/master-skills · 64 tokens