Install
$ agentstack add skill-antstudiocz-ant-marketplace-asana-task-analyzer ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Asana Task Analyzer
Purpose
Analyze Asana tasks and provide crystal clear implementation guidance. If ANYTHING is unclear or requires assumptions, immediately flag it.
Step 1: Extract Task ID from URL
Asana URLs formats:
https://app.asana.com/0/{project_id}/{task_id}https://app.asana.com/0/{project_id}/{task_id}/fhttps://app.asana.com/0/0/{task_id}/f
Extract the task_id (the last numeric segment before /f).
Step 2: Gather All Task Information
ALWAYS fetch ALL of these using MCP tools:
# 1. Get task details (name, description, assignee, due date, custom fields)
mcp__asana__asana_get_task(
task_id: "{TASK_ID}",
opt_fields: "name,notes,html_notes,assignee,assignee.name,due_on,due_at,start_on,completed,projects,projects.name,custom_fields,custom_fields.name,custom_fields.display_value,tags,tags.name,parent,parent.name,dependencies,dependents"
)
# 2. Get all comments and activity (important context!)
mcp__asana__asana_get_stories_for_task(
task_id: "{TASK_ID}",
opt_fields: "text,html_text,created_by,created_by.name,created_at,type,resource_subtype"
)
# 3. Get attachments (may contain specs, mockups, designs)
mcp__asana__asana_get_attachments_for_object(
parent: "{TASK_ID}",
opt_fields: "name,download_url,view_url,resource_type"
)
Step 3: Analyze and Present
Structure your response as:
## 📋 Task: {task_name}
**Project:** {project_name}
**Due:** {due_date}
**Assignee:** {assignee}
**Status:** {completed ? "Done" : "Open"}
---
## 🎯 Co se po tobě chce
{Clear, actionable description of what needs to be implemented}
---
## 📝 Detailní požadavky
{Bullet points of specific requirements extracted from description and comments}
---
## 💬 Důležité z komentářů
{Key information from comments that affects implementation}
---
## 📎 Přílohy
{List attachments with links - these may contain mockups/specs!}
---
## ⚠️ NEJASNOSTI A DOMNĚNKY
{List ANYTHING that is:
- Not explicitly stated
- Could be interpreted multiple ways
- Requires clarification from task creator
- You had to assume
If nothing is unclear, state: "Zadání je jasné, žádné domněnky."}
---
## ✅ Akční kroky
1. {First concrete step}
2. {Second concrete step}
3. ...
CRITICAL Rules
- NEVER assume - If something isn't explicitly stated, LIST IT as unclear
- Read ALL comments - Often contain crucial clarifications
- Check attachments - May have mockups, designs, or specs
- Flag ambiguity - Better to ask than to implement wrong
- Be specific - "Implementovat funkci X" is bad, "Vytvořit endpoint /api/users který vrací..." is good
Example Unclear Items to Flag
- "Jak má vypadat UI?" (pokud není mockup)
- "Jaké validace jsou potřeba?"
- "Co se má stát při chybě?"
- "Jaké jsou edge cases?"
- "Je potřeba zpětná kompatibilita?"
- "Jaký je očekávaný výkon/zátěž?"
Notes
- Task ID is the numeric part at the end of the URL
- Use Czech for the output (as per examples above)
- Always check
html_notesfor formatted content - Comments often have more detail than the main description
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: antstudiocz
- Source: antstudiocz/ant-marketplace
- License: MIT
- Homepage: https://antstudio.cz
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.