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.
npx skills add oomol-lab/skills --skill oo-asanagit clone --depth 1 https://github.com/oomol-lab/skillsWrote 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.
[](https://agentmods.dev/skills/oomol-lab/skills/oo-asana)<a href="https://agentmods.dev/skills/oomol-lab/skills/oo-asana"><img src="https://agentmods.dev/badge/skills/oomol-lab/skills/oo-asana/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.
<a href="https://agentmods.dev/skills/oomol-lab/skills/oo-asana"><img src="https://agentmods.dev/badge/skills/oomol-lab/skills/oo-asana.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00046 | $0.02776 |
| Opus 5 | $0.00023 | $0.01388 |
| Sonnet 5 | $0.00009 | $0.00555 |
| Haiku 4.5 | $0.00005 | $0.00278 |
Grade C, and why
oo-asana scanned grade C with 2 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.
Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
curl -fsSL https://cli.oomol.com/install.sh | bash # macOS / Linux Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -fsSL https://cli.oomol.com/install.sh | bash # macOS / Linux How it starts
The opening of the file, as written. The whole thing — 179 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Asana
Operate Asana through your OOMOL-connected account. This skill calls the asana connector with the oo CLI; OOMOL injects credentials server-side, so you never handle raw tokens.
Running an action
Assume the user has already installed the oo CLI, signed in, and connected Asana. Do not run oo auth login or open the connection URL proactively — just run the action. Fall back to First-time setup only when a command actually fails with an auth or connection error.
1. Inspect the contract to get the authoritative input/output schema before building a payload:
oo connector schema "asana" --action "<action_name>"
2. Run the action with a JSON payload that matches the input schema:
oo connector run "asana" --action "<action_name>" --data '<json>' --json
--datatakes a JSON object string or@path/to/file.json; omit it to send{}.- The response is
{ "data": ..., "meta": { "executionId": "..." } }; the execution id lives undermeta.executionId.
Each action is listed below with a one-line description; actions that change state carry a [write] or [destructive] tag. Before constructing --data, fetch the action's live schema with oo connector schema to get its authoritative input fields.
Available actions
add_project_custom_field— Add a custom field setting to an Asana project. [write]add_project_followers— Add users as followers of an Asana project. [write]add_project_members— Add users as members of an Asana project. [write]add_section_task— Move a task into a section, optionally at a specific position. [write]add_task_dependencies— Add dependencies to an Asana task. [write]add_task_dependents— Add dependent tasks to an Asana task. [write]add_task_followers— Add followers to an Asana task. [write]add_task_project— Add an Asana task to a project with optional section placement. [write]add_task_tag— Add a tag to an Asana task. [write]add_team_user— Add an existing organization user to an Asana team. [write]add_workspace_user— Add or invite a user to an Asana workspace or organization. [write]create_attachment— Attach a downloaded public file or external resource URL to an Asana object. [write]create_custom_field— Create an Asana custom field in a workspace. [write]create_custom_field_enum_option— Create an option for an Asana enum or multi-enum custom field. [write]create_project— Create a project at exactly one workspace or team location. [write]create_project_section— Create a section in an Asana project, optionally at a specific position. [write]create_subtask— Create a direct subtask under an Asana task. [write]create_tag— Create a tag in an Asana workspace through the generic tag endpoint. [write]create_task— Create an Asana task in a project, workspace, or parent task. [write]create_task_story— Create a comment story on an Asana task. [write]create_team— Create an Asana team within an organization. [write]create_team_project— Create a project in an Asana team. [write]create_workspace_project— Create a project in an Asana workspace or organization. [write]create_workspace_tag— Create a tag in an Asana workspace or organization. [write]delete_attachment— Delete an Asana attachment. [destructive]delete_custom_field— Delete an Asana custom field. [destructive]delete_project— Delete an Asana project. [destructive]delete_section— Delete an empty Asana project section. [destructive]delete_story— Delete an Asana story or task comment created by the authenticated user. [destructive]delete_tag— Delete an Asana tag. [destructive]delete_task— Delete an Asana task. [destructive]duplicate_project— Start an asynchronous job to duplicate an Asana project. [write]duplicate_task— Duplicate an Asana task and selected associations. [write]get_attachment— Get an Asana attachment by gid.get_custom_field— Get an Asana custom field by gid.get_project— Get an Asana project by gid.get_project_task_counts— Get all documented task and milestone counts for an Asana project.get_section— Get an Asana project section by gid.get_story— Get an Asana story, including a task comment story, by gid.get_tag— Get an Asana tag by gid.get_task— Get a single Asana task by gid.get_task_by_custom_id— Get an Asana task by workspace and custom ID.get_team— Get an Asana team by gid.get_user— Get an Asana user by gid, email, or the special identifier "me".get_workspace— Get an Asana workspace or organization by gid.get_workspace_events— Read the Enterprise workspace event stream from an optional sync token and return Asana's next sync state.get_workspace_user— Get a user record in the context of an Asana workspace or organization.insert_custom_field_enum_option— Reorder an option in an Asana enum or multi-enum custom field. [write]insert_project_section— Move a section before or after another section in the same project. [write]list_attachments— List attachments on an Asana task, project, or project brief.list_project_custom_field_settings— List the custom field settings on an Asana project.list_project_sections— List sections in an Asana project.list_project_tasks— List tasks within an Asana project.list_projects— List projects filtered by exactly one workspace or team.list_section_tasks— List tasks in an Asana section.list_subtasks— List direct subtasks of an Asana task.list_tag_tasks— List tasks carrying an Asana tag.list_tags— List tags in an Asana workspace through the generic tag endpoint.list_task_dependencies— List tasks that an Asana task depends on.list_task_dependents— List tasks that depend on an Asana task.list_task_projects— List projects associated with a task.list_task_stories— List each story and comment recorded on an Asana task.list_task_tags— List the Asana tags attached to a task.list_tasks— List tasks matching Asana's general task filters.list_team_custom_field_settings— List the custom field settings on an Asana team. Asana returns this collection without pagination.list_team_projects— List projects shared with a team.list_team_users— List users who belong to an Asana team.list_user_favorites— List a user's favorite Asana resources within a workspace.list_user_task_list_tasks— List tasks in an Asana user task list.list_user_teams— List the teams to which an Asana user belongs in an organization.list_users— List users visible to the connected account, optionally filtered by workspace or team.list_workspace_custom_fields— List the custom fields in an Asana workspace.list_workspace_projects— List projects in an Asana workspace or organization.list_workspace_tags— List tags in an Asana workspace or organization.list_workspace_teams— List teams in an Asana organization workspace.list_workspace_users— List users in an Asana workspace or organization.list_workspaces— List the Asana workspaces and organizations visible to the connected account.remove_project_custom_field— Remove a custom field setting from an Asana project. [destructive]remove_project_followers— Remove users from an Asana project's followers. [destructive]remove_project_members— Remove users from an Asana project. [destructive]remove_task_dependencies— Remove dependencies from an Asana task. [destructive]remove_task_dependents— Remove dependent tasks from an Asana task. [destructive]remove_task_followers— Remove followers from an Asana task. [destructive]remove_task_project— Remove an Asana task from a project. [destructive]remove_task_tag— Remove a tag from an Asana task. [destructive]remove_team_user— Remove a user from an Asana team. [destructive]remove_workspace_user— Remove a user from an Asana workspace or organization. [destructive]search_workspace_projects— Search projects in a workspace using Asana's documented project filters. Asana does not paginate search results; use limit to cap the page size.search_workspace_tasks— Search tasks in an Asana workspace using advanced filters.set_task_parent— Set, change, or remove an Asana task's parent. [write]update_custom_field— Update an Asana custom field. [write]update_custom_field_enum_option— Update an Asana enum option. [write]update_project— Update one or more writable fields on an Asana project. [write]update_section— Rename an Asana project section. [write]update_story— Update the text, HTML, or pinned state of an Asana comment story. [write]update_tag— Update one or more mutable fields on an Asana tag. [write]update_task— Update an existing Asana task. [write]update_team— Update an existing Asana team. [write]update_user— Update an Asana user's display name or custom field values. [write]update_workspace— Rename an existing Asana workspace or organization. [write]update_workspace_user— Update an Asana user in the context of a workspace or organization. [write]
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.
- 8d ago First seen · 179 lines · 46 tokens per session scan C de4b14018bce
oo-asana is a skill published in the GitHub repository oomol-lab/skills (2 stars, last pushed yesterday), licensed MIT. It adds 46 tokens to every session and 2,776 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
collaborating
Hackathon-native multiplayer collaboration mode -- brain-dump together, claim tasks across machines, flag decisions async. Drives the subcommands of /forge:collaborate.
workflow-run
Use when you need to execute a DAG-structured workflow template from SKILLS/ORCHESTRATION FRAMEWORK/workflow-templates/.
stakeholder-alignment
Build alignment artifacts — responsibility matrices, decision rights, and communication plans. Use when unclear ownership stalls decisions. For persuading in the moment, use design-negotiation (designer-toolkit).
todo-tracker
Persistent TODO scratch pad for tracking tasks across sessions. Use when the user asks to add, list, complete, remove, or summarize tasks in a portable workspace Markdown file. Uses stable task IDs and exact matching; heartbeat reporting is opt-in and count-only.
autonomous-run
Prepare, start, inspect, resume, or stop a finite local overnight coding run after a human has accepted a Wayfinder terminal spec; coordinates a declared Claude/Codex maker and independent checker without pushing, merging, or writing to external systems.
hr-talent
HR and talent management expertise for talent acquisition, performance management, compensation strategy, organizational design, culture building, succession planning, and D&I programs. Use when hiring, managing performance, designing organizations, or building culture.