asana-automation

asana-automation is a skill for Claude Code from Ghosteken/agent-harness. It costs 37 tokens per session (1,636 once invoked), scanned A, a copy of asana-automation, MIT.

An automation guide for managing Asana workspaces, teams, projects, sections, and tasks through connected tools.

In plain words
What is it for?
Use it to search, list, create, and organize Asana tasks and project work.
Why use it?
It reduces repetitive project-management work and checks the current tool setup before performing an Asana operation.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the agent-harness plugin — 173 skills, 11 commands, 12 agents shipped together

Good fit Use it to search, list, create, and organize Asana tasks and project work.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ghosteken/agent-harness/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 Ghosteken/agent-harness --skill asana-automation
Clone the repo
git clone --depth 1 https://github.com/Ghosteken/agent-harness

Made for: Claude Code.

Or install agent-harness, the plugin that ships this one along with the rest of its 173 skills, 11 commands, 12 agents.

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/ghosteken/agent-harness/asana-automation/github.svg)](https://agentmods.dev/skills/ghosteken/agent-harness/asana-automation)
Your own site
<a href="https://agentmods.dev/skills/ghosteken/agent-harness/asana-automation"><img src="https://agentmods.dev/badge/skills/ghosteken/agent-harness/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/ghosteken/agent-harness/asana-automation"><img src="https://agentmods.dev/badge/skills/ghosteken/agent-harness/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,636 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 98% 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.01636
Opus 5 $0.00018 $0.00818
Sonnet 5 $0.00007 $0.00327
Haiku 4.5 $0.00004 $0.00164

Measured 7d ago against content hash 77f1878623ab, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, 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 7d 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

98% identical to asana-automation — 2 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.

archive/skills-community/asana-automation/SKILL.md · 181 lines

How it starts

The opening of the file, as written. The whole thing — 181 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 · 181 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. 7d ago First seen · 181 lines · 37 tokens per session scan A 77f1878623ab

Subscribe to this mod's changes

asana-automation is a skill published in the GitHub repository Ghosteken/agent-harness (2 stars, last pushed 6d ago), licensed MIT. It adds 37 tokens to every session and 1,636 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 98% identical to asana-automation, differing in 2 lines, and is treated as a copy.