Asana Sync
SkillProductivityLook up and update Asana tasks using local developer-workflow config and direct Asana REST calls. Use when the user asks to sync an Asana task, move task status, add a PR link to Asana, or validate Asana configuration.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Asana Sync skill
What this skill tells your AI
The instructions your AI receives, as published by tetherto/qvac in .agents/skills/qv-asana-sync/SKILL.md and read by ahel’s review.
Manual Asana task lookup and lifecycle sync using direct REST helpers. No Asana MCP binary.
Default Behavior
If the user invokes this skill without a ticket, task GID, or specific action, do not only run config validation and exit. Show the operation menu below and ask what they want to do.
Ask for the missing input:
- Ticket ID or task GID
- Desired action:
find,status,move,comment, orcomplete - Target status for
move - Comment text for
comment
Prerequisites
- Local config at
~/.config/qvac-pr-skills/config.json ASANA_ACCESS_TOKENset in the current environment or available from the user's default shell startup files, unless config uses a differentasana.tokenEnv
Create the token:
- Open Asana developer console.
- Create a Personal Access Token with a clear description, e.g.
Local qvac-pr-skills. - Permission model: Asana Personal Access Tokens do not require choosing scopes in this setup. The token acts as the current Asana user and can access whatever that user can access.
- For status enrichment, the user must be able to read the configured workspace/project/tasks. For sync actions, the user must also be allowed to comment, move, and complete tasks in that project.
- No OAuth app or Asana MCP server is needed.
- Store it in your default shell startup file or export it locally. Coding agents may not inherit the app environment, so the helper falls back to asking your default shell for this variable.
export ASANA_ACCESS_TOKEN='<token>'
- Verify:
curl https://app.asana.com/api/1.0/users/me \
-H "Authorization: Bearer $ASANA_ACCESS_TOKEN"
Docs: Asana personal access token
Validate:
node .agents/skills/_lib/developer-workflow/config-init.mjs --validate --asana
Common Operations
Show these options when no action is provided:
status- validate local Asana config and token accessfind <ticket>- find an Asana task by tickettask <task-gid>- read a task by Asana GIDmove <ticket-or-task-gid> <status>- move task to configured statuscomment <ticket-or-task-gid> <text>- add task commentcomplete <ticket-or-task-gid>- mark task complete and move to completed
Available statuses: todo, inProgress, blocked, inReview, readyForQa, qaPassed, staging, storeReview, readyForProd, completed, closed.
Status / config validation:
node .agents/skills/_lib/developer-workflow/asana-cli.mjs status
Find a task by ticket:
node .agents/skills/_lib/developer-workflow/asana-cli.mjs find QVAC-12345
Read a task by Asana task GID:
node .agents/skills/_lib/developer-workflow/asana-cli.mjs task <task-gid>
Move a ticket/task to a configured status. If asana.statusOptions is configured, this uses Asana's custom_type_status_option. Otherwise it falls back to old section movement:
node .agents/skills/_lib/developer-workflow/asana-cli.mjs move QVAC-12345 inProgress
node .agents/skills/_lib/developer-workflow/asana-cli.mjs move QVAC-12345 inReview
node .agents/skills/_lib/developer-workflow/asana-cli.mjs move QVAC-12345 blocked
node .agents/skills/_lib/developer-workflow/asana-cli.mjs move QVAC-12345 completed
Add a comment, for example a PR URL:
node .agents/skills/_lib/developer-workflow/asana-cli.mjs comment QVAC-12345 "PR opened: https://github.com/owner/repo/pull/123"
Complete a task and move it to configured completed status:
node .agents/skills/_lib/developer-workflow/asana-cli.mjs complete QVAC-12345
Lifecycle Mapping
Use this mapping after user confirmation:
- Start working:
move <ticket> inProgress - PR opened:
move <ticket> inReview, thencomment <ticket> "PR opened: <url>" - Blocked:
move <ticket> blocked, then comment with blocker context - PR merged/done:
complete <ticket>
For mutations, show the exact planned command first and wait for explicit user confirmation.
Safety
- Never write tokens or Asana IDs into repo files.
- Do not mutate Asana without user confirmation unless the user already approved the lifecycle action in the current workflow.
- Use
/users/meto discover the current user; never copy another developer's user GID.
Signals
- GitHub stars
- 601
- Forks
- 111
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
qv-asana-sync- Source
- github.com/tetherto/qvac