[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-asana-api":3,"mdc-dccgl2-key":33,"related-repo-anthropic-asana-api":3459,"related-org-anthropic-asana-api":3568},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":31,"mdContent":32},"asana-api","manage Asana tasks and projects","Read and manage Asana tasks, projects, sections, comments, and workspaces. Use this whenever the user wants to list or search tasks, create or update a task, complete a task, comment on a task, move tasks between projects or sections, look up a project or workspace, or ask \"what's on my Asana list\" — even if they don't say \"API\". Also use it for any app.asana.com URL or an Asana task\u002Fproject gid. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"anthropic","Anthropic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fanthropic.png","anthropics",[13,17,20],{"name":14,"slug":15,"type":16},"Productivity","productivity","tag",{"name":18,"slug":19,"type":16},"Project Management","project-management",{"name":21,"slug":22,"type":16},"Task Management","task-management",30,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-tag-plugins","2026-06-24T07:44:51.70496",null,12,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":26},[],"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-tag-plugins\u002Ftree\u002FHEAD\u002Fasana\u002Fskills\u002Fasana-api","---\nname: asana-api\ndescription: Read and manage Asana tasks, projects, sections, comments, and workspaces. Use this whenever the user wants to list or search tasks, create or update a task, complete a task, comment on a task, move tasks between projects or sections, look up a project or workspace, or ask \"what's on my Asana list\" — even if they don't say \"API\". Also use it for any app.asana.com URL or an Asana task\u002Fproject gid. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.\n---\n\nAsana's REST API is rooted at `https:\u002F\u002Fapp.asana.com\u002Fapi\u002F1.0`. Three things are true of every call:\nevery object is identified by a string **`gid`** (global id), every response wraps its payload in a\ntop-level `data` key, and write bodies wrap their fields in `data` too. Most reads return a\n**compact** record (`gid`, `name`, `resource_type`) — ask for more with `opt_fields`.\n\nResources nest predictably: a **workspace** (an *organization* if it has one) holds **projects** and\n**users**; a **project** holds **sections** and **tasks**; a **task** carries comments and activity\nas **stories**, plus subtasks, tags, attachments, and custom fields.\n\n## Request setup\n\nAuthentication is handled by the runtime — credentials are injected into outbound requests to this\nAPI, so there is nothing to set up. Do not try to create, mint, refresh, or validate tokens or keys.\nCredential variables exist only to keep requests well-formed; if one is unset, set it to any\nplaceholder value. A persistent `401`\u002F`403` means the credential isn't configured for this workspace\n— report that instead of debugging auth.\n\nRequests use a bearer token. The base URL is fixed (not per-instance), but workspace\u002Fproject\u002Ftask\ngids are real and part of the path:\n\n```bash\nexport ASANA_TOKEN=\"placeholder\"                 # injected by the runtime; any value works\nexport ASANA_BASE=\"https:\u002F\u002Fapp.asana.com\u002Fapi\u002F1.0\"\n```\n\nDefine a helper once per session:\n\n```bash\nasana() { curl -sS -H \"Authorization: Bearer ${ASANA_TOKEN}\" \\\n  -H \"Accept: application\u002Fjson\" -H \"Content-Type: application\u002Fjson\" \"$@\"; }\n```\n\n**Sanity check** — confirm the token works and find your workspace gids:\n\n```bash\nasana \"${ASANA_BASE}\u002Fusers\u002Fme?opt_fields=name,email,workspaces.name\" \\\n  | jq '.data | {gid, name, email, workspaces: [.workspaces[]? | {gid, name}]}'\n# 200 with your user + workspaces → wired up. 401 → credential not configured; report it.\n```\n\n## Response conventions\n\nThree patterns repeat across every endpoint below — stated once so the recipes stay short:\n\n- **The `data` envelope.** Reads return `{\"data\": ...}` (object or array); writes send\n  `{\"data\": {...}}` and return the result under `data`. An error replaces `data` with `errors` (see\n  Error handling). Project `.data`, and check `.errors` when it's missing.\n- **`gid`, not name.** Everything is referenced by its string `gid` — resolve names to gids first\n  (workspaces, projects, users, tags; recipe 9).\n- **`opt_fields` for fields.** Compact records carry only `gid`, `name`, `resource_type`. Add a\n  comma-separated `opt_fields` to expand, with dot-notation for relations\n  (`assignee.name`, `memberships.section.name`); `gid` is always returned. On POST\u002FPUT, nest options\n  in an `options` object beside `data`.\n\n## Core operations\n\n### 1. List tasks (`scripts\u002Fasana_tasks.sh`)\n\nRun through the bundled script (path is relative to this skill's directory): it GETs `\u002Ftasks`\nfiltered by project, tag, section, or assignee+workspace, sends an `opt_fields` list, follows\n`next_page.offset` through every page, and emits TSV or JSONL.\n\n```bash\nscripts\u002Fasana_tasks.sh --project 1201234567890123 --limit 200\nscripts\u002Fasana_tasks.sh --assignee me --workspace 1209876543210987 --completed-since now\n```\n\n- Exactly one selector is required: `--project GID`, `--tag GID`, `--section GID`, or\n  `--assignee GID --workspace GID` (assignee needs a workspace). `--assignee me` resolves the caller\n  via `\u002Fusers\u002Fme`.\n- `--completed-since WHEN` — ISO 8601, or `now` to show only incomplete tasks (omit to include all).\n- `--fields LIST` — `opt_fields` to request. The TSV columns are fixed (gid, name, completed,\n  assignee, due_on, permalink_url); extra fields appear only in `--json` output.\n- `--limit N` caps tasks fetched (default 100, `0` = everything); `--page-size N` sets the\n  per-request page (1-100, default 100). Fetched count and any truncation warning go to stderr.\n- `--json` emits one raw task object per line instead of TSV.\n- Exit codes: `0` success, `1` request failed \u002F API error \u002F bad arguments (the API's own\n  `errors[].message` is printed to stderr).\n\nIf the script errors, read it — it's plain `curl` + `jq` — and debug against `references\u002Fapi.md`.\n\n### 2. Get one task\n\n```bash\nasana \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID?opt_fields=name,notes,completed,assignee.name,due_on,projects.name,tags.name,parent.name,num_subtasks,custom_fields.name,custom_fields.display_value,permalink_url\" \\\n  | jq '.data'\n```\n\nWith no `opt_fields` you get only the compact record. Read a task's comments with recipe 5.\n\n### 3. Create a task\n\nFields nest under `data`. One of `workspace`, `projects`, or `parent` is required (a standalone task\nneeds a `workspace`).\n\n```bash\nasana -X POST \"${ASANA_BASE}\u002Ftasks\" -d '{\n  \"data\": {\n    \"name\": \"Draft the launch checklist\",\n    \"notes\": \"Plain-text body. Use html_notes for rich text.\",\n    \"workspace\": \"1209876543210987\",\n    \"projects\": [\"1201234567890123\"],\n    \"assignee\": \"me\",\n    \"due_on\": \"2026-06-15\",\n    \"followers\": [\"1200000000000001\"]\n  }\n}' | jq '.data | {gid, name, permalink_url}'\n```\n\n`assignee` and `followers` take user gids (or `me`); `due_on` is a date, `due_at` an ISO 8601\ntimestamp. Use `html_notes` for rich text (Asana's HTML subset). Custom-field values go in\n`custom_fields: {\"FIELD_GID\": value}`.\n\n### 4. Update or complete a task\n\nPUT replaces only the fields you send (still wrapped in `data`). You complete a task by setting\n`completed` — there is no separate endpoint.\n\n```bash\nasana -X PUT \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\" -d '{\"data\": {\"completed\": true}}' \\\n  | jq '.data | {gid, completed, completed_at}'\nasana -X PUT \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\" -d '{\"data\": {\"name\": \"Revised\", \"due_on\": \"2026-07-01\"}}'\n```\n\nDelete: `asana -X DELETE \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\"` — returns an empty `data: {}`; the task\ngoes to the trash.\n\n### 5. Comment on a task \u002F read its activity (stories)\n\nStories are a task's comments plus system activity. Only comment stories can be created.\n\n```bash\n# add a comment\nasana -X POST \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\u002Fstories\" \\\n  -d '{\"data\": {\"text\": \"Reproduced on main.\"}}' | jq '.data | {gid, created_at}'\n\n# read comments only (filter out system activity client-side)\nasana \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\u002Fstories?opt_fields=resource_subtype,text,created_by.name,created_at\" \\\n  | jq '.data[] | select(.resource_subtype==\"comment_added\") | {by: .created_by.name, text, created_at}'\n```\n\nUse `html_text` instead of `text` for a rich-text comment.\n\n### 6. Search tasks in a workspace (premium)\n\nAdvanced search lives at the workspace and is **premium-only**. It does **not** offset-paginate\n(results are unstable, capped at 100) — narrow with filters, or sort by `created_at` and page\nmanually with `created_at.before`. For plain \"tasks in a project \u002F mine\", prefer the list script\n(recipe 1): it pages fully and works on free plans.\n\n```bash\nasana -G \"${ASANA_BASE}\u002Fworkspaces\u002FWORKSPACE_GID\u002Ftasks\u002Fsearch\" \\\n  --data-urlencode \"text=launch\" \\\n  --data-urlencode \"assignee.any=me\" \\\n  --data-urlencode \"completed=false\" \\\n  --data-urlencode \"sort_by=modified_at\" \\\n  --data-urlencode \"opt_fields=name,assignee.name,due_on,permalink_url\" \\\n  | jq '.data[] | {gid, name, due_on}'\n```\n\n### 7. Projects and sections\n\n```bash\nasana -G \"${ASANA_BASE}\u002Fprojects\" --data-urlencode \"workspace=WORKSPACE_GID\" \\\n  --data-urlencode \"archived=false\" --data-urlencode \"opt_fields=name,owner.name\" \\\n  | jq '.data[] | {gid, name}'\nasana \"${ASANA_BASE}\u002Fprojects\u002FPROJECT_GID?opt_fields=name,notes,owner.name,members.name\" | jq '.data'\nasana \"${ASANA_BASE}\u002Fprojects\u002FPROJECT_GID\u002Fsections?opt_fields=name\" | jq '.data[] | {gid, name}'\n```\n\n### 8. Move a task between projects and sections\n\nA task belongs to projects via *memberships*. Dedicated POSTs add, remove, or place it in a section.\nEach returns an empty `data: {}` on success.\n\n```bash\nasana -X POST \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\u002FaddProject\" \\\n  -d '{\"data\": {\"project\": \"PROJECT_GID\", \"section\": \"SECTION_GID\"}}'\nasana -X POST \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\u002FremoveProject\" -d '{\"data\": {\"project\": \"PROJECT_GID\"}}'\nasana -X POST \"${ASANA_BASE}\u002Fsections\u002FSECTION_GID\u002FaddTask\" -d '{\"data\": {\"task\": \"TASK_GID\"}}'\n```\n\n### 9. Find workspaces, users, and projects (gid lookup)\n\nEverything is referenced by `gid` — resolve names to gids here.\n\n```bash\nasana \"${ASANA_BASE}\u002Fworkspaces?opt_fields=name,is_organization\" | jq '.data[] | {gid, name}'\nasana -G \"${ASANA_BASE}\u002Fusers\" --data-urlencode \"workspace=WORKSPACE_GID\" \\\n  --data-urlencode \"opt_fields=name,email\" | jq '.data[] | {gid, name, email}'\nasana \"${ASANA_BASE}\u002Fusers\u002Fme?opt_fields=name,email,workspaces.name\" | jq '.data'\n```\n\n### 10. Subtasks, tags, and attachments\n\n```bash\nasana \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\u002Fsubtasks?opt_fields=name,completed\" | jq '.data[] | {gid, name}'\nasana -X POST \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\u002Fsubtasks\" -d '{\"data\": {\"name\": \"A subtask\"}}' | jq '.data.gid'\nasana \"${ASANA_BASE}\u002Fworkspaces\u002FWORKSPACE_GID\u002Ftags?opt_fields=name\" | jq '.data[] | {gid, name}'\nasana -X POST \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\u002FaddTag\" -d '{\"data\": {\"tag\": \"TAG_GID\"}}'\nasana \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\u002Fattachments?opt_fields=name,download_url\" | jq '.data[] | {gid, name}'\n```\n\nUpload an attachment with multipart form data (not JSON) — see `references\u002Fapi.md`, section\nAttachments. Set a custom field in a task PUT with\n`{\"data\": {\"custom_fields\": {\"FIELD_GID\": value}}}`.\n\n## Pagination\n\n- **Offset token.** Collection GETs (`\u002Ftasks`, `\u002Fprojects`, `\u002Fusers`, `\u002Fstories`, ...) take `limit`\n  (1-100) and return a `next_page` object when more remain: `{\"offset\": \"...\", \"path\": \"...\",\n  \"uri\": \"...\"}`. Pass `next_page.offset` back as `?offset=...`; stop when `next_page` is `null`.\n  The offset is **opaque** and expires — only reuse one the API handed you, never construct it.\n  `scripts\u002Fasana_tasks.sh` does this for tasks.\n- **No offset on search.** `\u002Fworkspaces\u002F{gid}\u002Ftasks\u002Fsearch` ignores `offset` and caps at 100\n  unstable-ordered results — sort by `created_at` and page with `created_at.before` (recipe 6).\n- Very large result sets (tens of thousands) can return `400` with a truncation message — narrow the\n  query rather than retrying.\n\n## Rate limits\n\nLimits are per workspace + token, per minute:\n\n- **150 requests\u002Fmin** on free plans, **1500\u002Fmin** on paid. Search is **60\u002Fmin**.\n- Concurrency: **50** simultaneous GETs, **15** simultaneous writes. Duplication\u002Fexport jobs are\n  capped at 5 concurrent per user.\n- A separate cost-based limiter can reject expensive graph traversals; most callers never hit it.\n\nOn `429`, sleep the `Retry-After` seconds (default ~30 if absent) and retry with backoff — don't\ntighten the poll interval.\n\n## Error handling\n\nEvery error replaces `data` with `errors`: `{\"errors\": [{\"message\": \"...\", \"help\": \"...\", \"phrase\":\n\"...\"}]}` (`phrase` appears only on 500s, for support). Check `.errors` before projecting `.data`.\n\n- **`400`** — Bad request: missing\u002Fmalformed parameter, a bad `data` envelope, or a result set too large to return. The `message` names the cause.\n- **`401`** — Credential missing or rejected. Check `ASANA_TOKEN` is set at all (any value works). If it persists, the credential isn't configured for this workspace — report it.\n- **`402`** — Payment required: the feature needs a premium org (e.g. task search, some custom-field operations).\n- **`403`** — Forbidden: the token's user lacks access to that object.\n- **`404`** — Not found: wrong `gid` or non-existent object; some private objects may also surface as `404` rather than `403`.\n- **`429`** — Rate limited. Sleep per `Retry-After`, then retry with backoff.\n- **`451`** — Unavailable for legal reasons (embargoed IP).\n- **`5xx`** — Asana-side. Retry reads with backoff; quote `errors[].phrase` if you escalate.\n\n## Going deeper\n\n`references\u002Fapi.md` has the fuller catalog — the complete task fields\u002Fmemberships model,\n`html_notes`\u002F`html_text` markup, sections and reordering, dependencies, custom fields and enum\noptions, attachments (multipart upload), tags, teams and portfolios, project statuses, webhooks (the\n`X-Hook-Secret` handshake), the batch API, and audit-log events. Read it for an endpoint not covered\nabove, or the exact body shape for a write.\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,119,187,194,215,220,306,311,445,455,534,540,545,720,726,741,769,841,1004,1032,1038,1100,1112,1118,1158,1330,1386,1392,1412,1553,1574,1580,1585,1755,1775,1781,1816,2005,2011,2233,2239,2258,2431,2437,2449,2644,2650,2928,2947,2953,3113,3119,3124,3174,3195,3201,3248,3416,3422,3453],{"type":39,"tag":40,"props":41,"children":42},"element","p",{},[43,46,53,55,65,67,73,75,80,82,87,89,94,96,102,103,109,111,117],{"type":44,"value":45},"text","Asana's REST API is rooted at ",{"type":39,"tag":47,"props":48,"children":50},"code",{"className":49},[],[51],{"type":44,"value":52},"https:\u002F\u002Fapp.asana.com\u002Fapi\u002F1.0",{"type":44,"value":54},". Three things are true of every call:\nevery object is identified by a string ",{"type":39,"tag":56,"props":57,"children":58},"strong",{},[59],{"type":39,"tag":47,"props":60,"children":62},{"className":61},[],[63],{"type":44,"value":64},"gid",{"type":44,"value":66}," (global id), every response wraps its payload in a\ntop-level ",{"type":39,"tag":47,"props":68,"children":70},{"className":69},[],[71],{"type":44,"value":72},"data",{"type":44,"value":74}," key, and write bodies wrap their fields in ",{"type":39,"tag":47,"props":76,"children":78},{"className":77},[],[79],{"type":44,"value":72},{"type":44,"value":81}," too. Most reads return a\n",{"type":39,"tag":56,"props":83,"children":84},{},[85],{"type":44,"value":86},"compact",{"type":44,"value":88}," record (",{"type":39,"tag":47,"props":90,"children":92},{"className":91},[],[93],{"type":44,"value":64},{"type":44,"value":95},", ",{"type":39,"tag":47,"props":97,"children":99},{"className":98},[],[100],{"type":44,"value":101},"name",{"type":44,"value":95},{"type":39,"tag":47,"props":104,"children":106},{"className":105},[],[107],{"type":44,"value":108},"resource_type",{"type":44,"value":110},") — ask for more with ",{"type":39,"tag":47,"props":112,"children":114},{"className":113},[],[115],{"type":44,"value":116},"opt_fields",{"type":44,"value":118},".",{"type":39,"tag":40,"props":120,"children":121},{},[122,124,129,131,137,139,144,146,151,153,158,160,165,167,172,173,178,180,185],{"type":44,"value":123},"Resources nest predictably: a ",{"type":39,"tag":56,"props":125,"children":126},{},[127],{"type":44,"value":128},"workspace",{"type":44,"value":130}," (an ",{"type":39,"tag":132,"props":133,"children":134},"em",{},[135],{"type":44,"value":136},"organization",{"type":44,"value":138}," if it has one) holds ",{"type":39,"tag":56,"props":140,"children":141},{},[142],{"type":44,"value":143},"projects",{"type":44,"value":145}," and\n",{"type":39,"tag":56,"props":147,"children":148},{},[149],{"type":44,"value":150},"users",{"type":44,"value":152},"; a ",{"type":39,"tag":56,"props":154,"children":155},{},[156],{"type":44,"value":157},"project",{"type":44,"value":159}," holds ",{"type":39,"tag":56,"props":161,"children":162},{},[163],{"type":44,"value":164},"sections",{"type":44,"value":166}," and ",{"type":39,"tag":56,"props":168,"children":169},{},[170],{"type":44,"value":171},"tasks",{"type":44,"value":152},{"type":39,"tag":56,"props":174,"children":175},{},[176],{"type":44,"value":177},"task",{"type":44,"value":179}," carries comments and activity\nas ",{"type":39,"tag":56,"props":181,"children":182},{},[183],{"type":44,"value":184},"stories",{"type":44,"value":186},", plus subtasks, tags, attachments, and custom fields.",{"type":39,"tag":188,"props":189,"children":191},"h2",{"id":190},"request-setup",[192],{"type":44,"value":193},"Request setup",{"type":39,"tag":40,"props":195,"children":196},{},[197,199,205,207,213],{"type":44,"value":198},"Authentication is handled by the runtime — credentials are injected into outbound requests to this\nAPI, so there is nothing to set up. Do not try to create, mint, refresh, or validate tokens or keys.\nCredential variables exist only to keep requests well-formed; if one is unset, set it to any\nplaceholder value. A persistent ",{"type":39,"tag":47,"props":200,"children":202},{"className":201},[],[203],{"type":44,"value":204},"401",{"type":44,"value":206},"\u002F",{"type":39,"tag":47,"props":208,"children":210},{"className":209},[],[211],{"type":44,"value":212},"403",{"type":44,"value":214}," means the credential isn't configured for this workspace\n— report that instead of debugging auth.",{"type":39,"tag":40,"props":216,"children":217},{},[218],{"type":44,"value":219},"Requests use a bearer token. The base URL is fixed (not per-instance), but workspace\u002Fproject\u002Ftask\ngids are real and part of the path:",{"type":39,"tag":221,"props":222,"children":227},"pre",{"className":223,"code":224,"language":225,"meta":226,"style":226},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","export ASANA_TOKEN=\"placeholder\"                 # injected by the runtime; any value works\nexport ASANA_BASE=\"https:\u002F\u002Fapp.asana.com\u002Fapi\u002F1.0\"\n","bash","",[228],{"type":39,"tag":47,"props":229,"children":230},{"__ignoreMap":226},[231,276],{"type":39,"tag":232,"props":233,"children":236},"span",{"class":234,"line":235},"line",1,[237,243,249,255,260,266,270],{"type":39,"tag":232,"props":238,"children":240},{"style":239},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[241],{"type":44,"value":242},"export",{"type":39,"tag":232,"props":244,"children":246},{"style":245},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[247],{"type":44,"value":248}," ASANA_TOKEN",{"type":39,"tag":232,"props":250,"children":252},{"style":251},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[253],{"type":44,"value":254},"=",{"type":39,"tag":232,"props":256,"children":257},{"style":251},[258],{"type":44,"value":259},"\"",{"type":39,"tag":232,"props":261,"children":263},{"style":262},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[264],{"type":44,"value":265},"placeholder",{"type":39,"tag":232,"props":267,"children":268},{"style":251},[269],{"type":44,"value":259},{"type":39,"tag":232,"props":271,"children":273},{"style":272},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[274],{"type":44,"value":275},"                 # injected by the runtime; any value works\n",{"type":39,"tag":232,"props":277,"children":279},{"class":234,"line":278},2,[280,284,289,293,297,301],{"type":39,"tag":232,"props":281,"children":282},{"style":239},[283],{"type":44,"value":242},{"type":39,"tag":232,"props":285,"children":286},{"style":245},[287],{"type":44,"value":288}," ASANA_BASE",{"type":39,"tag":232,"props":290,"children":291},{"style":251},[292],{"type":44,"value":254},{"type":39,"tag":232,"props":294,"children":295},{"style":251},[296],{"type":44,"value":259},{"type":39,"tag":232,"props":298,"children":299},{"style":262},[300],{"type":44,"value":52},{"type":39,"tag":232,"props":302,"children":303},{"style":251},[304],{"type":44,"value":305},"\"\n",{"type":39,"tag":40,"props":307,"children":308},{},[309],{"type":44,"value":310},"Define a helper once per session:",{"type":39,"tag":221,"props":312,"children":314},{"className":223,"code":313,"language":225,"meta":226,"style":226},"asana() { curl -sS -H \"Authorization: Bearer ${ASANA_TOKEN}\" \\\n  -H \"Accept: application\u002Fjson\" -H \"Content-Type: application\u002Fjson\" \"$@\"; }\n",[315],{"type":39,"tag":47,"props":316,"children":317},{"__ignoreMap":226},[318,383],{"type":39,"tag":232,"props":319,"children":320},{"class":234,"line":235},[321,327,332,337,343,348,353,358,363,368,373,378],{"type":39,"tag":232,"props":322,"children":324},{"style":323},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[325],{"type":44,"value":326},"asana",{"type":39,"tag":232,"props":328,"children":329},{"style":251},[330],{"type":44,"value":331},"()",{"type":39,"tag":232,"props":333,"children":334},{"style":251},[335],{"type":44,"value":336}," {",{"type":39,"tag":232,"props":338,"children":340},{"style":339},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[341],{"type":44,"value":342}," curl",{"type":39,"tag":232,"props":344,"children":345},{"style":262},[346],{"type":44,"value":347}," -sS",{"type":39,"tag":232,"props":349,"children":350},{"style":262},[351],{"type":44,"value":352}," -H",{"type":39,"tag":232,"props":354,"children":355},{"style":251},[356],{"type":44,"value":357}," \"",{"type":39,"tag":232,"props":359,"children":360},{"style":262},[361],{"type":44,"value":362},"Authorization: Bearer ",{"type":39,"tag":232,"props":364,"children":365},{"style":251},[366],{"type":44,"value":367},"${",{"type":39,"tag":232,"props":369,"children":370},{"style":245},[371],{"type":44,"value":372},"ASANA_TOKEN",{"type":39,"tag":232,"props":374,"children":375},{"style":251},[376],{"type":44,"value":377},"}\"",{"type":39,"tag":232,"props":379,"children":380},{"style":245},[381],{"type":44,"value":382}," \\\n",{"type":39,"tag":232,"props":384,"children":385},{"class":234,"line":278},[386,391,395,400,404,408,412,417,421,425,431,435,440],{"type":39,"tag":232,"props":387,"children":388},{"style":262},[389],{"type":44,"value":390},"  -H",{"type":39,"tag":232,"props":392,"children":393},{"style":251},[394],{"type":44,"value":357},{"type":39,"tag":232,"props":396,"children":397},{"style":262},[398],{"type":44,"value":399},"Accept: application\u002Fjson",{"type":39,"tag":232,"props":401,"children":402},{"style":251},[403],{"type":44,"value":259},{"type":39,"tag":232,"props":405,"children":406},{"style":262},[407],{"type":44,"value":352},{"type":39,"tag":232,"props":409,"children":410},{"style":251},[411],{"type":44,"value":357},{"type":39,"tag":232,"props":413,"children":414},{"style":262},[415],{"type":44,"value":416},"Content-Type: application\u002Fjson",{"type":39,"tag":232,"props":418,"children":419},{"style":251},[420],{"type":44,"value":259},{"type":39,"tag":232,"props":422,"children":423},{"style":251},[424],{"type":44,"value":357},{"type":39,"tag":232,"props":426,"children":428},{"style":427},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[429],{"type":44,"value":430},"$@",{"type":39,"tag":232,"props":432,"children":433},{"style":251},[434],{"type":44,"value":259},{"type":39,"tag":232,"props":436,"children":437},{"style":251},[438],{"type":44,"value":439},";",{"type":39,"tag":232,"props":441,"children":442},{"style":251},[443],{"type":44,"value":444}," }\n",{"type":39,"tag":40,"props":446,"children":447},{},[448,453],{"type":39,"tag":56,"props":449,"children":450},{},[451],{"type":44,"value":452},"Sanity check",{"type":44,"value":454}," — confirm the token works and find your workspace gids:",{"type":39,"tag":221,"props":456,"children":458},{"className":223,"code":457,"language":225,"meta":226,"style":226},"asana \"${ASANA_BASE}\u002Fusers\u002Fme?opt_fields=name,email,workspaces.name\" \\\n  | jq '.data | {gid, name, email, workspaces: [.workspaces[]? | {gid, name}]}'\n# 200 with your user + workspaces → wired up. 401 → credential not configured; report it.\n",[459],{"type":39,"tag":47,"props":460,"children":461},{"__ignoreMap":226},[462,497,525],{"type":39,"tag":232,"props":463,"children":464},{"class":234,"line":235},[465,469,474,479,484,489,493],{"type":39,"tag":232,"props":466,"children":467},{"style":339},[468],{"type":44,"value":326},{"type":39,"tag":232,"props":470,"children":471},{"style":251},[472],{"type":44,"value":473}," \"${",{"type":39,"tag":232,"props":475,"children":476},{"style":245},[477],{"type":44,"value":478},"ASANA_BASE",{"type":39,"tag":232,"props":480,"children":481},{"style":251},[482],{"type":44,"value":483},"}",{"type":39,"tag":232,"props":485,"children":486},{"style":262},[487],{"type":44,"value":488},"\u002Fusers\u002Fme?opt_fields=name,email,workspaces.name",{"type":39,"tag":232,"props":490,"children":491},{"style":251},[492],{"type":44,"value":259},{"type":39,"tag":232,"props":494,"children":495},{"style":245},[496],{"type":44,"value":382},{"type":39,"tag":232,"props":498,"children":499},{"class":234,"line":278},[500,505,510,515,520],{"type":39,"tag":232,"props":501,"children":502},{"style":251},[503],{"type":44,"value":504},"  |",{"type":39,"tag":232,"props":506,"children":507},{"style":339},[508],{"type":44,"value":509}," jq",{"type":39,"tag":232,"props":511,"children":512},{"style":251},[513],{"type":44,"value":514}," '",{"type":39,"tag":232,"props":516,"children":517},{"style":262},[518],{"type":44,"value":519},".data | {gid, name, email, workspaces: [.workspaces[]? | {gid, name}]}",{"type":39,"tag":232,"props":521,"children":522},{"style":251},[523],{"type":44,"value":524},"'\n",{"type":39,"tag":232,"props":526,"children":528},{"class":234,"line":527},3,[529],{"type":39,"tag":232,"props":530,"children":531},{"style":272},[532],{"type":44,"value":533},"# 200 with your user + workspaces → wired up. 401 → credential not configured; report it.\n",{"type":39,"tag":188,"props":535,"children":537},{"id":536},"response-conventions",[538],{"type":44,"value":539},"Response conventions",{"type":39,"tag":40,"props":541,"children":542},{},[543],{"type":44,"value":544},"Three patterns repeat across every endpoint below — stated once so the recipes stay short:",{"type":39,"tag":546,"props":547,"children":548},"ul",{},[549,621,643],{"type":39,"tag":550,"props":551,"children":552},"li",{},[553,565,567,573,575,581,583,588,590,595,597,603,605,611,613,619],{"type":39,"tag":56,"props":554,"children":555},{},[556,558,563],{"type":44,"value":557},"The ",{"type":39,"tag":47,"props":559,"children":561},{"className":560},[],[562],{"type":44,"value":72},{"type":44,"value":564}," envelope.",{"type":44,"value":566}," Reads return ",{"type":39,"tag":47,"props":568,"children":570},{"className":569},[],[571],{"type":44,"value":572},"{\"data\": ...}",{"type":44,"value":574}," (object or array); writes send\n",{"type":39,"tag":47,"props":576,"children":578},{"className":577},[],[579],{"type":44,"value":580},"{\"data\": {...}}",{"type":44,"value":582}," and return the result under ",{"type":39,"tag":47,"props":584,"children":586},{"className":585},[],[587],{"type":44,"value":72},{"type":44,"value":589},". An error replaces ",{"type":39,"tag":47,"props":591,"children":593},{"className":592},[],[594],{"type":44,"value":72},{"type":44,"value":596}," with ",{"type":39,"tag":47,"props":598,"children":600},{"className":599},[],[601],{"type":44,"value":602},"errors",{"type":44,"value":604}," (see\nError handling). Project ",{"type":39,"tag":47,"props":606,"children":608},{"className":607},[],[609],{"type":44,"value":610},".data",{"type":44,"value":612},", and check ",{"type":39,"tag":47,"props":614,"children":616},{"className":615},[],[617],{"type":44,"value":618},".errors",{"type":44,"value":620}," when it's missing.",{"type":39,"tag":550,"props":622,"children":623},{},[624,634,636,641],{"type":39,"tag":56,"props":625,"children":626},{},[627,632],{"type":39,"tag":47,"props":628,"children":630},{"className":629},[],[631],{"type":44,"value":64},{"type":44,"value":633},", not name.",{"type":44,"value":635}," Everything is referenced by its string ",{"type":39,"tag":47,"props":637,"children":639},{"className":638},[],[640],{"type":44,"value":64},{"type":44,"value":642}," — resolve names to gids first\n(workspaces, projects, users, tags; recipe 9).",{"type":39,"tag":550,"props":644,"children":645},{},[646,656,658,663,664,669,670,675,677,682,684,690,691,697,699,704,706,712,714,719],{"type":39,"tag":56,"props":647,"children":648},{},[649,654],{"type":39,"tag":47,"props":650,"children":652},{"className":651},[],[653],{"type":44,"value":116},{"type":44,"value":655}," for fields.",{"type":44,"value":657}," Compact records carry only ",{"type":39,"tag":47,"props":659,"children":661},{"className":660},[],[662],{"type":44,"value":64},{"type":44,"value":95},{"type":39,"tag":47,"props":665,"children":667},{"className":666},[],[668],{"type":44,"value":101},{"type":44,"value":95},{"type":39,"tag":47,"props":671,"children":673},{"className":672},[],[674],{"type":44,"value":108},{"type":44,"value":676},". Add a\ncomma-separated ",{"type":39,"tag":47,"props":678,"children":680},{"className":679},[],[681],{"type":44,"value":116},{"type":44,"value":683}," to expand, with dot-notation for relations\n(",{"type":39,"tag":47,"props":685,"children":687},{"className":686},[],[688],{"type":44,"value":689},"assignee.name",{"type":44,"value":95},{"type":39,"tag":47,"props":692,"children":694},{"className":693},[],[695],{"type":44,"value":696},"memberships.section.name",{"type":44,"value":698},"); ",{"type":39,"tag":47,"props":700,"children":702},{"className":701},[],[703],{"type":44,"value":64},{"type":44,"value":705}," is always returned. On POST\u002FPUT, nest options\nin an ",{"type":39,"tag":47,"props":707,"children":709},{"className":708},[],[710],{"type":44,"value":711},"options",{"type":44,"value":713}," object beside ",{"type":39,"tag":47,"props":715,"children":717},{"className":716},[],[718],{"type":44,"value":72},{"type":44,"value":118},{"type":39,"tag":188,"props":721,"children":723},{"id":722},"core-operations",[724],{"type":44,"value":725},"Core operations",{"type":39,"tag":727,"props":728,"children":730},"h3",{"id":729},"_1-list-tasks-scriptsasana_taskssh",[731,733,739],{"type":44,"value":732},"1. List tasks (",{"type":39,"tag":47,"props":734,"children":736},{"className":735},[],[737],{"type":44,"value":738},"scripts\u002Fasana_tasks.sh",{"type":44,"value":740},")",{"type":39,"tag":40,"props":742,"children":743},{},[744,746,752,754,759,761,767],{"type":44,"value":745},"Run through the bundled script (path is relative to this skill's directory): it GETs ",{"type":39,"tag":47,"props":747,"children":749},{"className":748},[],[750],{"type":44,"value":751},"\u002Ftasks",{"type":44,"value":753},"\nfiltered by project, tag, section, or assignee+workspace, sends an ",{"type":39,"tag":47,"props":755,"children":757},{"className":756},[],[758],{"type":44,"value":116},{"type":44,"value":760}," list, follows\n",{"type":39,"tag":47,"props":762,"children":764},{"className":763},[],[765],{"type":44,"value":766},"next_page.offset",{"type":44,"value":768}," through every page, and emits TSV or JSONL.",{"type":39,"tag":221,"props":770,"children":772},{"className":223,"code":771,"language":225,"meta":226,"style":226},"scripts\u002Fasana_tasks.sh --project 1201234567890123 --limit 200\nscripts\u002Fasana_tasks.sh --assignee me --workspace 1209876543210987 --completed-since now\n",[773],{"type":39,"tag":47,"props":774,"children":775},{"__ignoreMap":226},[776,804],{"type":39,"tag":232,"props":777,"children":778},{"class":234,"line":235},[779,783,788,794,799],{"type":39,"tag":232,"props":780,"children":781},{"style":339},[782],{"type":44,"value":738},{"type":39,"tag":232,"props":784,"children":785},{"style":262},[786],{"type":44,"value":787}," --project",{"type":39,"tag":232,"props":789,"children":791},{"style":790},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[792],{"type":44,"value":793}," 1201234567890123",{"type":39,"tag":232,"props":795,"children":796},{"style":262},[797],{"type":44,"value":798}," --limit",{"type":39,"tag":232,"props":800,"children":801},{"style":790},[802],{"type":44,"value":803}," 200\n",{"type":39,"tag":232,"props":805,"children":806},{"class":234,"line":278},[807,811,816,821,826,831,836],{"type":39,"tag":232,"props":808,"children":809},{"style":339},[810],{"type":44,"value":738},{"type":39,"tag":232,"props":812,"children":813},{"style":262},[814],{"type":44,"value":815}," --assignee",{"type":39,"tag":232,"props":817,"children":818},{"style":262},[819],{"type":44,"value":820}," me",{"type":39,"tag":232,"props":822,"children":823},{"style":262},[824],{"type":44,"value":825}," --workspace",{"type":39,"tag":232,"props":827,"children":828},{"style":790},[829],{"type":44,"value":830}," 1209876543210987",{"type":39,"tag":232,"props":832,"children":833},{"style":262},[834],{"type":44,"value":835}," --completed-since",{"type":39,"tag":232,"props":837,"children":838},{"style":262},[839],{"type":44,"value":840}," now\n",{"type":39,"tag":546,"props":842,"children":843},{},[844,894,913,939,966,976],{"type":39,"tag":550,"props":845,"children":846},{},[847,849,855,856,862,863,869,871,877,879,885,887,893],{"type":44,"value":848},"Exactly one selector is required: ",{"type":39,"tag":47,"props":850,"children":852},{"className":851},[],[853],{"type":44,"value":854},"--project GID",{"type":44,"value":95},{"type":39,"tag":47,"props":857,"children":859},{"className":858},[],[860],{"type":44,"value":861},"--tag GID",{"type":44,"value":95},{"type":39,"tag":47,"props":864,"children":866},{"className":865},[],[867],{"type":44,"value":868},"--section GID",{"type":44,"value":870},", or\n",{"type":39,"tag":47,"props":872,"children":874},{"className":873},[],[875],{"type":44,"value":876},"--assignee GID --workspace GID",{"type":44,"value":878}," (assignee needs a workspace). ",{"type":39,"tag":47,"props":880,"children":882},{"className":881},[],[883],{"type":44,"value":884},"--assignee me",{"type":44,"value":886}," resolves the caller\nvia ",{"type":39,"tag":47,"props":888,"children":890},{"className":889},[],[891],{"type":44,"value":892},"\u002Fusers\u002Fme",{"type":44,"value":118},{"type":39,"tag":550,"props":895,"children":896},{},[897,903,905,911],{"type":39,"tag":47,"props":898,"children":900},{"className":899},[],[901],{"type":44,"value":902},"--completed-since WHEN",{"type":44,"value":904}," — ISO 8601, or ",{"type":39,"tag":47,"props":906,"children":908},{"className":907},[],[909],{"type":44,"value":910},"now",{"type":44,"value":912}," to show only incomplete tasks (omit to include all).",{"type":39,"tag":550,"props":914,"children":915},{},[916,922,924,929,931,937],{"type":39,"tag":47,"props":917,"children":919},{"className":918},[],[920],{"type":44,"value":921},"--fields LIST",{"type":44,"value":923}," — ",{"type":39,"tag":47,"props":925,"children":927},{"className":926},[],[928],{"type":44,"value":116},{"type":44,"value":930}," to request. The TSV columns are fixed (gid, name, completed,\nassignee, due_on, permalink_url); extra fields appear only in ",{"type":39,"tag":47,"props":932,"children":934},{"className":933},[],[935],{"type":44,"value":936},"--json",{"type":44,"value":938}," output.",{"type":39,"tag":550,"props":940,"children":941},{},[942,948,950,956,958,964],{"type":39,"tag":47,"props":943,"children":945},{"className":944},[],[946],{"type":44,"value":947},"--limit N",{"type":44,"value":949}," caps tasks fetched (default 100, ",{"type":39,"tag":47,"props":951,"children":953},{"className":952},[],[954],{"type":44,"value":955},"0",{"type":44,"value":957}," = everything); ",{"type":39,"tag":47,"props":959,"children":961},{"className":960},[],[962],{"type":44,"value":963},"--page-size N",{"type":44,"value":965}," sets the\nper-request page (1-100, default 100). Fetched count and any truncation warning go to stderr.",{"type":39,"tag":550,"props":967,"children":968},{},[969,974],{"type":39,"tag":47,"props":970,"children":972},{"className":971},[],[973],{"type":44,"value":936},{"type":44,"value":975}," emits one raw task object per line instead of TSV.",{"type":39,"tag":550,"props":977,"children":978},{},[979,981,986,988,994,996,1002],{"type":44,"value":980},"Exit codes: ",{"type":39,"tag":47,"props":982,"children":984},{"className":983},[],[985],{"type":44,"value":955},{"type":44,"value":987}," success, ",{"type":39,"tag":47,"props":989,"children":991},{"className":990},[],[992],{"type":44,"value":993},"1",{"type":44,"value":995}," request failed \u002F API error \u002F bad arguments (the API's own\n",{"type":39,"tag":47,"props":997,"children":999},{"className":998},[],[1000],{"type":44,"value":1001},"errors[].message",{"type":44,"value":1003}," is printed to stderr).",{"type":39,"tag":40,"props":1005,"children":1006},{},[1007,1009,1015,1017,1023,1025,1031],{"type":44,"value":1008},"If the script errors, read it — it's plain ",{"type":39,"tag":47,"props":1010,"children":1012},{"className":1011},[],[1013],{"type":44,"value":1014},"curl",{"type":44,"value":1016}," + ",{"type":39,"tag":47,"props":1018,"children":1020},{"className":1019},[],[1021],{"type":44,"value":1022},"jq",{"type":44,"value":1024}," — and debug against ",{"type":39,"tag":47,"props":1026,"children":1028},{"className":1027},[],[1029],{"type":44,"value":1030},"references\u002Fapi.md",{"type":44,"value":118},{"type":39,"tag":727,"props":1033,"children":1035},{"id":1034},"_2-get-one-task",[1036],{"type":44,"value":1037},"2. Get one task",{"type":39,"tag":221,"props":1039,"children":1041},{"className":223,"code":1040,"language":225,"meta":226,"style":226},"asana \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID?opt_fields=name,notes,completed,assignee.name,due_on,projects.name,tags.name,parent.name,num_subtasks,custom_fields.name,custom_fields.display_value,permalink_url\" \\\n  | jq '.data'\n",[1042],{"type":39,"tag":47,"props":1043,"children":1044},{"__ignoreMap":226},[1045,1077],{"type":39,"tag":232,"props":1046,"children":1047},{"class":234,"line":235},[1048,1052,1056,1060,1064,1069,1073],{"type":39,"tag":232,"props":1049,"children":1050},{"style":339},[1051],{"type":44,"value":326},{"type":39,"tag":232,"props":1053,"children":1054},{"style":251},[1055],{"type":44,"value":473},{"type":39,"tag":232,"props":1057,"children":1058},{"style":245},[1059],{"type":44,"value":478},{"type":39,"tag":232,"props":1061,"children":1062},{"style":251},[1063],{"type":44,"value":483},{"type":39,"tag":232,"props":1065,"children":1066},{"style":262},[1067],{"type":44,"value":1068},"\u002Ftasks\u002FTASK_GID?opt_fields=name,notes,completed,assignee.name,due_on,projects.name,tags.name,parent.name,num_subtasks,custom_fields.name,custom_fields.display_value,permalink_url",{"type":39,"tag":232,"props":1070,"children":1071},{"style":251},[1072],{"type":44,"value":259},{"type":39,"tag":232,"props":1074,"children":1075},{"style":245},[1076],{"type":44,"value":382},{"type":39,"tag":232,"props":1078,"children":1079},{"class":234,"line":278},[1080,1084,1088,1092,1096],{"type":39,"tag":232,"props":1081,"children":1082},{"style":251},[1083],{"type":44,"value":504},{"type":39,"tag":232,"props":1085,"children":1086},{"style":339},[1087],{"type":44,"value":509},{"type":39,"tag":232,"props":1089,"children":1090},{"style":251},[1091],{"type":44,"value":514},{"type":39,"tag":232,"props":1093,"children":1094},{"style":262},[1095],{"type":44,"value":610},{"type":39,"tag":232,"props":1097,"children":1098},{"style":251},[1099],{"type":44,"value":524},{"type":39,"tag":40,"props":1101,"children":1102},{},[1103,1105,1110],{"type":44,"value":1104},"With no ",{"type":39,"tag":47,"props":1106,"children":1108},{"className":1107},[],[1109],{"type":44,"value":116},{"type":44,"value":1111}," you get only the compact record. Read a task's comments with recipe 5.",{"type":39,"tag":727,"props":1113,"children":1115},{"id":1114},"_3-create-a-task",[1116],{"type":44,"value":1117},"3. Create a task",{"type":39,"tag":40,"props":1119,"children":1120},{},[1121,1123,1128,1130,1135,1136,1141,1143,1149,1151,1156],{"type":44,"value":1122},"Fields nest under ",{"type":39,"tag":47,"props":1124,"children":1126},{"className":1125},[],[1127],{"type":44,"value":72},{"type":44,"value":1129},". One of ",{"type":39,"tag":47,"props":1131,"children":1133},{"className":1132},[],[1134],{"type":44,"value":128},{"type":44,"value":95},{"type":39,"tag":47,"props":1137,"children":1139},{"className":1138},[],[1140],{"type":44,"value":143},{"type":44,"value":1142},", or ",{"type":39,"tag":47,"props":1144,"children":1146},{"className":1145},[],[1147],{"type":44,"value":1148},"parent",{"type":44,"value":1150}," is required (a standalone task\nneeds a ",{"type":39,"tag":47,"props":1152,"children":1154},{"className":1153},[],[1155],{"type":44,"value":128},{"type":44,"value":1157},").",{"type":39,"tag":221,"props":1159,"children":1161},{"className":223,"code":1160,"language":225,"meta":226,"style":226},"asana -X POST \"${ASANA_BASE}\u002Ftasks\" -d '{\n  \"data\": {\n    \"name\": \"Draft the launch checklist\",\n    \"notes\": \"Plain-text body. Use html_notes for rich text.\",\n    \"workspace\": \"1209876543210987\",\n    \"projects\": [\"1201234567890123\"],\n    \"assignee\": \"me\",\n    \"due_on\": \"2026-06-15\",\n    \"followers\": [\"1200000000000001\"]\n  }\n}' | jq '.data | {gid, name, permalink_url}'\n",[1162],{"type":39,"tag":47,"props":1163,"children":1164},{"__ignoreMap":226},[1165,1216,1224,1232,1241,1250,1259,1268,1277,1286,1295],{"type":39,"tag":232,"props":1166,"children":1167},{"class":234,"line":235},[1168,1172,1177,1182,1186,1190,1194,1198,1202,1207,1211],{"type":39,"tag":232,"props":1169,"children":1170},{"style":339},[1171],{"type":44,"value":326},{"type":39,"tag":232,"props":1173,"children":1174},{"style":262},[1175],{"type":44,"value":1176}," -X",{"type":39,"tag":232,"props":1178,"children":1179},{"style":262},[1180],{"type":44,"value":1181}," POST",{"type":39,"tag":232,"props":1183,"children":1184},{"style":251},[1185],{"type":44,"value":473},{"type":39,"tag":232,"props":1187,"children":1188},{"style":245},[1189],{"type":44,"value":478},{"type":39,"tag":232,"props":1191,"children":1192},{"style":251},[1193],{"type":44,"value":483},{"type":39,"tag":232,"props":1195,"children":1196},{"style":262},[1197],{"type":44,"value":751},{"type":39,"tag":232,"props":1199,"children":1200},{"style":251},[1201],{"type":44,"value":259},{"type":39,"tag":232,"props":1203,"children":1204},{"style":262},[1205],{"type":44,"value":1206}," -d",{"type":39,"tag":232,"props":1208,"children":1209},{"style":251},[1210],{"type":44,"value":514},{"type":39,"tag":232,"props":1212,"children":1213},{"style":262},[1214],{"type":44,"value":1215},"{\n",{"type":39,"tag":232,"props":1217,"children":1218},{"class":234,"line":278},[1219],{"type":39,"tag":232,"props":1220,"children":1221},{"style":262},[1222],{"type":44,"value":1223},"  \"data\": {\n",{"type":39,"tag":232,"props":1225,"children":1226},{"class":234,"line":527},[1227],{"type":39,"tag":232,"props":1228,"children":1229},{"style":262},[1230],{"type":44,"value":1231},"    \"name\": \"Draft the launch checklist\",\n",{"type":39,"tag":232,"props":1233,"children":1235},{"class":234,"line":1234},4,[1236],{"type":39,"tag":232,"props":1237,"children":1238},{"style":262},[1239],{"type":44,"value":1240},"    \"notes\": \"Plain-text body. Use html_notes for rich text.\",\n",{"type":39,"tag":232,"props":1242,"children":1244},{"class":234,"line":1243},5,[1245],{"type":39,"tag":232,"props":1246,"children":1247},{"style":262},[1248],{"type":44,"value":1249},"    \"workspace\": \"1209876543210987\",\n",{"type":39,"tag":232,"props":1251,"children":1253},{"class":234,"line":1252},6,[1254],{"type":39,"tag":232,"props":1255,"children":1256},{"style":262},[1257],{"type":44,"value":1258},"    \"projects\": [\"1201234567890123\"],\n",{"type":39,"tag":232,"props":1260,"children":1262},{"class":234,"line":1261},7,[1263],{"type":39,"tag":232,"props":1264,"children":1265},{"style":262},[1266],{"type":44,"value":1267},"    \"assignee\": \"me\",\n",{"type":39,"tag":232,"props":1269,"children":1271},{"class":234,"line":1270},8,[1272],{"type":39,"tag":232,"props":1273,"children":1274},{"style":262},[1275],{"type":44,"value":1276},"    \"due_on\": \"2026-06-15\",\n",{"type":39,"tag":232,"props":1278,"children":1280},{"class":234,"line":1279},9,[1281],{"type":39,"tag":232,"props":1282,"children":1283},{"style":262},[1284],{"type":44,"value":1285},"    \"followers\": [\"1200000000000001\"]\n",{"type":39,"tag":232,"props":1287,"children":1289},{"class":234,"line":1288},10,[1290],{"type":39,"tag":232,"props":1291,"children":1292},{"style":262},[1293],{"type":44,"value":1294},"  }\n",{"type":39,"tag":232,"props":1296,"children":1298},{"class":234,"line":1297},11,[1299,1303,1308,1313,1317,1321,1326],{"type":39,"tag":232,"props":1300,"children":1301},{"style":262},[1302],{"type":44,"value":483},{"type":39,"tag":232,"props":1304,"children":1305},{"style":251},[1306],{"type":44,"value":1307},"'",{"type":39,"tag":232,"props":1309,"children":1310},{"style":251},[1311],{"type":44,"value":1312}," |",{"type":39,"tag":232,"props":1314,"children":1315},{"style":339},[1316],{"type":44,"value":509},{"type":39,"tag":232,"props":1318,"children":1319},{"style":251},[1320],{"type":44,"value":514},{"type":39,"tag":232,"props":1322,"children":1323},{"style":262},[1324],{"type":44,"value":1325},".data | {gid, name, permalink_url}",{"type":39,"tag":232,"props":1327,"children":1328},{"style":251},[1329],{"type":44,"value":524},{"type":39,"tag":40,"props":1331,"children":1332},{},[1333,1339,1340,1346,1348,1354,1355,1361,1363,1369,1371,1377,1379,1385],{"type":39,"tag":47,"props":1334,"children":1336},{"className":1335},[],[1337],{"type":44,"value":1338},"assignee",{"type":44,"value":166},{"type":39,"tag":47,"props":1341,"children":1343},{"className":1342},[],[1344],{"type":44,"value":1345},"followers",{"type":44,"value":1347}," take user gids (or ",{"type":39,"tag":47,"props":1349,"children":1351},{"className":1350},[],[1352],{"type":44,"value":1353},"me",{"type":44,"value":698},{"type":39,"tag":47,"props":1356,"children":1358},{"className":1357},[],[1359],{"type":44,"value":1360},"due_on",{"type":44,"value":1362}," is a date, ",{"type":39,"tag":47,"props":1364,"children":1366},{"className":1365},[],[1367],{"type":44,"value":1368},"due_at",{"type":44,"value":1370}," an ISO 8601\ntimestamp. Use ",{"type":39,"tag":47,"props":1372,"children":1374},{"className":1373},[],[1375],{"type":44,"value":1376},"html_notes",{"type":44,"value":1378}," for rich text (Asana's HTML subset). Custom-field values go in\n",{"type":39,"tag":47,"props":1380,"children":1382},{"className":1381},[],[1383],{"type":44,"value":1384},"custom_fields: {\"FIELD_GID\": value}",{"type":44,"value":118},{"type":39,"tag":727,"props":1387,"children":1389},{"id":1388},"_4-update-or-complete-a-task",[1390],{"type":44,"value":1391},"4. Update or complete a task",{"type":39,"tag":40,"props":1393,"children":1394},{},[1395,1397,1402,1404,1410],{"type":44,"value":1396},"PUT replaces only the fields you send (still wrapped in ",{"type":39,"tag":47,"props":1398,"children":1400},{"className":1399},[],[1401],{"type":44,"value":72},{"type":44,"value":1403},"). You complete a task by setting\n",{"type":39,"tag":47,"props":1405,"children":1407},{"className":1406},[],[1408],{"type":44,"value":1409},"completed",{"type":44,"value":1411}," — there is no separate endpoint.",{"type":39,"tag":221,"props":1413,"children":1415},{"className":223,"code":1414,"language":225,"meta":226,"style":226},"asana -X PUT \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\" -d '{\"data\": {\"completed\": true}}' \\\n  | jq '.data | {gid, completed, completed_at}'\nasana -X PUT \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\" -d '{\"data\": {\"name\": \"Revised\", \"due_on\": \"2026-07-01\"}}'\n",[1416],{"type":39,"tag":47,"props":1417,"children":1418},{"__ignoreMap":226},[1419,1477,1501],{"type":39,"tag":232,"props":1420,"children":1421},{"class":234,"line":235},[1422,1426,1430,1435,1439,1443,1447,1452,1456,1460,1464,1469,1473],{"type":39,"tag":232,"props":1423,"children":1424},{"style":339},[1425],{"type":44,"value":326},{"type":39,"tag":232,"props":1427,"children":1428},{"style":262},[1429],{"type":44,"value":1176},{"type":39,"tag":232,"props":1431,"children":1432},{"style":262},[1433],{"type":44,"value":1434}," PUT",{"type":39,"tag":232,"props":1436,"children":1437},{"style":251},[1438],{"type":44,"value":473},{"type":39,"tag":232,"props":1440,"children":1441},{"style":245},[1442],{"type":44,"value":478},{"type":39,"tag":232,"props":1444,"children":1445},{"style":251},[1446],{"type":44,"value":483},{"type":39,"tag":232,"props":1448,"children":1449},{"style":262},[1450],{"type":44,"value":1451},"\u002Ftasks\u002FTASK_GID",{"type":39,"tag":232,"props":1453,"children":1454},{"style":251},[1455],{"type":44,"value":259},{"type":39,"tag":232,"props":1457,"children":1458},{"style":262},[1459],{"type":44,"value":1206},{"type":39,"tag":232,"props":1461,"children":1462},{"style":251},[1463],{"type":44,"value":514},{"type":39,"tag":232,"props":1465,"children":1466},{"style":262},[1467],{"type":44,"value":1468},"{\"data\": {\"completed\": true}}",{"type":39,"tag":232,"props":1470,"children":1471},{"style":251},[1472],{"type":44,"value":1307},{"type":39,"tag":232,"props":1474,"children":1475},{"style":245},[1476],{"type":44,"value":382},{"type":39,"tag":232,"props":1478,"children":1479},{"class":234,"line":278},[1480,1484,1488,1492,1497],{"type":39,"tag":232,"props":1481,"children":1482},{"style":251},[1483],{"type":44,"value":504},{"type":39,"tag":232,"props":1485,"children":1486},{"style":339},[1487],{"type":44,"value":509},{"type":39,"tag":232,"props":1489,"children":1490},{"style":251},[1491],{"type":44,"value":514},{"type":39,"tag":232,"props":1493,"children":1494},{"style":262},[1495],{"type":44,"value":1496},".data | {gid, completed, completed_at}",{"type":39,"tag":232,"props":1498,"children":1499},{"style":251},[1500],{"type":44,"value":524},{"type":39,"tag":232,"props":1502,"children":1503},{"class":234,"line":527},[1504,1508,1512,1516,1520,1524,1528,1532,1536,1540,1544,1549],{"type":39,"tag":232,"props":1505,"children":1506},{"style":339},[1507],{"type":44,"value":326},{"type":39,"tag":232,"props":1509,"children":1510},{"style":262},[1511],{"type":44,"value":1176},{"type":39,"tag":232,"props":1513,"children":1514},{"style":262},[1515],{"type":44,"value":1434},{"type":39,"tag":232,"props":1517,"children":1518},{"style":251},[1519],{"type":44,"value":473},{"type":39,"tag":232,"props":1521,"children":1522},{"style":245},[1523],{"type":44,"value":478},{"type":39,"tag":232,"props":1525,"children":1526},{"style":251},[1527],{"type":44,"value":483},{"type":39,"tag":232,"props":1529,"children":1530},{"style":262},[1531],{"type":44,"value":1451},{"type":39,"tag":232,"props":1533,"children":1534},{"style":251},[1535],{"type":44,"value":259},{"type":39,"tag":232,"props":1537,"children":1538},{"style":262},[1539],{"type":44,"value":1206},{"type":39,"tag":232,"props":1541,"children":1542},{"style":251},[1543],{"type":44,"value":514},{"type":39,"tag":232,"props":1545,"children":1546},{"style":262},[1547],{"type":44,"value":1548},"{\"data\": {\"name\": \"Revised\", \"due_on\": \"2026-07-01\"}}",{"type":39,"tag":232,"props":1550,"children":1551},{"style":251},[1552],{"type":44,"value":524},{"type":39,"tag":40,"props":1554,"children":1555},{},[1556,1558,1564,1566,1572],{"type":44,"value":1557},"Delete: ",{"type":39,"tag":47,"props":1559,"children":1561},{"className":1560},[],[1562],{"type":44,"value":1563},"asana -X DELETE \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\"",{"type":44,"value":1565}," — returns an empty ",{"type":39,"tag":47,"props":1567,"children":1569},{"className":1568},[],[1570],{"type":44,"value":1571},"data: {}",{"type":44,"value":1573},"; the task\ngoes to the trash.",{"type":39,"tag":727,"props":1575,"children":1577},{"id":1576},"_5-comment-on-a-task-read-its-activity-stories",[1578],{"type":44,"value":1579},"5. Comment on a task \u002F read its activity (stories)",{"type":39,"tag":40,"props":1581,"children":1582},{},[1583],{"type":44,"value":1584},"Stories are a task's comments plus system activity. Only comment stories can be created.",{"type":39,"tag":221,"props":1586,"children":1588},{"className":223,"code":1587,"language":225,"meta":226,"style":226},"# add a comment\nasana -X POST \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\u002Fstories\" \\\n  -d '{\"data\": {\"text\": \"Reproduced on main.\"}}' | jq '.data | {gid, created_at}'\n\n# read comments only (filter out system activity client-side)\nasana \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\u002Fstories?opt_fields=resource_subtype,text,created_by.name,created_at\" \\\n  | jq '.data[] | select(.resource_subtype==\"comment_added\") | {by: .created_by.name, text, created_at}'\n",[1589],{"type":39,"tag":47,"props":1590,"children":1591},{"__ignoreMap":226},[1592,1600,1640,1682,1691,1699,1731],{"type":39,"tag":232,"props":1593,"children":1594},{"class":234,"line":235},[1595],{"type":39,"tag":232,"props":1596,"children":1597},{"style":272},[1598],{"type":44,"value":1599},"# add a comment\n",{"type":39,"tag":232,"props":1601,"children":1602},{"class":234,"line":278},[1603,1607,1611,1615,1619,1623,1627,1632,1636],{"type":39,"tag":232,"props":1604,"children":1605},{"style":339},[1606],{"type":44,"value":326},{"type":39,"tag":232,"props":1608,"children":1609},{"style":262},[1610],{"type":44,"value":1176},{"type":39,"tag":232,"props":1612,"children":1613},{"style":262},[1614],{"type":44,"value":1181},{"type":39,"tag":232,"props":1616,"children":1617},{"style":251},[1618],{"type":44,"value":473},{"type":39,"tag":232,"props":1620,"children":1621},{"style":245},[1622],{"type":44,"value":478},{"type":39,"tag":232,"props":1624,"children":1625},{"style":251},[1626],{"type":44,"value":483},{"type":39,"tag":232,"props":1628,"children":1629},{"style":262},[1630],{"type":44,"value":1631},"\u002Ftasks\u002FTASK_GID\u002Fstories",{"type":39,"tag":232,"props":1633,"children":1634},{"style":251},[1635],{"type":44,"value":259},{"type":39,"tag":232,"props":1637,"children":1638},{"style":245},[1639],{"type":44,"value":382},{"type":39,"tag":232,"props":1641,"children":1642},{"class":234,"line":527},[1643,1648,1652,1657,1661,1665,1669,1673,1678],{"type":39,"tag":232,"props":1644,"children":1645},{"style":262},[1646],{"type":44,"value":1647},"  -d",{"type":39,"tag":232,"props":1649,"children":1650},{"style":251},[1651],{"type":44,"value":514},{"type":39,"tag":232,"props":1653,"children":1654},{"style":262},[1655],{"type":44,"value":1656},"{\"data\": {\"text\": \"Reproduced on main.\"}}",{"type":39,"tag":232,"props":1658,"children":1659},{"style":251},[1660],{"type":44,"value":1307},{"type":39,"tag":232,"props":1662,"children":1663},{"style":251},[1664],{"type":44,"value":1312},{"type":39,"tag":232,"props":1666,"children":1667},{"style":339},[1668],{"type":44,"value":509},{"type":39,"tag":232,"props":1670,"children":1671},{"style":251},[1672],{"type":44,"value":514},{"type":39,"tag":232,"props":1674,"children":1675},{"style":262},[1676],{"type":44,"value":1677},".data | {gid, created_at}",{"type":39,"tag":232,"props":1679,"children":1680},{"style":251},[1681],{"type":44,"value":524},{"type":39,"tag":232,"props":1683,"children":1684},{"class":234,"line":1234},[1685],{"type":39,"tag":232,"props":1686,"children":1688},{"emptyLinePlaceholder":1687},true,[1689],{"type":44,"value":1690},"\n",{"type":39,"tag":232,"props":1692,"children":1693},{"class":234,"line":1243},[1694],{"type":39,"tag":232,"props":1695,"children":1696},{"style":272},[1697],{"type":44,"value":1698},"# read comments only (filter out system activity client-side)\n",{"type":39,"tag":232,"props":1700,"children":1701},{"class":234,"line":1252},[1702,1706,1710,1714,1718,1723,1727],{"type":39,"tag":232,"props":1703,"children":1704},{"style":339},[1705],{"type":44,"value":326},{"type":39,"tag":232,"props":1707,"children":1708},{"style":251},[1709],{"type":44,"value":473},{"type":39,"tag":232,"props":1711,"children":1712},{"style":245},[1713],{"type":44,"value":478},{"type":39,"tag":232,"props":1715,"children":1716},{"style":251},[1717],{"type":44,"value":483},{"type":39,"tag":232,"props":1719,"children":1720},{"style":262},[1721],{"type":44,"value":1722},"\u002Ftasks\u002FTASK_GID\u002Fstories?opt_fields=resource_subtype,text,created_by.name,created_at",{"type":39,"tag":232,"props":1724,"children":1725},{"style":251},[1726],{"type":44,"value":259},{"type":39,"tag":232,"props":1728,"children":1729},{"style":245},[1730],{"type":44,"value":382},{"type":39,"tag":232,"props":1732,"children":1733},{"class":234,"line":1261},[1734,1738,1742,1746,1751],{"type":39,"tag":232,"props":1735,"children":1736},{"style":251},[1737],{"type":44,"value":504},{"type":39,"tag":232,"props":1739,"children":1740},{"style":339},[1741],{"type":44,"value":509},{"type":39,"tag":232,"props":1743,"children":1744},{"style":251},[1745],{"type":44,"value":514},{"type":39,"tag":232,"props":1747,"children":1748},{"style":262},[1749],{"type":44,"value":1750},".data[] | select(.resource_subtype==\"comment_added\") | {by: .created_by.name, text, created_at}",{"type":39,"tag":232,"props":1752,"children":1753},{"style":251},[1754],{"type":44,"value":524},{"type":39,"tag":40,"props":1756,"children":1757},{},[1758,1760,1766,1768,1773],{"type":44,"value":1759},"Use ",{"type":39,"tag":47,"props":1761,"children":1763},{"className":1762},[],[1764],{"type":44,"value":1765},"html_text",{"type":44,"value":1767}," instead of ",{"type":39,"tag":47,"props":1769,"children":1771},{"className":1770},[],[1772],{"type":44,"value":44},{"type":44,"value":1774}," for a rich-text comment.",{"type":39,"tag":727,"props":1776,"children":1778},{"id":1777},"_6-search-tasks-in-a-workspace-premium",[1779],{"type":44,"value":1780},"6. Search tasks in a workspace (premium)",{"type":39,"tag":40,"props":1782,"children":1783},{},[1784,1786,1791,1793,1798,1800,1806,1808,1814],{"type":44,"value":1785},"Advanced search lives at the workspace and is ",{"type":39,"tag":56,"props":1787,"children":1788},{},[1789],{"type":44,"value":1790},"premium-only",{"type":44,"value":1792},". It does ",{"type":39,"tag":56,"props":1794,"children":1795},{},[1796],{"type":44,"value":1797},"not",{"type":44,"value":1799}," offset-paginate\n(results are unstable, capped at 100) — narrow with filters, or sort by ",{"type":39,"tag":47,"props":1801,"children":1803},{"className":1802},[],[1804],{"type":44,"value":1805},"created_at",{"type":44,"value":1807}," and page\nmanually with ",{"type":39,"tag":47,"props":1809,"children":1811},{"className":1810},[],[1812],{"type":44,"value":1813},"created_at.before",{"type":44,"value":1815},". For plain \"tasks in a project \u002F mine\", prefer the list script\n(recipe 1): it pages fully and works on free plans.",{"type":39,"tag":221,"props":1817,"children":1819},{"className":223,"code":1818,"language":225,"meta":226,"style":226},"asana -G \"${ASANA_BASE}\u002Fworkspaces\u002FWORKSPACE_GID\u002Ftasks\u002Fsearch\" \\\n  --data-urlencode \"text=launch\" \\\n  --data-urlencode \"assignee.any=me\" \\\n  --data-urlencode \"completed=false\" \\\n  --data-urlencode \"sort_by=modified_at\" \\\n  --data-urlencode \"opt_fields=name,assignee.name,due_on,permalink_url\" \\\n  | jq '.data[] | {gid, name, due_on}'\n",[1820],{"type":39,"tag":47,"props":1821,"children":1822},{"__ignoreMap":226},[1823,1860,1885,1909,1933,1957,1981],{"type":39,"tag":232,"props":1824,"children":1825},{"class":234,"line":235},[1826,1830,1835,1839,1843,1847,1852,1856],{"type":39,"tag":232,"props":1827,"children":1828},{"style":339},[1829],{"type":44,"value":326},{"type":39,"tag":232,"props":1831,"children":1832},{"style":262},[1833],{"type":44,"value":1834}," -G",{"type":39,"tag":232,"props":1836,"children":1837},{"style":251},[1838],{"type":44,"value":473},{"type":39,"tag":232,"props":1840,"children":1841},{"style":245},[1842],{"type":44,"value":478},{"type":39,"tag":232,"props":1844,"children":1845},{"style":251},[1846],{"type":44,"value":483},{"type":39,"tag":232,"props":1848,"children":1849},{"style":262},[1850],{"type":44,"value":1851},"\u002Fworkspaces\u002FWORKSPACE_GID\u002Ftasks\u002Fsearch",{"type":39,"tag":232,"props":1853,"children":1854},{"style":251},[1855],{"type":44,"value":259},{"type":39,"tag":232,"props":1857,"children":1858},{"style":245},[1859],{"type":44,"value":382},{"type":39,"tag":232,"props":1861,"children":1862},{"class":234,"line":278},[1863,1868,1872,1877,1881],{"type":39,"tag":232,"props":1864,"children":1865},{"style":262},[1866],{"type":44,"value":1867},"  --data-urlencode",{"type":39,"tag":232,"props":1869,"children":1870},{"style":251},[1871],{"type":44,"value":357},{"type":39,"tag":232,"props":1873,"children":1874},{"style":262},[1875],{"type":44,"value":1876},"text=launch",{"type":39,"tag":232,"props":1878,"children":1879},{"style":251},[1880],{"type":44,"value":259},{"type":39,"tag":232,"props":1882,"children":1883},{"style":245},[1884],{"type":44,"value":382},{"type":39,"tag":232,"props":1886,"children":1887},{"class":234,"line":527},[1888,1892,1896,1901,1905],{"type":39,"tag":232,"props":1889,"children":1890},{"style":262},[1891],{"type":44,"value":1867},{"type":39,"tag":232,"props":1893,"children":1894},{"style":251},[1895],{"type":44,"value":357},{"type":39,"tag":232,"props":1897,"children":1898},{"style":262},[1899],{"type":44,"value":1900},"assignee.any=me",{"type":39,"tag":232,"props":1902,"children":1903},{"style":251},[1904],{"type":44,"value":259},{"type":39,"tag":232,"props":1906,"children":1907},{"style":245},[1908],{"type":44,"value":382},{"type":39,"tag":232,"props":1910,"children":1911},{"class":234,"line":1234},[1912,1916,1920,1925,1929],{"type":39,"tag":232,"props":1913,"children":1914},{"style":262},[1915],{"type":44,"value":1867},{"type":39,"tag":232,"props":1917,"children":1918},{"style":251},[1919],{"type":44,"value":357},{"type":39,"tag":232,"props":1921,"children":1922},{"style":262},[1923],{"type":44,"value":1924},"completed=false",{"type":39,"tag":232,"props":1926,"children":1927},{"style":251},[1928],{"type":44,"value":259},{"type":39,"tag":232,"props":1930,"children":1931},{"style":245},[1932],{"type":44,"value":382},{"type":39,"tag":232,"props":1934,"children":1935},{"class":234,"line":1243},[1936,1940,1944,1949,1953],{"type":39,"tag":232,"props":1937,"children":1938},{"style":262},[1939],{"type":44,"value":1867},{"type":39,"tag":232,"props":1941,"children":1942},{"style":251},[1943],{"type":44,"value":357},{"type":39,"tag":232,"props":1945,"children":1946},{"style":262},[1947],{"type":44,"value":1948},"sort_by=modified_at",{"type":39,"tag":232,"props":1950,"children":1951},{"style":251},[1952],{"type":44,"value":259},{"type":39,"tag":232,"props":1954,"children":1955},{"style":245},[1956],{"type":44,"value":382},{"type":39,"tag":232,"props":1958,"children":1959},{"class":234,"line":1252},[1960,1964,1968,1973,1977],{"type":39,"tag":232,"props":1961,"children":1962},{"style":262},[1963],{"type":44,"value":1867},{"type":39,"tag":232,"props":1965,"children":1966},{"style":251},[1967],{"type":44,"value":357},{"type":39,"tag":232,"props":1969,"children":1970},{"style":262},[1971],{"type":44,"value":1972},"opt_fields=name,assignee.name,due_on,permalink_url",{"type":39,"tag":232,"props":1974,"children":1975},{"style":251},[1976],{"type":44,"value":259},{"type":39,"tag":232,"props":1978,"children":1979},{"style":245},[1980],{"type":44,"value":382},{"type":39,"tag":232,"props":1982,"children":1983},{"class":234,"line":1261},[1984,1988,1992,1996,2001],{"type":39,"tag":232,"props":1985,"children":1986},{"style":251},[1987],{"type":44,"value":504},{"type":39,"tag":232,"props":1989,"children":1990},{"style":339},[1991],{"type":44,"value":509},{"type":39,"tag":232,"props":1993,"children":1994},{"style":251},[1995],{"type":44,"value":514},{"type":39,"tag":232,"props":1997,"children":1998},{"style":262},[1999],{"type":44,"value":2000},".data[] | {gid, name, due_on}",{"type":39,"tag":232,"props":2002,"children":2003},{"style":251},[2004],{"type":44,"value":524},{"type":39,"tag":727,"props":2006,"children":2008},{"id":2007},"_7-projects-and-sections",[2009],{"type":44,"value":2010},"7. Projects and sections",{"type":39,"tag":221,"props":2012,"children":2014},{"className":223,"code":2013,"language":225,"meta":226,"style":226},"asana -G \"${ASANA_BASE}\u002Fprojects\" --data-urlencode \"workspace=WORKSPACE_GID\" \\\n  --data-urlencode \"archived=false\" --data-urlencode \"opt_fields=name,owner.name\" \\\n  | jq '.data[] | {gid, name}'\nasana \"${ASANA_BASE}\u002Fprojects\u002FPROJECT_GID?opt_fields=name,notes,owner.name,members.name\" | jq '.data'\nasana \"${ASANA_BASE}\u002Fprojects\u002FPROJECT_GID\u002Fsections?opt_fields=name\" | jq '.data[] | {gid, name}'\n",[2015],{"type":39,"tag":47,"props":2016,"children":2017},{"__ignoreMap":226},[2018,2072,2113,2137,2185],{"type":39,"tag":232,"props":2019,"children":2020},{"class":234,"line":235},[2021,2025,2029,2033,2037,2041,2046,2050,2055,2059,2064,2068],{"type":39,"tag":232,"props":2022,"children":2023},{"style":339},[2024],{"type":44,"value":326},{"type":39,"tag":232,"props":2026,"children":2027},{"style":262},[2028],{"type":44,"value":1834},{"type":39,"tag":232,"props":2030,"children":2031},{"style":251},[2032],{"type":44,"value":473},{"type":39,"tag":232,"props":2034,"children":2035},{"style":245},[2036],{"type":44,"value":478},{"type":39,"tag":232,"props":2038,"children":2039},{"style":251},[2040],{"type":44,"value":483},{"type":39,"tag":232,"props":2042,"children":2043},{"style":262},[2044],{"type":44,"value":2045},"\u002Fprojects",{"type":39,"tag":232,"props":2047,"children":2048},{"style":251},[2049],{"type":44,"value":259},{"type":39,"tag":232,"props":2051,"children":2052},{"style":262},[2053],{"type":44,"value":2054}," --data-urlencode",{"type":39,"tag":232,"props":2056,"children":2057},{"style":251},[2058],{"type":44,"value":357},{"type":39,"tag":232,"props":2060,"children":2061},{"style":262},[2062],{"type":44,"value":2063},"workspace=WORKSPACE_GID",{"type":39,"tag":232,"props":2065,"children":2066},{"style":251},[2067],{"type":44,"value":259},{"type":39,"tag":232,"props":2069,"children":2070},{"style":245},[2071],{"type":44,"value":382},{"type":39,"tag":232,"props":2073,"children":2074},{"class":234,"line":278},[2075,2079,2083,2088,2092,2096,2100,2105,2109],{"type":39,"tag":232,"props":2076,"children":2077},{"style":262},[2078],{"type":44,"value":1867},{"type":39,"tag":232,"props":2080,"children":2081},{"style":251},[2082],{"type":44,"value":357},{"type":39,"tag":232,"props":2084,"children":2085},{"style":262},[2086],{"type":44,"value":2087},"archived=false",{"type":39,"tag":232,"props":2089,"children":2090},{"style":251},[2091],{"type":44,"value":259},{"type":39,"tag":232,"props":2093,"children":2094},{"style":262},[2095],{"type":44,"value":2054},{"type":39,"tag":232,"props":2097,"children":2098},{"style":251},[2099],{"type":44,"value":357},{"type":39,"tag":232,"props":2101,"children":2102},{"style":262},[2103],{"type":44,"value":2104},"opt_fields=name,owner.name",{"type":39,"tag":232,"props":2106,"children":2107},{"style":251},[2108],{"type":44,"value":259},{"type":39,"tag":232,"props":2110,"children":2111},{"style":245},[2112],{"type":44,"value":382},{"type":39,"tag":232,"props":2114,"children":2115},{"class":234,"line":527},[2116,2120,2124,2128,2133],{"type":39,"tag":232,"props":2117,"children":2118},{"style":251},[2119],{"type":44,"value":504},{"type":39,"tag":232,"props":2121,"children":2122},{"style":339},[2123],{"type":44,"value":509},{"type":39,"tag":232,"props":2125,"children":2126},{"style":251},[2127],{"type":44,"value":514},{"type":39,"tag":232,"props":2129,"children":2130},{"style":262},[2131],{"type":44,"value":2132},".data[] | {gid, name}",{"type":39,"tag":232,"props":2134,"children":2135},{"style":251},[2136],{"type":44,"value":524},{"type":39,"tag":232,"props":2138,"children":2139},{"class":234,"line":1234},[2140,2144,2148,2152,2156,2161,2165,2169,2173,2177,2181],{"type":39,"tag":232,"props":2141,"children":2142},{"style":339},[2143],{"type":44,"value":326},{"type":39,"tag":232,"props":2145,"children":2146},{"style":251},[2147],{"type":44,"value":473},{"type":39,"tag":232,"props":2149,"children":2150},{"style":245},[2151],{"type":44,"value":478},{"type":39,"tag":232,"props":2153,"children":2154},{"style":251},[2155],{"type":44,"value":483},{"type":39,"tag":232,"props":2157,"children":2158},{"style":262},[2159],{"type":44,"value":2160},"\u002Fprojects\u002FPROJECT_GID?opt_fields=name,notes,owner.name,members.name",{"type":39,"tag":232,"props":2162,"children":2163},{"style":251},[2164],{"type":44,"value":259},{"type":39,"tag":232,"props":2166,"children":2167},{"style":251},[2168],{"type":44,"value":1312},{"type":39,"tag":232,"props":2170,"children":2171},{"style":339},[2172],{"type":44,"value":509},{"type":39,"tag":232,"props":2174,"children":2175},{"style":251},[2176],{"type":44,"value":514},{"type":39,"tag":232,"props":2178,"children":2179},{"style":262},[2180],{"type":44,"value":610},{"type":39,"tag":232,"props":2182,"children":2183},{"style":251},[2184],{"type":44,"value":524},{"type":39,"tag":232,"props":2186,"children":2187},{"class":234,"line":1243},[2188,2192,2196,2200,2204,2209,2213,2217,2221,2225,2229],{"type":39,"tag":232,"props":2189,"children":2190},{"style":339},[2191],{"type":44,"value":326},{"type":39,"tag":232,"props":2193,"children":2194},{"style":251},[2195],{"type":44,"value":473},{"type":39,"tag":232,"props":2197,"children":2198},{"style":245},[2199],{"type":44,"value":478},{"type":39,"tag":232,"props":2201,"children":2202},{"style":251},[2203],{"type":44,"value":483},{"type":39,"tag":232,"props":2205,"children":2206},{"style":262},[2207],{"type":44,"value":2208},"\u002Fprojects\u002FPROJECT_GID\u002Fsections?opt_fields=name",{"type":39,"tag":232,"props":2210,"children":2211},{"style":251},[2212],{"type":44,"value":259},{"type":39,"tag":232,"props":2214,"children":2215},{"style":251},[2216],{"type":44,"value":1312},{"type":39,"tag":232,"props":2218,"children":2219},{"style":339},[2220],{"type":44,"value":509},{"type":39,"tag":232,"props":2222,"children":2223},{"style":251},[2224],{"type":44,"value":514},{"type":39,"tag":232,"props":2226,"children":2227},{"style":262},[2228],{"type":44,"value":2132},{"type":39,"tag":232,"props":2230,"children":2231},{"style":251},[2232],{"type":44,"value":524},{"type":39,"tag":727,"props":2234,"children":2236},{"id":2235},"_8-move-a-task-between-projects-and-sections",[2237],{"type":44,"value":2238},"8. Move a task between projects and sections",{"type":39,"tag":40,"props":2240,"children":2241},{},[2242,2244,2249,2251,2256],{"type":44,"value":2243},"A task belongs to projects via ",{"type":39,"tag":132,"props":2245,"children":2246},{},[2247],{"type":44,"value":2248},"memberships",{"type":44,"value":2250},". Dedicated POSTs add, remove, or place it in a section.\nEach returns an empty ",{"type":39,"tag":47,"props":2252,"children":2254},{"className":2253},[],[2255],{"type":44,"value":1571},{"type":44,"value":2257}," on success.",{"type":39,"tag":221,"props":2259,"children":2261},{"className":223,"code":2260,"language":225,"meta":226,"style":226},"asana -X POST \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\u002FaddProject\" \\\n  -d '{\"data\": {\"project\": \"PROJECT_GID\", \"section\": \"SECTION_GID\"}}'\nasana -X POST \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\u002FremoveProject\" -d '{\"data\": {\"project\": \"PROJECT_GID\"}}'\nasana -X POST \"${ASANA_BASE}\u002Fsections\u002FSECTION_GID\u002FaddTask\" -d '{\"data\": {\"task\": \"TASK_GID\"}}'\n",[2262],{"type":39,"tag":47,"props":2263,"children":2264},{"__ignoreMap":226},[2265,2305,2325,2378],{"type":39,"tag":232,"props":2266,"children":2267},{"class":234,"line":235},[2268,2272,2276,2280,2284,2288,2292,2297,2301],{"type":39,"tag":232,"props":2269,"children":2270},{"style":339},[2271],{"type":44,"value":326},{"type":39,"tag":232,"props":2273,"children":2274},{"style":262},[2275],{"type":44,"value":1176},{"type":39,"tag":232,"props":2277,"children":2278},{"style":262},[2279],{"type":44,"value":1181},{"type":39,"tag":232,"props":2281,"children":2282},{"style":251},[2283],{"type":44,"value":473},{"type":39,"tag":232,"props":2285,"children":2286},{"style":245},[2287],{"type":44,"value":478},{"type":39,"tag":232,"props":2289,"children":2290},{"style":251},[2291],{"type":44,"value":483},{"type":39,"tag":232,"props":2293,"children":2294},{"style":262},[2295],{"type":44,"value":2296},"\u002Ftasks\u002FTASK_GID\u002FaddProject",{"type":39,"tag":232,"props":2298,"children":2299},{"style":251},[2300],{"type":44,"value":259},{"type":39,"tag":232,"props":2302,"children":2303},{"style":245},[2304],{"type":44,"value":382},{"type":39,"tag":232,"props":2306,"children":2307},{"class":234,"line":278},[2308,2312,2316,2321],{"type":39,"tag":232,"props":2309,"children":2310},{"style":262},[2311],{"type":44,"value":1647},{"type":39,"tag":232,"props":2313,"children":2314},{"style":251},[2315],{"type":44,"value":514},{"type":39,"tag":232,"props":2317,"children":2318},{"style":262},[2319],{"type":44,"value":2320},"{\"data\": {\"project\": \"PROJECT_GID\", \"section\": \"SECTION_GID\"}}",{"type":39,"tag":232,"props":2322,"children":2323},{"style":251},[2324],{"type":44,"value":524},{"type":39,"tag":232,"props":2326,"children":2327},{"class":234,"line":527},[2328,2332,2336,2340,2344,2348,2352,2357,2361,2365,2369,2374],{"type":39,"tag":232,"props":2329,"children":2330},{"style":339},[2331],{"type":44,"value":326},{"type":39,"tag":232,"props":2333,"children":2334},{"style":262},[2335],{"type":44,"value":1176},{"type":39,"tag":232,"props":2337,"children":2338},{"style":262},[2339],{"type":44,"value":1181},{"type":39,"tag":232,"props":2341,"children":2342},{"style":251},[2343],{"type":44,"value":473},{"type":39,"tag":232,"props":2345,"children":2346},{"style":245},[2347],{"type":44,"value":478},{"type":39,"tag":232,"props":2349,"children":2350},{"style":251},[2351],{"type":44,"value":483},{"type":39,"tag":232,"props":2353,"children":2354},{"style":262},[2355],{"type":44,"value":2356},"\u002Ftasks\u002FTASK_GID\u002FremoveProject",{"type":39,"tag":232,"props":2358,"children":2359},{"style":251},[2360],{"type":44,"value":259},{"type":39,"tag":232,"props":2362,"children":2363},{"style":262},[2364],{"type":44,"value":1206},{"type":39,"tag":232,"props":2366,"children":2367},{"style":251},[2368],{"type":44,"value":514},{"type":39,"tag":232,"props":2370,"children":2371},{"style":262},[2372],{"type":44,"value":2373},"{\"data\": {\"project\": \"PROJECT_GID\"}}",{"type":39,"tag":232,"props":2375,"children":2376},{"style":251},[2377],{"type":44,"value":524},{"type":39,"tag":232,"props":2379,"children":2380},{"class":234,"line":1234},[2381,2385,2389,2393,2397,2401,2405,2410,2414,2418,2422,2427],{"type":39,"tag":232,"props":2382,"children":2383},{"style":339},[2384],{"type":44,"value":326},{"type":39,"tag":232,"props":2386,"children":2387},{"style":262},[2388],{"type":44,"value":1176},{"type":39,"tag":232,"props":2390,"children":2391},{"style":262},[2392],{"type":44,"value":1181},{"type":39,"tag":232,"props":2394,"children":2395},{"style":251},[2396],{"type":44,"value":473},{"type":39,"tag":232,"props":2398,"children":2399},{"style":245},[2400],{"type":44,"value":478},{"type":39,"tag":232,"props":2402,"children":2403},{"style":251},[2404],{"type":44,"value":483},{"type":39,"tag":232,"props":2406,"children":2407},{"style":262},[2408],{"type":44,"value":2409},"\u002Fsections\u002FSECTION_GID\u002FaddTask",{"type":39,"tag":232,"props":2411,"children":2412},{"style":251},[2413],{"type":44,"value":259},{"type":39,"tag":232,"props":2415,"children":2416},{"style":262},[2417],{"type":44,"value":1206},{"type":39,"tag":232,"props":2419,"children":2420},{"style":251},[2421],{"type":44,"value":514},{"type":39,"tag":232,"props":2423,"children":2424},{"style":262},[2425],{"type":44,"value":2426},"{\"data\": {\"task\": \"TASK_GID\"}}",{"type":39,"tag":232,"props":2428,"children":2429},{"style":251},[2430],{"type":44,"value":524},{"type":39,"tag":727,"props":2432,"children":2434},{"id":2433},"_9-find-workspaces-users-and-projects-gid-lookup",[2435],{"type":44,"value":2436},"9. Find workspaces, users, and projects (gid lookup)",{"type":39,"tag":40,"props":2438,"children":2439},{},[2440,2442,2447],{"type":44,"value":2441},"Everything is referenced by ",{"type":39,"tag":47,"props":2443,"children":2445},{"className":2444},[],[2446],{"type":44,"value":64},{"type":44,"value":2448}," — resolve names to gids here.",{"type":39,"tag":221,"props":2450,"children":2452},{"className":223,"code":2451,"language":225,"meta":226,"style":226},"asana \"${ASANA_BASE}\u002Fworkspaces?opt_fields=name,is_organization\" | jq '.data[] | {gid, name}'\nasana -G \"${ASANA_BASE}\u002Fusers\" --data-urlencode \"workspace=WORKSPACE_GID\" \\\n  --data-urlencode \"opt_fields=name,email\" | jq '.data[] | {gid, name, email}'\nasana \"${ASANA_BASE}\u002Fusers\u002Fme?opt_fields=name,email,workspaces.name\" | jq '.data'\n",[2453],{"type":39,"tag":47,"props":2454,"children":2455},{"__ignoreMap":226},[2456,2504,2556,2597],{"type":39,"tag":232,"props":2457,"children":2458},{"class":234,"line":235},[2459,2463,2467,2471,2475,2480,2484,2488,2492,2496,2500],{"type":39,"tag":232,"props":2460,"children":2461},{"style":339},[2462],{"type":44,"value":326},{"type":39,"tag":232,"props":2464,"children":2465},{"style":251},[2466],{"type":44,"value":473},{"type":39,"tag":232,"props":2468,"children":2469},{"style":245},[2470],{"type":44,"value":478},{"type":39,"tag":232,"props":2472,"children":2473},{"style":251},[2474],{"type":44,"value":483},{"type":39,"tag":232,"props":2476,"children":2477},{"style":262},[2478],{"type":44,"value":2479},"\u002Fworkspaces?opt_fields=name,is_organization",{"type":39,"tag":232,"props":2481,"children":2482},{"style":251},[2483],{"type":44,"value":259},{"type":39,"tag":232,"props":2485,"children":2486},{"style":251},[2487],{"type":44,"value":1312},{"type":39,"tag":232,"props":2489,"children":2490},{"style":339},[2491],{"type":44,"value":509},{"type":39,"tag":232,"props":2493,"children":2494},{"style":251},[2495],{"type":44,"value":514},{"type":39,"tag":232,"props":2497,"children":2498},{"style":262},[2499],{"type":44,"value":2132},{"type":39,"tag":232,"props":2501,"children":2502},{"style":251},[2503],{"type":44,"value":524},{"type":39,"tag":232,"props":2505,"children":2506},{"class":234,"line":278},[2507,2511,2515,2519,2523,2527,2532,2536,2540,2544,2548,2552],{"type":39,"tag":232,"props":2508,"children":2509},{"style":339},[2510],{"type":44,"value":326},{"type":39,"tag":232,"props":2512,"children":2513},{"style":262},[2514],{"type":44,"value":1834},{"type":39,"tag":232,"props":2516,"children":2517},{"style":251},[2518],{"type":44,"value":473},{"type":39,"tag":232,"props":2520,"children":2521},{"style":245},[2522],{"type":44,"value":478},{"type":39,"tag":232,"props":2524,"children":2525},{"style":251},[2526],{"type":44,"value":483},{"type":39,"tag":232,"props":2528,"children":2529},{"style":262},[2530],{"type":44,"value":2531},"\u002Fusers",{"type":39,"tag":232,"props":2533,"children":2534},{"style":251},[2535],{"type":44,"value":259},{"type":39,"tag":232,"props":2537,"children":2538},{"style":262},[2539],{"type":44,"value":2054},{"type":39,"tag":232,"props":2541,"children":2542},{"style":251},[2543],{"type":44,"value":357},{"type":39,"tag":232,"props":2545,"children":2546},{"style":262},[2547],{"type":44,"value":2063},{"type":39,"tag":232,"props":2549,"children":2550},{"style":251},[2551],{"type":44,"value":259},{"type":39,"tag":232,"props":2553,"children":2554},{"style":245},[2555],{"type":44,"value":382},{"type":39,"tag":232,"props":2557,"children":2558},{"class":234,"line":527},[2559,2563,2567,2572,2576,2580,2584,2588,2593],{"type":39,"tag":232,"props":2560,"children":2561},{"style":262},[2562],{"type":44,"value":1867},{"type":39,"tag":232,"props":2564,"children":2565},{"style":251},[2566],{"type":44,"value":357},{"type":39,"tag":232,"props":2568,"children":2569},{"style":262},[2570],{"type":44,"value":2571},"opt_fields=name,email",{"type":39,"tag":232,"props":2573,"children":2574},{"style":251},[2575],{"type":44,"value":259},{"type":39,"tag":232,"props":2577,"children":2578},{"style":251},[2579],{"type":44,"value":1312},{"type":39,"tag":232,"props":2581,"children":2582},{"style":339},[2583],{"type":44,"value":509},{"type":39,"tag":232,"props":2585,"children":2586},{"style":251},[2587],{"type":44,"value":514},{"type":39,"tag":232,"props":2589,"children":2590},{"style":262},[2591],{"type":44,"value":2592},".data[] | {gid, name, email}",{"type":39,"tag":232,"props":2594,"children":2595},{"style":251},[2596],{"type":44,"value":524},{"type":39,"tag":232,"props":2598,"children":2599},{"class":234,"line":1234},[2600,2604,2608,2612,2616,2620,2624,2628,2632,2636,2640],{"type":39,"tag":232,"props":2601,"children":2602},{"style":339},[2603],{"type":44,"value":326},{"type":39,"tag":232,"props":2605,"children":2606},{"style":251},[2607],{"type":44,"value":473},{"type":39,"tag":232,"props":2609,"children":2610},{"style":245},[2611],{"type":44,"value":478},{"type":39,"tag":232,"props":2613,"children":2614},{"style":251},[2615],{"type":44,"value":483},{"type":39,"tag":232,"props":2617,"children":2618},{"style":262},[2619],{"type":44,"value":488},{"type":39,"tag":232,"props":2621,"children":2622},{"style":251},[2623],{"type":44,"value":259},{"type":39,"tag":232,"props":2625,"children":2626},{"style":251},[2627],{"type":44,"value":1312},{"type":39,"tag":232,"props":2629,"children":2630},{"style":339},[2631],{"type":44,"value":509},{"type":39,"tag":232,"props":2633,"children":2634},{"style":251},[2635],{"type":44,"value":514},{"type":39,"tag":232,"props":2637,"children":2638},{"style":262},[2639],{"type":44,"value":610},{"type":39,"tag":232,"props":2641,"children":2642},{"style":251},[2643],{"type":44,"value":524},{"type":39,"tag":727,"props":2645,"children":2647},{"id":2646},"_10-subtasks-tags-and-attachments",[2648],{"type":44,"value":2649},"10. Subtasks, tags, and attachments",{"type":39,"tag":221,"props":2651,"children":2653},{"className":223,"code":2652,"language":225,"meta":226,"style":226},"asana \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\u002Fsubtasks?opt_fields=name,completed\" | jq '.data[] | {gid, name}'\nasana -X POST \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\u002Fsubtasks\" -d '{\"data\": {\"name\": \"A subtask\"}}' | jq '.data.gid'\nasana \"${ASANA_BASE}\u002Fworkspaces\u002FWORKSPACE_GID\u002Ftags?opt_fields=name\" | jq '.data[] | {gid, name}'\nasana -X POST \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\u002FaddTag\" -d '{\"data\": {\"tag\": \"TAG_GID\"}}'\nasana \"${ASANA_BASE}\u002Ftasks\u002FTASK_GID\u002Fattachments?opt_fields=name,download_url\" | jq '.data[] | {gid, name}'\n",[2654],{"type":39,"tag":47,"props":2655,"children":2656},{"__ignoreMap":226},[2657,2705,2779,2827,2880],{"type":39,"tag":232,"props":2658,"children":2659},{"class":234,"line":235},[2660,2664,2668,2672,2676,2681,2685,2689,2693,2697,2701],{"type":39,"tag":232,"props":2661,"children":2662},{"style":339},[2663],{"type":44,"value":326},{"type":39,"tag":232,"props":2665,"children":2666},{"style":251},[2667],{"type":44,"value":473},{"type":39,"tag":232,"props":2669,"children":2670},{"style":245},[2671],{"type":44,"value":478},{"type":39,"tag":232,"props":2673,"children":2674},{"style":251},[2675],{"type":44,"value":483},{"type":39,"tag":232,"props":2677,"children":2678},{"style":262},[2679],{"type":44,"value":2680},"\u002Ftasks\u002FTASK_GID\u002Fsubtasks?opt_fields=name,completed",{"type":39,"tag":232,"props":2682,"children":2683},{"style":251},[2684],{"type":44,"value":259},{"type":39,"tag":232,"props":2686,"children":2687},{"style":251},[2688],{"type":44,"value":1312},{"type":39,"tag":232,"props":2690,"children":2691},{"style":339},[2692],{"type":44,"value":509},{"type":39,"tag":232,"props":2694,"children":2695},{"style":251},[2696],{"type":44,"value":514},{"type":39,"tag":232,"props":2698,"children":2699},{"style":262},[2700],{"type":44,"value":2132},{"type":39,"tag":232,"props":2702,"children":2703},{"style":251},[2704],{"type":44,"value":524},{"type":39,"tag":232,"props":2706,"children":2707},{"class":234,"line":278},[2708,2712,2716,2720,2724,2728,2732,2737,2741,2745,2749,2754,2758,2762,2766,2770,2775],{"type":39,"tag":232,"props":2709,"children":2710},{"style":339},[2711],{"type":44,"value":326},{"type":39,"tag":232,"props":2713,"children":2714},{"style":262},[2715],{"type":44,"value":1176},{"type":39,"tag":232,"props":2717,"children":2718},{"style":262},[2719],{"type":44,"value":1181},{"type":39,"tag":232,"props":2721,"children":2722},{"style":251},[2723],{"type":44,"value":473},{"type":39,"tag":232,"props":2725,"children":2726},{"style":245},[2727],{"type":44,"value":478},{"type":39,"tag":232,"props":2729,"children":2730},{"style":251},[2731],{"type":44,"value":483},{"type":39,"tag":232,"props":2733,"children":2734},{"style":262},[2735],{"type":44,"value":2736},"\u002Ftasks\u002FTASK_GID\u002Fsubtasks",{"type":39,"tag":232,"props":2738,"children":2739},{"style":251},[2740],{"type":44,"value":259},{"type":39,"tag":232,"props":2742,"children":2743},{"style":262},[2744],{"type":44,"value":1206},{"type":39,"tag":232,"props":2746,"children":2747},{"style":251},[2748],{"type":44,"value":514},{"type":39,"tag":232,"props":2750,"children":2751},{"style":262},[2752],{"type":44,"value":2753},"{\"data\": {\"name\": \"A subtask\"}}",{"type":39,"tag":232,"props":2755,"children":2756},{"style":251},[2757],{"type":44,"value":1307},{"type":39,"tag":232,"props":2759,"children":2760},{"style":251},[2761],{"type":44,"value":1312},{"type":39,"tag":232,"props":2763,"children":2764},{"style":339},[2765],{"type":44,"value":509},{"type":39,"tag":232,"props":2767,"children":2768},{"style":251},[2769],{"type":44,"value":514},{"type":39,"tag":232,"props":2771,"children":2772},{"style":262},[2773],{"type":44,"value":2774},".data.gid",{"type":39,"tag":232,"props":2776,"children":2777},{"style":251},[2778],{"type":44,"value":524},{"type":39,"tag":232,"props":2780,"children":2781},{"class":234,"line":527},[2782,2786,2790,2794,2798,2803,2807,2811,2815,2819,2823],{"type":39,"tag":232,"props":2783,"children":2784},{"style":339},[2785],{"type":44,"value":326},{"type":39,"tag":232,"props":2787,"children":2788},{"style":251},[2789],{"type":44,"value":473},{"type":39,"tag":232,"props":2791,"children":2792},{"style":245},[2793],{"type":44,"value":478},{"type":39,"tag":232,"props":2795,"children":2796},{"style":251},[2797],{"type":44,"value":483},{"type":39,"tag":232,"props":2799,"children":2800},{"style":262},[2801],{"type":44,"value":2802},"\u002Fworkspaces\u002FWORKSPACE_GID\u002Ftags?opt_fields=name",{"type":39,"tag":232,"props":2804,"children":2805},{"style":251},[2806],{"type":44,"value":259},{"type":39,"tag":232,"props":2808,"children":2809},{"style":251},[2810],{"type":44,"value":1312},{"type":39,"tag":232,"props":2812,"children":2813},{"style":339},[2814],{"type":44,"value":509},{"type":39,"tag":232,"props":2816,"children":2817},{"style":251},[2818],{"type":44,"value":514},{"type":39,"tag":232,"props":2820,"children":2821},{"style":262},[2822],{"type":44,"value":2132},{"type":39,"tag":232,"props":2824,"children":2825},{"style":251},[2826],{"type":44,"value":524},{"type":39,"tag":232,"props":2828,"children":2829},{"class":234,"line":1234},[2830,2834,2838,2842,2846,2850,2854,2859,2863,2867,2871,2876],{"type":39,"tag":232,"props":2831,"children":2832},{"style":339},[2833],{"type":44,"value":326},{"type":39,"tag":232,"props":2835,"children":2836},{"style":262},[2837],{"type":44,"value":1176},{"type":39,"tag":232,"props":2839,"children":2840},{"style":262},[2841],{"type":44,"value":1181},{"type":39,"tag":232,"props":2843,"children":2844},{"style":251},[2845],{"type":44,"value":473},{"type":39,"tag":232,"props":2847,"children":2848},{"style":245},[2849],{"type":44,"value":478},{"type":39,"tag":232,"props":2851,"children":2852},{"style":251},[2853],{"type":44,"value":483},{"type":39,"tag":232,"props":2855,"children":2856},{"style":262},[2857],{"type":44,"value":2858},"\u002Ftasks\u002FTASK_GID\u002FaddTag",{"type":39,"tag":232,"props":2860,"children":2861},{"style":251},[2862],{"type":44,"value":259},{"type":39,"tag":232,"props":2864,"children":2865},{"style":262},[2866],{"type":44,"value":1206},{"type":39,"tag":232,"props":2868,"children":2869},{"style":251},[2870],{"type":44,"value":514},{"type":39,"tag":232,"props":2872,"children":2873},{"style":262},[2874],{"type":44,"value":2875},"{\"data\": {\"tag\": \"TAG_GID\"}}",{"type":39,"tag":232,"props":2877,"children":2878},{"style":251},[2879],{"type":44,"value":524},{"type":39,"tag":232,"props":2881,"children":2882},{"class":234,"line":1243},[2883,2887,2891,2895,2899,2904,2908,2912,2916,2920,2924],{"type":39,"tag":232,"props":2884,"children":2885},{"style":339},[2886],{"type":44,"value":326},{"type":39,"tag":232,"props":2888,"children":2889},{"style":251},[2890],{"type":44,"value":473},{"type":39,"tag":232,"props":2892,"children":2893},{"style":245},[2894],{"type":44,"value":478},{"type":39,"tag":232,"props":2896,"children":2897},{"style":251},[2898],{"type":44,"value":483},{"type":39,"tag":232,"props":2900,"children":2901},{"style":262},[2902],{"type":44,"value":2903},"\u002Ftasks\u002FTASK_GID\u002Fattachments?opt_fields=name,download_url",{"type":39,"tag":232,"props":2905,"children":2906},{"style":251},[2907],{"type":44,"value":259},{"type":39,"tag":232,"props":2909,"children":2910},{"style":251},[2911],{"type":44,"value":1312},{"type":39,"tag":232,"props":2913,"children":2914},{"style":339},[2915],{"type":44,"value":509},{"type":39,"tag":232,"props":2917,"children":2918},{"style":251},[2919],{"type":44,"value":514},{"type":39,"tag":232,"props":2921,"children":2922},{"style":262},[2923],{"type":44,"value":2132},{"type":39,"tag":232,"props":2925,"children":2926},{"style":251},[2927],{"type":44,"value":524},{"type":39,"tag":40,"props":2929,"children":2930},{},[2931,2933,2938,2940,2946],{"type":44,"value":2932},"Upload an attachment with multipart form data (not JSON) — see ",{"type":39,"tag":47,"props":2934,"children":2936},{"className":2935},[],[2937],{"type":44,"value":1030},{"type":44,"value":2939},", section\nAttachments. Set a custom field in a task PUT with\n",{"type":39,"tag":47,"props":2941,"children":2943},{"className":2942},[],[2944],{"type":44,"value":2945},"{\"data\": {\"custom_fields\": {\"FIELD_GID\": value}}}",{"type":44,"value":118},{"type":39,"tag":188,"props":2948,"children":2950},{"id":2949},"pagination",[2951],{"type":44,"value":2952},"Pagination",{"type":39,"tag":546,"props":2954,"children":2955},{},[2956,3060,3100],{"type":39,"tag":550,"props":2957,"children":2958},{},[2959,2964,2966,2971,2972,2977,2978,2983,2984,2990,2992,2998,3000,3006,3008,3014,3016,3021,3023,3029,3031,3036,3038,3044,3046,3051,3053,3058],{"type":39,"tag":56,"props":2960,"children":2961},{},[2962],{"type":44,"value":2963},"Offset token.",{"type":44,"value":2965}," Collection GETs (",{"type":39,"tag":47,"props":2967,"children":2969},{"className":2968},[],[2970],{"type":44,"value":751},{"type":44,"value":95},{"type":39,"tag":47,"props":2973,"children":2975},{"className":2974},[],[2976],{"type":44,"value":2045},{"type":44,"value":95},{"type":39,"tag":47,"props":2979,"children":2981},{"className":2980},[],[2982],{"type":44,"value":2531},{"type":44,"value":95},{"type":39,"tag":47,"props":2985,"children":2987},{"className":2986},[],[2988],{"type":44,"value":2989},"\u002Fstories",{"type":44,"value":2991},", ...) take ",{"type":39,"tag":47,"props":2993,"children":2995},{"className":2994},[],[2996],{"type":44,"value":2997},"limit",{"type":44,"value":2999},"\n(1-100) and return a ",{"type":39,"tag":47,"props":3001,"children":3003},{"className":3002},[],[3004],{"type":44,"value":3005},"next_page",{"type":44,"value":3007}," object when more remain: ",{"type":39,"tag":47,"props":3009,"children":3011},{"className":3010},[],[3012],{"type":44,"value":3013},"{\"offset\": \"...\", \"path\": \"...\", \"uri\": \"...\"}",{"type":44,"value":3015},". Pass ",{"type":39,"tag":47,"props":3017,"children":3019},{"className":3018},[],[3020],{"type":44,"value":766},{"type":44,"value":3022}," back as ",{"type":39,"tag":47,"props":3024,"children":3026},{"className":3025},[],[3027],{"type":44,"value":3028},"?offset=...",{"type":44,"value":3030},"; stop when ",{"type":39,"tag":47,"props":3032,"children":3034},{"className":3033},[],[3035],{"type":44,"value":3005},{"type":44,"value":3037}," is ",{"type":39,"tag":47,"props":3039,"children":3041},{"className":3040},[],[3042],{"type":44,"value":3043},"null",{"type":44,"value":3045},".\nThe offset is ",{"type":39,"tag":56,"props":3047,"children":3048},{},[3049],{"type":44,"value":3050},"opaque",{"type":44,"value":3052}," and expires — only reuse one the API handed you, never construct it.\n",{"type":39,"tag":47,"props":3054,"children":3056},{"className":3055},[],[3057],{"type":44,"value":738},{"type":44,"value":3059}," does this for tasks.",{"type":39,"tag":550,"props":3061,"children":3062},{},[3063,3068,3070,3076,3078,3084,3086,3091,3093,3098],{"type":39,"tag":56,"props":3064,"children":3065},{},[3066],{"type":44,"value":3067},"No offset on search.",{"type":44,"value":3069}," ",{"type":39,"tag":47,"props":3071,"children":3073},{"className":3072},[],[3074],{"type":44,"value":3075},"\u002Fworkspaces\u002F{gid}\u002Ftasks\u002Fsearch",{"type":44,"value":3077}," ignores ",{"type":39,"tag":47,"props":3079,"children":3081},{"className":3080},[],[3082],{"type":44,"value":3083},"offset",{"type":44,"value":3085}," and caps at 100\nunstable-ordered results — sort by ",{"type":39,"tag":47,"props":3087,"children":3089},{"className":3088},[],[3090],{"type":44,"value":1805},{"type":44,"value":3092}," and page with ",{"type":39,"tag":47,"props":3094,"children":3096},{"className":3095},[],[3097],{"type":44,"value":1813},{"type":44,"value":3099}," (recipe 6).",{"type":39,"tag":550,"props":3101,"children":3102},{},[3103,3105,3111],{"type":44,"value":3104},"Very large result sets (tens of thousands) can return ",{"type":39,"tag":47,"props":3106,"children":3108},{"className":3107},[],[3109],{"type":44,"value":3110},"400",{"type":44,"value":3112}," with a truncation message — narrow the\nquery rather than retrying.",{"type":39,"tag":188,"props":3114,"children":3116},{"id":3115},"rate-limits",[3117],{"type":44,"value":3118},"Rate limits",{"type":39,"tag":40,"props":3120,"children":3121},{},[3122],{"type":44,"value":3123},"Limits are per workspace + token, per minute:",{"type":39,"tag":546,"props":3125,"children":3126},{},[3127,3150,3169],{"type":39,"tag":550,"props":3128,"children":3129},{},[3130,3135,3137,3142,3144,3149],{"type":39,"tag":56,"props":3131,"children":3132},{},[3133],{"type":44,"value":3134},"150 requests\u002Fmin",{"type":44,"value":3136}," on free plans, ",{"type":39,"tag":56,"props":3138,"children":3139},{},[3140],{"type":44,"value":3141},"1500\u002Fmin",{"type":44,"value":3143}," on paid. Search is ",{"type":39,"tag":56,"props":3145,"children":3146},{},[3147],{"type":44,"value":3148},"60\u002Fmin",{"type":44,"value":118},{"type":39,"tag":550,"props":3151,"children":3152},{},[3153,3155,3160,3162,3167],{"type":44,"value":3154},"Concurrency: ",{"type":39,"tag":56,"props":3156,"children":3157},{},[3158],{"type":44,"value":3159},"50",{"type":44,"value":3161}," simultaneous GETs, ",{"type":39,"tag":56,"props":3163,"children":3164},{},[3165],{"type":44,"value":3166},"15",{"type":44,"value":3168}," simultaneous writes. Duplication\u002Fexport jobs are\ncapped at 5 concurrent per user.",{"type":39,"tag":550,"props":3170,"children":3171},{},[3172],{"type":44,"value":3173},"A separate cost-based limiter can reject expensive graph traversals; most callers never hit it.",{"type":39,"tag":40,"props":3175,"children":3176},{},[3177,3179,3185,3187,3193],{"type":44,"value":3178},"On ",{"type":39,"tag":47,"props":3180,"children":3182},{"className":3181},[],[3183],{"type":44,"value":3184},"429",{"type":44,"value":3186},", sleep the ",{"type":39,"tag":47,"props":3188,"children":3190},{"className":3189},[],[3191],{"type":44,"value":3192},"Retry-After",{"type":44,"value":3194}," seconds (default ~30 if absent) and retry with backoff — don't\ntighten the poll interval.",{"type":39,"tag":188,"props":3196,"children":3198},{"id":3197},"error-handling",[3199],{"type":44,"value":3200},"Error handling",{"type":39,"tag":40,"props":3202,"children":3203},{},[3204,3206,3211,3212,3217,3219,3225,3227,3233,3235,3240,3242,3247],{"type":44,"value":3205},"Every error replaces ",{"type":39,"tag":47,"props":3207,"children":3209},{"className":3208},[],[3210],{"type":44,"value":72},{"type":44,"value":596},{"type":39,"tag":47,"props":3213,"children":3215},{"className":3214},[],[3216],{"type":44,"value":602},{"type":44,"value":3218},": ",{"type":39,"tag":47,"props":3220,"children":3222},{"className":3221},[],[3223],{"type":44,"value":3224},"{\"errors\": [{\"message\": \"...\", \"help\": \"...\", \"phrase\": \"...\"}]}",{"type":44,"value":3226}," (",{"type":39,"tag":47,"props":3228,"children":3230},{"className":3229},[],[3231],{"type":44,"value":3232},"phrase",{"type":44,"value":3234}," appears only on 500s, for support). Check ",{"type":39,"tag":47,"props":3236,"children":3238},{"className":3237},[],[3239],{"type":44,"value":618},{"type":44,"value":3241}," before projecting ",{"type":39,"tag":47,"props":3243,"children":3245},{"className":3244},[],[3246],{"type":44,"value":610},{"type":44,"value":118},{"type":39,"tag":546,"props":3249,"children":3250},{},[3251,3279,3299,3313,3326,3360,3380,3394],{"type":39,"tag":550,"props":3252,"children":3253},{},[3254,3262,3264,3269,3271,3277],{"type":39,"tag":56,"props":3255,"children":3256},{},[3257],{"type":39,"tag":47,"props":3258,"children":3260},{"className":3259},[],[3261],{"type":44,"value":3110},{"type":44,"value":3263}," — Bad request: missing\u002Fmalformed parameter, a bad ",{"type":39,"tag":47,"props":3265,"children":3267},{"className":3266},[],[3268],{"type":44,"value":72},{"type":44,"value":3270}," envelope, or a result set too large to return. The ",{"type":39,"tag":47,"props":3272,"children":3274},{"className":3273},[],[3275],{"type":44,"value":3276},"message",{"type":44,"value":3278}," names the cause.",{"type":39,"tag":550,"props":3280,"children":3281},{},[3282,3290,3292,3297],{"type":39,"tag":56,"props":3283,"children":3284},{},[3285],{"type":39,"tag":47,"props":3286,"children":3288},{"className":3287},[],[3289],{"type":44,"value":204},{"type":44,"value":3291}," — Credential missing or rejected. Check ",{"type":39,"tag":47,"props":3293,"children":3295},{"className":3294},[],[3296],{"type":44,"value":372},{"type":44,"value":3298}," is set at all (any value works). If it persists, the credential isn't configured for this workspace — report it.",{"type":39,"tag":550,"props":3300,"children":3301},{},[3302,3311],{"type":39,"tag":56,"props":3303,"children":3304},{},[3305],{"type":39,"tag":47,"props":3306,"children":3308},{"className":3307},[],[3309],{"type":44,"value":3310},"402",{"type":44,"value":3312}," — Payment required: the feature needs a premium org (e.g. task search, some custom-field operations).",{"type":39,"tag":550,"props":3314,"children":3315},{},[3316,3324],{"type":39,"tag":56,"props":3317,"children":3318},{},[3319],{"type":39,"tag":47,"props":3320,"children":3322},{"className":3321},[],[3323],{"type":44,"value":212},{"type":44,"value":3325}," — Forbidden: the token's user lacks access to that object.",{"type":39,"tag":550,"props":3327,"children":3328},{},[3329,3338,3340,3345,3347,3352,3354,3359],{"type":39,"tag":56,"props":3330,"children":3331},{},[3332],{"type":39,"tag":47,"props":3333,"children":3335},{"className":3334},[],[3336],{"type":44,"value":3337},"404",{"type":44,"value":3339}," — Not found: wrong ",{"type":39,"tag":47,"props":3341,"children":3343},{"className":3342},[],[3344],{"type":44,"value":64},{"type":44,"value":3346}," or non-existent object; some private objects may also surface as ",{"type":39,"tag":47,"props":3348,"children":3350},{"className":3349},[],[3351],{"type":44,"value":3337},{"type":44,"value":3353}," rather than ",{"type":39,"tag":47,"props":3355,"children":3357},{"className":3356},[],[3358],{"type":44,"value":212},{"type":44,"value":118},{"type":39,"tag":550,"props":3361,"children":3362},{},[3363,3371,3373,3378],{"type":39,"tag":56,"props":3364,"children":3365},{},[3366],{"type":39,"tag":47,"props":3367,"children":3369},{"className":3368},[],[3370],{"type":44,"value":3184},{"type":44,"value":3372}," — Rate limited. Sleep per ",{"type":39,"tag":47,"props":3374,"children":3376},{"className":3375},[],[3377],{"type":44,"value":3192},{"type":44,"value":3379},", then retry with backoff.",{"type":39,"tag":550,"props":3381,"children":3382},{},[3383,3392],{"type":39,"tag":56,"props":3384,"children":3385},{},[3386],{"type":39,"tag":47,"props":3387,"children":3389},{"className":3388},[],[3390],{"type":44,"value":3391},"451",{"type":44,"value":3393}," — Unavailable for legal reasons (embargoed IP).",{"type":39,"tag":550,"props":3395,"children":3396},{},[3397,3406,3408,3414],{"type":39,"tag":56,"props":3398,"children":3399},{},[3400],{"type":39,"tag":47,"props":3401,"children":3403},{"className":3402},[],[3404],{"type":44,"value":3405},"5xx",{"type":44,"value":3407}," — Asana-side. Retry reads with backoff; quote ",{"type":39,"tag":47,"props":3409,"children":3411},{"className":3410},[],[3412],{"type":44,"value":3413},"errors[].phrase",{"type":44,"value":3415}," if you escalate.",{"type":39,"tag":188,"props":3417,"children":3419},{"id":3418},"going-deeper",[3420],{"type":44,"value":3421},"Going deeper",{"type":39,"tag":40,"props":3423,"children":3424},{},[3425,3430,3432,3437,3438,3443,3445,3451],{"type":39,"tag":47,"props":3426,"children":3428},{"className":3427},[],[3429],{"type":44,"value":1030},{"type":44,"value":3431}," has the fuller catalog — the complete task fields\u002Fmemberships model,\n",{"type":39,"tag":47,"props":3433,"children":3435},{"className":3434},[],[3436],{"type":44,"value":1376},{"type":44,"value":206},{"type":39,"tag":47,"props":3439,"children":3441},{"className":3440},[],[3442],{"type":44,"value":1765},{"type":44,"value":3444}," markup, sections and reordering, dependencies, custom fields and enum\noptions, attachments (multipart upload), tags, teams and portfolios, project statuses, webhooks (the\n",{"type":39,"tag":47,"props":3446,"children":3448},{"className":3447},[],[3449],{"type":44,"value":3450},"X-Hook-Secret",{"type":44,"value":3452}," handshake), the batch API, and audit-log events. Read it for an endpoint not covered\nabove, or the exact body shape for a write.",{"type":39,"tag":3454,"props":3455,"children":3456},"style",{},[3457],{"type":44,"value":3458},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":3460,"total":3567},[3461,3467,3486,3505,3521,3540,3554],{"slug":4,"name":4,"fn":5,"description":6,"org":3462,"tags":3463,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3464,3465,3466],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"slug":3468,"name":3468,"fn":3469,"description":3470,"org":3471,"tags":3472,"stars":23,"repoUrl":24,"updatedAt":3485},"bigquery-api","run SQL queries against BigQuery","Run SQL against Google BigQuery and browse its catalog — submit queries (sync or async), poll job status, page through results, list datasets\u002Ftables, and read table schemas. Use this whenever the user wants to query a BigQuery table, ask \"what's in this dataset\", check a BigQuery job's status, or mentions bigquery.googleapis.com or a `project.dataset.table` path. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3473,3476,3479,3482],{"name":3474,"slug":3475,"type":16},"Data Analysis","data-analysis",{"name":3477,"slug":3478,"type":16},"Database","database",{"name":3480,"slug":3481,"type":16},"Google Cloud","google-cloud",{"name":3483,"slug":3484,"type":16},"SQL","sql","2026-06-24T07:45:14.797877",{"slug":3487,"name":3487,"fn":3488,"description":3489,"org":3490,"tags":3491,"stars":23,"repoUrl":24,"updatedAt":3504},"config-guide","configure Claude agent settings and scopes","Reference guide for configuring @Claude agents — agents, agent scopes, identity profiles, presets, connections, rules, GitHub repositories, and custom instructions. Explains the inheritance model and configuration best practices.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3492,3495,3498,3501],{"name":3493,"slug":3494,"type":16},"Agents","agents",{"name":3496,"slug":3497,"type":16},"Claude API","claude-api",{"name":3499,"slug":3500,"type":16},"Configuration","configuration",{"name":3502,"slug":3503,"type":16},"GitHub","github","2026-06-25T07:41:36.617524",{"slug":3506,"name":3506,"fn":3507,"description":3508,"org":3509,"tags":3510,"stars":23,"repoUrl":24,"updatedAt":3520},"confluence-api","manage Confluence Cloud content","Read, search, and manage Confluence Cloud pages, spaces, blog posts, comments, attachments, and labels. Use this whenever the user wants to find a page, read a doc, search the wiki with CQL, create or update a page, add a comment, list pages in a space, pull an attachment, or ask \"what does the wiki say about X\" — even if they don't say \"API\". Also use it for any *.atlassian.net\u002Fwiki URL, or a CQL string when the context is wiki content rather than tickets. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3511,3514,3517],{"name":3512,"slug":3513,"type":16},"Confluence","confluence",{"name":3515,"slug":3516,"type":16},"Documentation","documentation",{"name":3518,"slug":3519,"type":16},"Knowledge Management","knowledge-management","2026-06-25T07:41:43.531982",{"slug":3522,"name":3522,"fn":3523,"description":3524,"org":3525,"tags":3526,"stars":23,"repoUrl":24,"updatedAt":3539},"datadog-api","manage Datadog monitoring and telemetry","Query and manage Datadog monitoring data — logs, metrics, monitors, dashboards, events, SLOs, traces, and incidents. Use this whenever the user wants to search logs, look at a metric, check which monitors are alerting, investigate a trace, pull SLO status, mute an alert, or ask \"what's happening in Datadog\" — even if they don't say \"API\". Also use it for any URL under *.datadoghq.com. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3527,3530,3533,3536],{"name":3528,"slug":3529,"type":16},"API Development","api-development",{"name":3531,"slug":3532,"type":16},"Datadog","datadog",{"name":3534,"slug":3535,"type":16},"Monitoring","monitoring",{"name":3537,"slug":3538,"type":16},"Observability","observability","2026-06-24T07:46:42.266372",{"slug":3541,"name":3541,"fn":3542,"description":3543,"org":3544,"tags":3545,"stars":23,"repoUrl":24,"updatedAt":3553},"debug-plugins","diagnose Claude plugin loading failures","Diagnose why a plugin or skill configured in @Claude admin settings isn't loading. Checks mount directories, the Claude Code launch command, and startup logs from inside the running container, then explains what failed and how to fix it.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3546,3547,3550],{"name":3496,"slug":3497,"type":16},{"name":3548,"slug":3549,"type":16},"Debugging","debugging",{"name":3551,"slug":3552,"type":16},"Plugin Development","plugin-development","2026-06-24T07:46:32.792809",{"slug":3555,"name":3555,"fn":3556,"description":3557,"org":3558,"tags":3559,"stars":23,"repoUrl":24,"updatedAt":3566},"enterprise-search","search company enterprise knowledge index","Search the company's enterprise knowledge index. Use this FIRST when starting any task that touches company-specific context - projects, people, policies, internal docs, prior decisions - before searching individual sources like Drive, Slack, or Jira directly. Also use it when the user asks \"do we have a doc about X\", \"what's our policy on Y\", or references internal initiatives by name. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3560,3562,3563],{"name":3561,"slug":3555,"type":16},"Enterprise Search",{"name":3518,"slug":3519,"type":16},{"name":3564,"slug":3565,"type":16},"Research","research","2026-06-24T07:46:40.641837",18,{"items":3569,"total":3748},[3570,3591,3605,3617,3632,3643,3664,3684,3698,3711,3719,3732],{"slug":3571,"name":3571,"fn":3572,"description":3573,"org":3574,"tags":3575,"stars":3588,"repoUrl":3589,"updatedAt":3590},"algorithmic-art","create algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3576,3579,3582,3585],{"name":3577,"slug":3578,"type":16},"Creative","creative",{"name":3580,"slug":3581,"type":16},"Design","design",{"name":3583,"slug":3584,"type":16},"Generative Art","generative-art",{"name":3586,"slug":3587,"type":16},"JavaScript","javascript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":3592,"name":3592,"fn":3593,"description":3594,"org":3595,"tags":3596,"stars":3588,"repoUrl":3589,"updatedAt":3604},"brand-guidelines","apply Anthropic brand colors and typography","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3597,3600,3601],{"name":3598,"slug":3599,"type":16},"Branding","branding",{"name":3580,"slug":3581,"type":16},{"name":3602,"slug":3603,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":3606,"name":3606,"fn":3607,"description":3608,"org":3609,"tags":3610,"stars":3588,"repoUrl":3589,"updatedAt":3616},"canvas-design","create posters and visual art as PNG or PDF","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3611,3612,3613],{"name":3577,"slug":3578,"type":16},{"name":3580,"slug":3581,"type":16},{"name":3614,"slug":3615,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":3497,"name":3497,"fn":3618,"description":3619,"org":3620,"tags":3621,"stars":3588,"repoUrl":3589,"updatedAt":3631},"build apps with the Claude API","Reference for the Claude API \u002F Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration.\nTRIGGER — read BEFORE opening the target file; don't skip because it \"looks like a one-liner\" — whenever: the prompt names Claude\u002FAnthropic in any form (Claude, Anthropic, Fable, Opus, Sonnet, Haiku, `anthropic`, `@anthropic-ai`, `claude-*`, `us.anthropic.*`, `[1m]`); the user asks about an LLM (pricing\u002Fmodel choice\u002Flimits\u002Fcaching) — never answer from memory; OR the task is LLM-shaped with provider unstated (agent\u002FMCP\u002Ftool-definition\u002Fmulti-agent\u002FRAG\u002FLLM-judge\u002Fcomputer-use; generate\u002Fsummarize\u002Fextract\u002Fclassify\u002Frewrite\u002Fconverse over NL; debugging refusals\u002Fcutoffs\u002Fstreaming\u002Ftool-calls\u002Ftokens).\nSKIP only when another provider is being worked on (overrides all triggers): OpenAI\u002FGPT\u002FGemini\u002FLlama\u002FMistral\u002FCohere\u002FOllama named in the query; OR `grep -rE 'openai|langchain_openai|google.generativeai|genai|mistralai|cohere|ollama'` over the project hits (run this grep FIRST if no provider named — don't Read the file).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3622,3623,3624,3627,3628],{"name":3493,"slug":3494,"type":16},{"name":9,"slug":8,"type":16},{"name":3625,"slug":3626,"type":16},"Anthropic SDK","anthropic-sdk",{"name":3496,"slug":3497,"type":16},{"name":3629,"slug":3630,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":3633,"name":3633,"fn":3634,"description":3635,"org":3636,"tags":3637,"stars":3588,"repoUrl":3589,"updatedAt":3642},"doc-coauthoring","co-author documentation and technical specs","Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3638,3639],{"name":3515,"slug":3516,"type":16},{"name":3640,"slug":3641,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":3644,"name":3644,"fn":3645,"description":3646,"org":3647,"tags":3648,"stars":3588,"repoUrl":3589,"updatedAt":3663},"docx","create and edit Word documents","Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3649,3652,3654,3657,3660],{"name":3650,"slug":3651,"type":16},"Documents","documents",{"name":3653,"slug":3644,"type":16},"DOCX",{"name":3655,"slug":3656,"type":16},"Office","office",{"name":3658,"slug":3659,"type":16},"Templates","templates",{"name":3661,"slug":3662,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":3665,"name":3665,"fn":3666,"description":3667,"org":3668,"tags":3669,"stars":3588,"repoUrl":3589,"updatedAt":3683},"frontend-design","design production-grade frontend interfaces","Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3670,3671,3674,3677,3680],{"name":3580,"slug":3581,"type":16},{"name":3672,"slug":3673,"type":16},"Frontend","frontend",{"name":3675,"slug":3676,"type":16},"React","react",{"name":3678,"slug":3679,"type":16},"Tailwind CSS","tailwind-css",{"name":3681,"slug":3682,"type":16},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":3685,"name":3685,"fn":3686,"description":3687,"org":3688,"tags":3689,"stars":3588,"repoUrl":3589,"updatedAt":3697},"internal-comms","write internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3690,3693,3694],{"name":3691,"slug":3692,"type":16},"Communications","communications",{"name":3658,"slug":3659,"type":16},{"name":3695,"slug":3696,"type":16},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":3699,"name":3699,"fn":3700,"description":3701,"org":3702,"tags":3703,"stars":3588,"repoUrl":3589,"updatedAt":3710},"mcp-builder","build MCP servers","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3704,3705,3706,3707],{"name":3493,"slug":3494,"type":16},{"name":3528,"slug":3529,"type":16},{"name":3629,"slug":3630,"type":16},{"name":3708,"slug":3709,"type":16},"MCP","mcp","2026-04-06T17:56:10.357665",{"slug":3615,"name":3615,"fn":3712,"description":3713,"org":3714,"tags":3715,"stars":3588,"repoUrl":3589,"updatedAt":3718},"read edit and manipulate PDF files","Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text\u002Ftables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting\u002Fdecrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3716,3717],{"name":3650,"slug":3651,"type":16},{"name":3614,"slug":3615,"type":16},"2026-04-06T17:56:02.483316",{"slug":3720,"name":3720,"fn":3721,"description":3722,"org":3723,"tags":3724,"stars":3588,"repoUrl":3589,"updatedAt":3731},"pptx","create and edit PowerPoint presentations","Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx or .potx filename, regardless of what they plan to do with the content afterward. If a .pptx or .potx file needs to be opened, created, or touched, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3725,3728],{"name":3726,"slug":3727,"type":16},"PowerPoint","powerpoint",{"name":3729,"slug":3730,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":3733,"name":3733,"fn":3734,"description":3735,"org":3736,"tags":3737,"stars":3588,"repoUrl":3589,"updatedAt":3747},"skill-creator","create and optimize agent skills","Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3738,3739,3740,3743,3746],{"name":3493,"slug":3494,"type":16},{"name":3515,"slug":3516,"type":16},{"name":3741,"slug":3742,"type":16},"Evals","evals",{"name":3744,"slug":3745,"type":16},"Performance","performance",{"name":3640,"slug":3641,"type":16},"2026-04-19T06:45:40.804",490]