[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-bigquery-api":3,"mdc-vyus6v-key":36,"related-repo-anthropic-bigquery-api":2433,"related-org-anthropic-bigquery-api":2540},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":34,"mdContent":35},"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},"anthropic","Anthropic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fanthropic.png","anthropics",[13,17,20,23],{"name":14,"slug":15,"type":16},"Data Analysis","data-analysis","tag",{"name":18,"slug":19,"type":16},"Database","database",{"name":21,"slug":22,"type":16},"SQL","sql",{"name":24,"slug":25,"type":16},"Google Cloud","google-cloud",30,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-tag-plugins","2026-06-24T07:45:14.797877",null,12,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":29},[],"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-tag-plugins\u002Ftree\u002FHEAD\u002Fbigquery\u002Fskills\u002Fbigquery-api","---\nname: bigquery-api\ndescription: 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.\n---\n\nBigQuery's REST API (`bigquery.googleapis.com\u002Fbigquery\u002Fv2`) lets you run SQL, inspect jobs, and browse datasets and table schemas with plain `curl` — no SDK required.\n\nThe central concept is a **job**. Every query runs as a job in a **project** (the project is billed, and is not necessarily where the data lives). Under the hood a query runs one of two ways — `scripts\u002Fbq_query.sh` (operation 1) drives this for you:\n\n- **Synchronous** (`jobs.query`) — one POST that blocks up to a timeout and returns rows inline if the query finishes in time.\n- **Asynchronous** (`jobs.insert` → `jobs.get` → `jobs.getQueryResults`) — submit, poll, then page results. The route you use directly for destination tables, `BATCH` priority, or load\u002Fextract\u002Fcopy jobs.\n\nEverything else (datasets, tables, schemas) is a simple GET.\n\n## Request setup\n\nAuthentication is handled by the runtime — credentials are injected into outbound requests to this API, so there is nothing to set up. Do not try to create, mint, refresh, or validate tokens or keys. Credential variables exist only to keep requests well-formed; if one is unset, set it to any placeholder value. A persistent `401`\u002F`403` means the credential isn't configured for this workspace — report that instead of debugging auth.\n\nEvery request carries `Authorization: Bearer ...` and is rooted at a **billing project**:\n\n```bash\nexport GCP_PROJECT=\"my-project\"   # the project that pays for queries — must be real\nexport BQ_TOKEN=\"placeholder\"     # injected by the runtime; any value works\n```\n\nDefine a helper to avoid repeating the base URL and auth header on every call:\n\n```bash\nexport BQ=\"https:\u002F\u002Fbigquery.googleapis.com\u002Fbigquery\u002Fv2\u002Fprojects\u002F${GCP_PROJECT}\"\nbq_curl() { curl -sS \"$@\" -H \"Authorization: Bearer ${BQ_TOKEN}\"; }\n```\n\n**Sanity check** — confirm the project is right and the workspace is wired up:\n\n```bash\nbq_curl \"${BQ}\u002Fdatasets?maxResults=1\" | jq .\n# 200 with a \"datasets\" array on success (the key is omitted entirely when the project\n# has no datasets — that's still a success); 401\u002F403 otherwise.\n```\n\n## Core operations\n\n### 1. Run a query (`scripts\u002Fbq_query.sh`)\n\nRun SQL through the bundled script (path is relative to this skill's directory): it submits the\nquery, polls until done with `location` threaded through, pages through every result page, and\ndecodes the `f`\u002F`v` cell encoding for scalar columns (nested\u002Frepeated columns are emitted as raw\n`f`\u002F`v` JSON — post-process with `jq` if you need them flattened).\n\n```bash\nscripts\u002Fbq_query.sh \\\n  'SELECT name, SUM(number) AS total\n   FROM `bigquery-public-data.usa_names.usa_1910_current`\n   WHERE state = @state GROUP BY name ORDER BY total DESC LIMIT 10' \\\n  --param state=STRING:CA --max-gb 5\n```\n\n- SQL is one argument (single-quote it so backticked table names survive the shell) or stdin.\n  Instance specifics come from `GCP_PROJECT` \u002F `BQ_TOKEN` above; `--project` overrides the billing\n  project.\n- `--param NAME=TYPE:VALUE` (repeatable) sends named query parameters — prefer it over\n  interpolating values into the SQL string.\n- `--dry-run` prints the bytes a query would scan without running it; `--max-gb N` makes the query\n  fail rather than scan more than N GiB.\n- `--max-rows N` caps fetched rows (default 10000, `0` = everything); `--json` emits one JSON\n  object per row instead of TSV with a header. Job ID, bytes scanned, and row counts go to stderr.\n- Exit codes: `0` success, `1` request or query failed (API message on stderr), `2` gave up waiting\n  after `--max-wait` seconds (default 600) — the job ID is on stderr; poll it with the endpoints\n  below.\n\nIf the script errors, read it — it's plain `curl` + `jq` — and debug against `references\u002Fapi.md`.\nFor array\u002Fstruct parameters, destination tables or write disposition, `BATCH` priority, or\nnon-query jobs (load\u002Fextract\u002Fcopy), use `jobs.insert` directly (next operation).\n\n### 2. Submit a job directly (`jobs.insert` → `jobs.get`)\n\nWhen you need a destination table, write disposition, `BATCH` priority, or a non-query job\n(load\u002Fextract\u002Fcopy), submit the job yourself and poll. `POST ${BQ}\u002Fjobs` returns immediately with a\n`jobReference`:\n\n```bash\nJOB=$(bq_curl -X POST \"${BQ}\u002Fjobs\" -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"configuration\": {\"query\": {\"query\": \"SELECT ...\", \"useLegacySql\": false}}}')\nJOB_ID=$(jq -r '.jobReference.jobId \u002F\u002F empty' \u003C\u003C\u003C\"$JOB\")\nLOCATION=$(jq -r '.jobReference.location \u002F\u002F empty' \u003C\u003C\u003C\"$JOB\")\n```\n\nThen poll `GET ${BQ}\u002Fjobs\u002F${JOB_ID}?location=${LOCATION}` until `.status.state` is `DONE` — sleep\nbetween calls and bound the loop (`scripts\u002Fbq_query.sh` is the reference implementation). The full\n`configuration.query` body — destination table, write disposition, `maximumBytesBilled`, priority,\nparameters — is in `references\u002Fapi.md`, section Query job configuration.\n\n- If `JOB_ID` came back empty the insert itself failed; surface `.error` instead of polling.\n- Always pass `location` back when polling — a job is pinned to the location it ran in, and\n  omitting it can 404 for non-US datasets.\n- A `DONE` job can still have failed: check `.status.errorResult` before fetching results.\n- Fetch a query job's rows with `GET ${BQ}\u002Fqueries\u002F${JOB_ID}?location=${LOCATION}&maxResults=1000` —\n  cells come back as `{\"f\": [{\"v\": \"...\"}]}` in schema order (column names in\n  `.schema.fields[].name`); more pages follow `.pageToken` (see Pagination).\n\n### 3. Cancel a running job\n\n```bash\nbq_curl -X POST \"${BQ}\u002Fjobs\u002F${JOB_ID}\u002Fcancel?location=${LOCATION}\" | jq '.job.status \u002F\u002F .error'\n```\n\nCancellation is best-effort; poll `jobs.get` to confirm.\n\n### 4. List recent jobs\n\n```bash\nbq_curl \"${BQ}\u002Fjobs?maxResults=20&projection=full&allUsers=false&stateFilter=done\" \\\n  | jq '.jobs[]? | {id: .jobReference.jobId, state: .status.state, query: (.configuration.query.query \u002F\u002F \"\" | .[0:80]), bytes: .statistics.query.totalBytesProcessed}'\n```\n\n### 5. List datasets\n\n```bash\nbq_curl \"${BQ}\u002Fdatasets?maxResults=100\" \\\n  | jq '.datasets[]? | {id: .datasetReference.datasetId, location}'\n```\n\nPass `?all=true` to include hidden datasets. For a different project's datasets, swap the project in the URL (you need `bigquery.datasets.get` there).\n\n### 6. List tables in a dataset\n\n```bash\nDATASET=\"my_dataset\"\nbq_curl \"${BQ}\u002Fdatasets\u002F${DATASET}\u002Ftables?maxResults=100\" \\\n  | jq '.tables[]? | {id: .tableReference.tableId, type, creationTime}'\n```\n\n`type` is `TABLE`, `VIEW`, `EXTERNAL`, `MATERIALIZED_VIEW`, or `SNAPSHOT`.\n\n### 7. Get a table's schema and size\n\n```bash\nTABLE=\"events\"\nbq_curl \"${BQ}\u002Fdatasets\u002F${DATASET}\u002Ftables\u002F${TABLE}\" \\\n  | jq '{rows: .numRows, bytes: .numBytes, partitioning: .timePartitioning, schema: [.schema.fields[]? | {name, type, mode}]}'\n```\n\nNested columns appear as `type: \"RECORD\"` with their own `fields[]` — recurse if you need the full tree.\n\n### 8. Preview table rows without a query (`tabledata.list`)\n\nReads rows directly from storage — no query job, no bytes-scanned cost.\n\n```bash\nbq_curl \"${BQ}\u002Fdatasets\u002F${DATASET}\u002Ftables\u002F${TABLE}\u002Fdata?maxResults=10\" \\\n  | jq '.rows[]?.f | map(.v)'\n```\n\n## Pagination\n\nEvery list-style endpoint uses the same scheme: the response carries a token when there's more, and you pass it back as `?pageToken=` on the next call. Stop when the field is absent. `maxResults` caps a single page; the actual API ceilings are size-based (~10 MB per `tabledata.list` page, ~20 MB per `getQueryResults` page) rather than a fixed row count — the bundled script defaults to 1000 rows per page.\n\nThe response field name is not uniform — check which one your endpoint returns:\n\n- `pageToken` — `jobs.query`, `jobs.getQueryResults`, `tabledata.list`.\n- `nextPageToken` — `datasets.list`, `tables.list`, `jobs.list`, `routines.list`, `models.list`.\n\nReading `.pageToken` on a `datasets.list` response silently yields `null` and you get one page.\n\nQuery results add one wrinkle: `jobs.query` and `jobs.getQueryResults` also return `totalRows`, which is the full count even when a single page is smaller — use it to size progress bars, not as a stop condition.\n\n## Rate limits & quotas\n\nBigQuery enforces per-project quotas rather than per-request rate limits. The ones you'll hit:\n\n- **Concurrent queries**: BigQuery decides how many queries run at once (dynamic concurrency) and queues the rest — up to 1,000 queued interactive queries per project per region. Past that, submits fail with `quotaExceeded` \u002F `jobRateLimitExceeded`.\n- **API requests**: most methods are capped at ~100 requests per second per user per method (`jobs.get` and `tabledata.list` allow more) — poll with a `sleep`, not a hot loop.\n- **On-demand bytes scanned** and **slot-time** quotas depend on your billing model.\n\n`429` and `403 rateLimitExceeded` \u002F `quotaExceeded` responses carry a retryable reason in `error.errors[].reason`. Back off exponentially and retry; don't tighten the poll interval.\n\n## Error handling\n\nEvery error response is `{\"error\": {\"code\": N, \"message\": \"...\", \"errors\": [{\"reason\": \"...\"}]}}` — check `.error` before projecting. The `reason` string is the most useful field.\n\n- `401` — Credential missing or rejected. Check `BQ_TOKEN` is set at all (any value works). If it persists, the credential isn't configured for this workspace — report it.\n- `403 accessDenied` — Caller lacks permission on the project\u002Fdataset. Check which project is in the URL (billing project) vs. which project owns the data — they can differ. Grant `roles\u002Fbigquery.dataViewer` on the data, `roles\u002Fbigquery.jobUser` on the billing project.\n- `404 notFound` — Job, dataset, or table doesn't exist, or you omitted `location` on a job lookup. Double-check the full reference (`project.dataset.table`). Always pass `?location=` on `jobs.get` \u002F `getQueryResults`.\n- `400 invalidQuery` — SQL error. The `message` carries line\u002Fcolumn. Remember `useLegacySql: false`.\n- job `status.errorResult` — Query ran but failed. A job can be `DONE` and still failed — always check `status.errorResult` before fetching results.\n- `5xx` \u002F `backendError` — Transient Google-side. Retry with backoff. Safe for read jobs; for write jobs, check whether the first attempt actually ran before retrying.\n\n## Going deeper\n\n`references\u002Fapi.md` has the fuller endpoint catalog — the job configuration object in detail (destination tables, write disposition, load\u002Fextract\u002Fcopy jobs), dataset and table create\u002Fupdate, routines, and row-level access policies. Read it when you need an endpoint not covered above or the exact body shape for a write.\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,66,94,157,162,169,190,210,301,306,436,446,516,522,536,585,668,791,832,850,877,1089,1148,1240,1246,1336,1348,1354,1418,1424,1487,1508,1514,1620,1668,1674,1785,1806,1819,1824,1919,1925,1961,1966,2043,2070,2097,2103,2108,2182,2214,2220,2248,2411,2417,2427],{"type":42,"tag":43,"props":44,"children":45},"element","p",{},[46,49,56,58,64],{"type":47,"value":48},"text","BigQuery's REST API (",{"type":42,"tag":50,"props":51,"children":53},"code",{"className":52},[],[54],{"type":47,"value":55},"bigquery.googleapis.com\u002Fbigquery\u002Fv2",{"type":47,"value":57},") lets you run SQL, inspect jobs, and browse datasets and table schemas with plain ",{"type":42,"tag":50,"props":59,"children":61},{"className":60},[],[62],{"type":47,"value":63},"curl",{"type":47,"value":65}," — no SDK required.",{"type":42,"tag":43,"props":67,"children":68},{},[69,71,77,79,84,86,92],{"type":47,"value":70},"The central concept is a ",{"type":42,"tag":72,"props":73,"children":74},"strong",{},[75],{"type":47,"value":76},"job",{"type":47,"value":78},". Every query runs as a job in a ",{"type":42,"tag":72,"props":80,"children":81},{},[82],{"type":47,"value":83},"project",{"type":47,"value":85}," (the project is billed, and is not necessarily where the data lives). Under the hood a query runs one of two ways — ",{"type":42,"tag":50,"props":87,"children":89},{"className":88},[],[90],{"type":47,"value":91},"scripts\u002Fbq_query.sh",{"type":47,"value":93}," (operation 1) drives this for you:",{"type":42,"tag":95,"props":96,"children":97},"ul",{},[98,117],{"type":42,"tag":99,"props":100,"children":101},"li",{},[102,107,109,115],{"type":42,"tag":72,"props":103,"children":104},{},[105],{"type":47,"value":106},"Synchronous",{"type":47,"value":108}," (",{"type":42,"tag":50,"props":110,"children":112},{"className":111},[],[113],{"type":47,"value":114},"jobs.query",{"type":47,"value":116},") — one POST that blocks up to a timeout and returns rows inline if the query finishes in time.",{"type":42,"tag":99,"props":118,"children":119},{},[120,125,126,132,134,140,141,147,149,155],{"type":42,"tag":72,"props":121,"children":122},{},[123],{"type":47,"value":124},"Asynchronous",{"type":47,"value":108},{"type":42,"tag":50,"props":127,"children":129},{"className":128},[],[130],{"type":47,"value":131},"jobs.insert",{"type":47,"value":133}," → ",{"type":42,"tag":50,"props":135,"children":137},{"className":136},[],[138],{"type":47,"value":139},"jobs.get",{"type":47,"value":133},{"type":42,"tag":50,"props":142,"children":144},{"className":143},[],[145],{"type":47,"value":146},"jobs.getQueryResults",{"type":47,"value":148},") — submit, poll, then page results. The route you use directly for destination tables, ",{"type":42,"tag":50,"props":150,"children":152},{"className":151},[],[153],{"type":47,"value":154},"BATCH",{"type":47,"value":156}," priority, or load\u002Fextract\u002Fcopy jobs.",{"type":42,"tag":43,"props":158,"children":159},{},[160],{"type":47,"value":161},"Everything else (datasets, tables, schemas) is a simple GET.",{"type":42,"tag":163,"props":164,"children":166},"h2",{"id":165},"request-setup",[167],{"type":47,"value":168},"Request setup",{"type":42,"tag":43,"props":170,"children":171},{},[172,174,180,182,188],{"type":47,"value":173},"Authentication is handled by the runtime — credentials are injected into outbound requests to this API, so there is nothing to set up. Do not try to create, mint, refresh, or validate tokens or keys. Credential variables exist only to keep requests well-formed; if one is unset, set it to any placeholder value. A persistent ",{"type":42,"tag":50,"props":175,"children":177},{"className":176},[],[178],{"type":47,"value":179},"401",{"type":47,"value":181},"\u002F",{"type":42,"tag":50,"props":183,"children":185},{"className":184},[],[186],{"type":47,"value":187},"403",{"type":47,"value":189}," means the credential isn't configured for this workspace — report that instead of debugging auth.",{"type":42,"tag":43,"props":191,"children":192},{},[193,195,201,203,208],{"type":47,"value":194},"Every request carries ",{"type":42,"tag":50,"props":196,"children":198},{"className":197},[],[199],{"type":47,"value":200},"Authorization: Bearer ...",{"type":47,"value":202}," and is rooted at a ",{"type":42,"tag":72,"props":204,"children":205},{},[206],{"type":47,"value":207},"billing project",{"type":47,"value":209},":",{"type":42,"tag":211,"props":212,"children":217},"pre",{"className":213,"code":214,"language":215,"meta":216,"style":216},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","export GCP_PROJECT=\"my-project\"   # the project that pays for queries — must be real\nexport BQ_TOKEN=\"placeholder\"     # injected by the runtime; any value works\n","bash","",[218],{"type":42,"tag":50,"props":219,"children":220},{"__ignoreMap":216},[221,266],{"type":42,"tag":222,"props":223,"children":226},"span",{"class":224,"line":225},"line",1,[227,233,239,245,250,256,260],{"type":42,"tag":222,"props":228,"children":230},{"style":229},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[231],{"type":47,"value":232},"export",{"type":42,"tag":222,"props":234,"children":236},{"style":235},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[237],{"type":47,"value":238}," GCP_PROJECT",{"type":42,"tag":222,"props":240,"children":242},{"style":241},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[243],{"type":47,"value":244},"=",{"type":42,"tag":222,"props":246,"children":247},{"style":241},[248],{"type":47,"value":249},"\"",{"type":42,"tag":222,"props":251,"children":253},{"style":252},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[254],{"type":47,"value":255},"my-project",{"type":42,"tag":222,"props":257,"children":258},{"style":241},[259],{"type":47,"value":249},{"type":42,"tag":222,"props":261,"children":263},{"style":262},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[264],{"type":47,"value":265},"   # the project that pays for queries — must be real\n",{"type":42,"tag":222,"props":267,"children":269},{"class":224,"line":268},2,[270,274,279,283,287,292,296],{"type":42,"tag":222,"props":271,"children":272},{"style":229},[273],{"type":47,"value":232},{"type":42,"tag":222,"props":275,"children":276},{"style":235},[277],{"type":47,"value":278}," BQ_TOKEN",{"type":42,"tag":222,"props":280,"children":281},{"style":241},[282],{"type":47,"value":244},{"type":42,"tag":222,"props":284,"children":285},{"style":241},[286],{"type":47,"value":249},{"type":42,"tag":222,"props":288,"children":289},{"style":252},[290],{"type":47,"value":291},"placeholder",{"type":42,"tag":222,"props":293,"children":294},{"style":241},[295],{"type":47,"value":249},{"type":42,"tag":222,"props":297,"children":298},{"style":262},[299],{"type":47,"value":300},"     # injected by the runtime; any value works\n",{"type":42,"tag":43,"props":302,"children":303},{},[304],{"type":47,"value":305},"Define a helper to avoid repeating the base URL and auth header on every call:",{"type":42,"tag":211,"props":307,"children":309},{"className":213,"code":308,"language":215,"meta":216,"style":216},"export BQ=\"https:\u002F\u002Fbigquery.googleapis.com\u002Fbigquery\u002Fv2\u002Fprojects\u002F${GCP_PROJECT}\"\nbq_curl() { curl -sS \"$@\" -H \"Authorization: Bearer ${BQ_TOKEN}\"; }\n",[310],{"type":42,"tag":50,"props":311,"children":312},{"__ignoreMap":216},[313,353],{"type":42,"tag":222,"props":314,"children":315},{"class":224,"line":225},[316,320,325,329,333,338,343,348],{"type":42,"tag":222,"props":317,"children":318},{"style":229},[319],{"type":47,"value":232},{"type":42,"tag":222,"props":321,"children":322},{"style":235},[323],{"type":47,"value":324}," BQ",{"type":42,"tag":222,"props":326,"children":327},{"style":241},[328],{"type":47,"value":244},{"type":42,"tag":222,"props":330,"children":331},{"style":241},[332],{"type":47,"value":249},{"type":42,"tag":222,"props":334,"children":335},{"style":252},[336],{"type":47,"value":337},"https:\u002F\u002Fbigquery.googleapis.com\u002Fbigquery\u002Fv2\u002Fprojects\u002F",{"type":42,"tag":222,"props":339,"children":340},{"style":241},[341],{"type":47,"value":342},"${",{"type":42,"tag":222,"props":344,"children":345},{"style":235},[346],{"type":47,"value":347},"GCP_PROJECT",{"type":42,"tag":222,"props":349,"children":350},{"style":241},[351],{"type":47,"value":352},"}\"\n",{"type":42,"tag":222,"props":354,"children":355},{"class":224,"line":268},[356,362,367,372,378,383,388,394,398,403,407,412,416,421,426,431],{"type":42,"tag":222,"props":357,"children":359},{"style":358},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[360],{"type":47,"value":361},"bq_curl",{"type":42,"tag":222,"props":363,"children":364},{"style":241},[365],{"type":47,"value":366},"()",{"type":42,"tag":222,"props":368,"children":369},{"style":241},[370],{"type":47,"value":371}," {",{"type":42,"tag":222,"props":373,"children":375},{"style":374},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[376],{"type":47,"value":377}," curl",{"type":42,"tag":222,"props":379,"children":380},{"style":252},[381],{"type":47,"value":382}," -sS",{"type":42,"tag":222,"props":384,"children":385},{"style":241},[386],{"type":47,"value":387}," \"",{"type":42,"tag":222,"props":389,"children":391},{"style":390},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[392],{"type":47,"value":393},"$@",{"type":42,"tag":222,"props":395,"children":396},{"style":241},[397],{"type":47,"value":249},{"type":42,"tag":222,"props":399,"children":400},{"style":252},[401],{"type":47,"value":402}," -H",{"type":42,"tag":222,"props":404,"children":405},{"style":241},[406],{"type":47,"value":387},{"type":42,"tag":222,"props":408,"children":409},{"style":252},[410],{"type":47,"value":411},"Authorization: Bearer ",{"type":42,"tag":222,"props":413,"children":414},{"style":241},[415],{"type":47,"value":342},{"type":42,"tag":222,"props":417,"children":418},{"style":235},[419],{"type":47,"value":420},"BQ_TOKEN",{"type":42,"tag":222,"props":422,"children":423},{"style":241},[424],{"type":47,"value":425},"}\"",{"type":42,"tag":222,"props":427,"children":428},{"style":241},[429],{"type":47,"value":430},";",{"type":42,"tag":222,"props":432,"children":433},{"style":241},[434],{"type":47,"value":435}," }\n",{"type":42,"tag":43,"props":437,"children":438},{},[439,444],{"type":42,"tag":72,"props":440,"children":441},{},[442],{"type":47,"value":443},"Sanity check",{"type":47,"value":445}," — confirm the project is right and the workspace is wired up:",{"type":42,"tag":211,"props":447,"children":449},{"className":213,"code":448,"language":215,"meta":216,"style":216},"bq_curl \"${BQ}\u002Fdatasets?maxResults=1\" | jq .\n# 200 with a \"datasets\" array on success (the key is omitted entirely when the project\n# has no datasets — that's still a success); 401\u002F403 otherwise.\n",[450],{"type":42,"tag":50,"props":451,"children":452},{"__ignoreMap":216},[453,499,507],{"type":42,"tag":222,"props":454,"children":455},{"class":224,"line":225},[456,460,465,470,475,480,484,489,494],{"type":42,"tag":222,"props":457,"children":458},{"style":374},[459],{"type":47,"value":361},{"type":42,"tag":222,"props":461,"children":462},{"style":241},[463],{"type":47,"value":464}," \"${",{"type":42,"tag":222,"props":466,"children":467},{"style":235},[468],{"type":47,"value":469},"BQ",{"type":42,"tag":222,"props":471,"children":472},{"style":241},[473],{"type":47,"value":474},"}",{"type":42,"tag":222,"props":476,"children":477},{"style":252},[478],{"type":47,"value":479},"\u002Fdatasets?maxResults=1",{"type":42,"tag":222,"props":481,"children":482},{"style":241},[483],{"type":47,"value":249},{"type":42,"tag":222,"props":485,"children":486},{"style":241},[487],{"type":47,"value":488}," |",{"type":42,"tag":222,"props":490,"children":491},{"style":374},[492],{"type":47,"value":493}," jq",{"type":42,"tag":222,"props":495,"children":496},{"style":252},[497],{"type":47,"value":498}," .\n",{"type":42,"tag":222,"props":500,"children":501},{"class":224,"line":268},[502],{"type":42,"tag":222,"props":503,"children":504},{"style":262},[505],{"type":47,"value":506},"# 200 with a \"datasets\" array on success (the key is omitted entirely when the project\n",{"type":42,"tag":222,"props":508,"children":510},{"class":224,"line":509},3,[511],{"type":42,"tag":222,"props":512,"children":513},{"style":262},[514],{"type":47,"value":515},"# has no datasets — that's still a success); 401\u002F403 otherwise.\n",{"type":42,"tag":163,"props":517,"children":519},{"id":518},"core-operations",[520],{"type":47,"value":521},"Core operations",{"type":42,"tag":523,"props":524,"children":526},"h3",{"id":525},"_1-run-a-query-scriptsbq_querysh",[527,529,534],{"type":47,"value":528},"1. Run a query (",{"type":42,"tag":50,"props":530,"children":532},{"className":531},[],[533],{"type":47,"value":91},{"type":47,"value":535},")",{"type":42,"tag":43,"props":537,"children":538},{},[539,541,547,549,555,556,562,564,569,570,575,577,583],{"type":47,"value":540},"Run SQL through the bundled script (path is relative to this skill's directory): it submits the\nquery, polls until done with ",{"type":42,"tag":50,"props":542,"children":544},{"className":543},[],[545],{"type":47,"value":546},"location",{"type":47,"value":548}," threaded through, pages through every result page, and\ndecodes the ",{"type":42,"tag":50,"props":550,"children":552},{"className":551},[],[553],{"type":47,"value":554},"f",{"type":47,"value":181},{"type":42,"tag":50,"props":557,"children":559},{"className":558},[],[560],{"type":47,"value":561},"v",{"type":47,"value":563}," cell encoding for scalar columns (nested\u002Frepeated columns are emitted as raw\n",{"type":42,"tag":50,"props":565,"children":567},{"className":566},[],[568],{"type":47,"value":554},{"type":47,"value":181},{"type":42,"tag":50,"props":571,"children":573},{"className":572},[],[574],{"type":47,"value":561},{"type":47,"value":576}," JSON — post-process with ",{"type":42,"tag":50,"props":578,"children":580},{"className":579},[],[581],{"type":47,"value":582},"jq",{"type":47,"value":584}," if you need them flattened).",{"type":42,"tag":211,"props":586,"children":588},{"className":213,"code":587,"language":215,"meta":216,"style":216},"scripts\u002Fbq_query.sh \\\n  'SELECT name, SUM(number) AS total\n   FROM `bigquery-public-data.usa_names.usa_1910_current`\n   WHERE state = @state GROUP BY name ORDER BY total DESC LIMIT 10' \\\n  --param state=STRING:CA --max-gb 5\n",[589],{"type":42,"tag":50,"props":590,"children":591},{"__ignoreMap":216},[592,604,617,625,643],{"type":42,"tag":222,"props":593,"children":594},{"class":224,"line":225},[595,599],{"type":42,"tag":222,"props":596,"children":597},{"style":374},[598],{"type":47,"value":91},{"type":42,"tag":222,"props":600,"children":601},{"style":235},[602],{"type":47,"value":603}," \\\n",{"type":42,"tag":222,"props":605,"children":606},{"class":224,"line":268},[607,612],{"type":42,"tag":222,"props":608,"children":609},{"style":241},[610],{"type":47,"value":611},"  '",{"type":42,"tag":222,"props":613,"children":614},{"style":252},[615],{"type":47,"value":616},"SELECT name, SUM(number) AS total\n",{"type":42,"tag":222,"props":618,"children":619},{"class":224,"line":509},[620],{"type":42,"tag":222,"props":621,"children":622},{"style":252},[623],{"type":47,"value":624},"   FROM `bigquery-public-data.usa_names.usa_1910_current`\n",{"type":42,"tag":222,"props":626,"children":628},{"class":224,"line":627},4,[629,634,639],{"type":42,"tag":222,"props":630,"children":631},{"style":252},[632],{"type":47,"value":633},"   WHERE state = @state GROUP BY name ORDER BY total DESC LIMIT 10",{"type":42,"tag":222,"props":635,"children":636},{"style":241},[637],{"type":47,"value":638},"'",{"type":42,"tag":222,"props":640,"children":641},{"style":235},[642],{"type":47,"value":603},{"type":42,"tag":222,"props":644,"children":646},{"class":224,"line":645},5,[647,652,657,662],{"type":42,"tag":222,"props":648,"children":649},{"style":252},[650],{"type":47,"value":651},"  --param",{"type":42,"tag":222,"props":653,"children":654},{"style":252},[655],{"type":47,"value":656}," state=STRING:CA",{"type":42,"tag":222,"props":658,"children":659},{"style":252},[660],{"type":47,"value":661}," --max-gb",{"type":42,"tag":222,"props":663,"children":665},{"style":664},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[666],{"type":47,"value":667}," 5\n",{"type":42,"tag":95,"props":669,"children":670},{},[671,698,709,728,755],{"type":42,"tag":99,"props":672,"children":673},{},[674,676,681,683,688,690,696],{"type":47,"value":675},"SQL is one argument (single-quote it so backticked table names survive the shell) or stdin.\nInstance specifics come from ",{"type":42,"tag":50,"props":677,"children":679},{"className":678},[],[680],{"type":47,"value":347},{"type":47,"value":682}," \u002F ",{"type":42,"tag":50,"props":684,"children":686},{"className":685},[],[687],{"type":47,"value":420},{"type":47,"value":689}," above; ",{"type":42,"tag":50,"props":691,"children":693},{"className":692},[],[694],{"type":47,"value":695},"--project",{"type":47,"value":697}," overrides the billing\nproject.",{"type":42,"tag":99,"props":699,"children":700},{},[701,707],{"type":42,"tag":50,"props":702,"children":704},{"className":703},[],[705],{"type":47,"value":706},"--param NAME=TYPE:VALUE",{"type":47,"value":708}," (repeatable) sends named query parameters — prefer it over\ninterpolating values into the SQL string.",{"type":42,"tag":99,"props":710,"children":711},{},[712,718,720,726],{"type":42,"tag":50,"props":713,"children":715},{"className":714},[],[716],{"type":47,"value":717},"--dry-run",{"type":47,"value":719}," prints the bytes a query would scan without running it; ",{"type":42,"tag":50,"props":721,"children":723},{"className":722},[],[724],{"type":47,"value":725},"--max-gb N",{"type":47,"value":727}," makes the query\nfail rather than scan more than N GiB.",{"type":42,"tag":99,"props":729,"children":730},{},[731,737,739,745,747,753],{"type":42,"tag":50,"props":732,"children":734},{"className":733},[],[735],{"type":47,"value":736},"--max-rows N",{"type":47,"value":738}," caps fetched rows (default 10000, ",{"type":42,"tag":50,"props":740,"children":742},{"className":741},[],[743],{"type":47,"value":744},"0",{"type":47,"value":746}," = everything); ",{"type":42,"tag":50,"props":748,"children":750},{"className":749},[],[751],{"type":47,"value":752},"--json",{"type":47,"value":754}," emits one JSON\nobject per row instead of TSV with a header. Job ID, bytes scanned, and row counts go to stderr.",{"type":42,"tag":99,"props":756,"children":757},{},[758,760,765,767,773,775,781,783,789],{"type":47,"value":759},"Exit codes: ",{"type":42,"tag":50,"props":761,"children":763},{"className":762},[],[764],{"type":47,"value":744},{"type":47,"value":766}," success, ",{"type":42,"tag":50,"props":768,"children":770},{"className":769},[],[771],{"type":47,"value":772},"1",{"type":47,"value":774}," request or query failed (API message on stderr), ",{"type":42,"tag":50,"props":776,"children":778},{"className":777},[],[779],{"type":47,"value":780},"2",{"type":47,"value":782}," gave up waiting\nafter ",{"type":42,"tag":50,"props":784,"children":786},{"className":785},[],[787],{"type":47,"value":788},"--max-wait",{"type":47,"value":790}," seconds (default 600) — the job ID is on stderr; poll it with the endpoints\nbelow.",{"type":42,"tag":43,"props":792,"children":793},{},[794,796,801,803,808,810,816,818,823,825,830],{"type":47,"value":795},"If the script errors, read it — it's plain ",{"type":42,"tag":50,"props":797,"children":799},{"className":798},[],[800],{"type":47,"value":63},{"type":47,"value":802}," + ",{"type":42,"tag":50,"props":804,"children":806},{"className":805},[],[807],{"type":47,"value":582},{"type":47,"value":809}," — and debug against ",{"type":42,"tag":50,"props":811,"children":813},{"className":812},[],[814],{"type":47,"value":815},"references\u002Fapi.md",{"type":47,"value":817},".\nFor array\u002Fstruct parameters, destination tables or write disposition, ",{"type":42,"tag":50,"props":819,"children":821},{"className":820},[],[822],{"type":47,"value":154},{"type":47,"value":824}," priority, or\nnon-query jobs (load\u002Fextract\u002Fcopy), use ",{"type":42,"tag":50,"props":826,"children":828},{"className":827},[],[829],{"type":47,"value":131},{"type":47,"value":831}," directly (next operation).",{"type":42,"tag":523,"props":833,"children":835},{"id":834},"_2-submit-a-job-directly-jobsinsert-jobsget",[836,838,843,844,849],{"type":47,"value":837},"2. Submit a job directly (",{"type":42,"tag":50,"props":839,"children":841},{"className":840},[],[842],{"type":47,"value":131},{"type":47,"value":133},{"type":42,"tag":50,"props":845,"children":847},{"className":846},[],[848],{"type":47,"value":139},{"type":47,"value":535},{"type":42,"tag":43,"props":851,"children":852},{},[853,855,860,862,868,870,876],{"type":47,"value":854},"When you need a destination table, write disposition, ",{"type":42,"tag":50,"props":856,"children":858},{"className":857},[],[859],{"type":47,"value":154},{"type":47,"value":861}," priority, or a non-query job\n(load\u002Fextract\u002Fcopy), submit the job yourself and poll. ",{"type":42,"tag":50,"props":863,"children":865},{"className":864},[],[866],{"type":47,"value":867},"POST ${BQ}\u002Fjobs",{"type":47,"value":869}," returns immediately with a\n",{"type":42,"tag":50,"props":871,"children":873},{"className":872},[],[874],{"type":47,"value":875},"jobReference",{"type":47,"value":209},{"type":42,"tag":211,"props":878,"children":880},{"className":213,"code":879,"language":215,"meta":216,"style":216},"JOB=$(bq_curl -X POST \"${BQ}\u002Fjobs\" -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"configuration\": {\"query\": {\"query\": \"SELECT ...\", \"useLegacySql\": false}}}')\nJOB_ID=$(jq -r '.jobReference.jobId \u002F\u002F empty' \u003C\u003C\u003C\"$JOB\")\nLOCATION=$(jq -r '.jobReference.location \u002F\u002F empty' \u003C\u003C\u003C\"$JOB\")\n",[881],{"type":42,"tag":50,"props":882,"children":883},{"__ignoreMap":216},[884,953,980,1036],{"type":42,"tag":222,"props":885,"children":886},{"class":224,"line":225},[887,892,897,901,906,911,915,919,923,928,932,936,940,945,949],{"type":42,"tag":222,"props":888,"children":889},{"style":235},[890],{"type":47,"value":891},"JOB",{"type":42,"tag":222,"props":893,"children":894},{"style":241},[895],{"type":47,"value":896},"=$(",{"type":42,"tag":222,"props":898,"children":899},{"style":374},[900],{"type":47,"value":361},{"type":42,"tag":222,"props":902,"children":903},{"style":252},[904],{"type":47,"value":905}," -X",{"type":42,"tag":222,"props":907,"children":908},{"style":252},[909],{"type":47,"value":910}," POST",{"type":42,"tag":222,"props":912,"children":913},{"style":241},[914],{"type":47,"value":464},{"type":42,"tag":222,"props":916,"children":917},{"style":235},[918],{"type":47,"value":469},{"type":42,"tag":222,"props":920,"children":921},{"style":241},[922],{"type":47,"value":474},{"type":42,"tag":222,"props":924,"children":925},{"style":252},[926],{"type":47,"value":927},"\u002Fjobs",{"type":42,"tag":222,"props":929,"children":930},{"style":241},[931],{"type":47,"value":249},{"type":42,"tag":222,"props":933,"children":934},{"style":252},[935],{"type":47,"value":402},{"type":42,"tag":222,"props":937,"children":938},{"style":241},[939],{"type":47,"value":387},{"type":42,"tag":222,"props":941,"children":942},{"style":252},[943],{"type":47,"value":944},"Content-Type: application\u002Fjson",{"type":42,"tag":222,"props":946,"children":947},{"style":241},[948],{"type":47,"value":249},{"type":42,"tag":222,"props":950,"children":951},{"style":235},[952],{"type":47,"value":603},{"type":42,"tag":222,"props":954,"children":955},{"class":224,"line":268},[956,961,966,971,975],{"type":42,"tag":222,"props":957,"children":958},{"style":252},[959],{"type":47,"value":960},"  -d",{"type":42,"tag":222,"props":962,"children":963},{"style":241},[964],{"type":47,"value":965}," '",{"type":42,"tag":222,"props":967,"children":968},{"style":252},[969],{"type":47,"value":970},"{\"configuration\": {\"query\": {\"query\": \"SELECT ...\", \"useLegacySql\": false}}}",{"type":42,"tag":222,"props":972,"children":973},{"style":241},[974],{"type":47,"value":638},{"type":42,"tag":222,"props":976,"children":977},{"style":241},[978],{"type":47,"value":979},")\n",{"type":42,"tag":222,"props":981,"children":982},{"class":224,"line":509},[983,988,992,996,1001,1005,1010,1014,1019,1023,1028,1032],{"type":42,"tag":222,"props":984,"children":985},{"style":235},[986],{"type":47,"value":987},"JOB_ID",{"type":42,"tag":222,"props":989,"children":990},{"style":241},[991],{"type":47,"value":896},{"type":42,"tag":222,"props":993,"children":994},{"style":374},[995],{"type":47,"value":582},{"type":42,"tag":222,"props":997,"children":998},{"style":252},[999],{"type":47,"value":1000}," -r",{"type":42,"tag":222,"props":1002,"children":1003},{"style":241},[1004],{"type":47,"value":965},{"type":42,"tag":222,"props":1006,"children":1007},{"style":252},[1008],{"type":47,"value":1009},".jobReference.jobId \u002F\u002F empty",{"type":42,"tag":222,"props":1011,"children":1012},{"style":241},[1013],{"type":47,"value":638},{"type":42,"tag":222,"props":1015,"children":1016},{"style":241},[1017],{"type":47,"value":1018}," \u003C\u003C\u003C",{"type":42,"tag":222,"props":1020,"children":1021},{"style":241},[1022],{"type":47,"value":249},{"type":42,"tag":222,"props":1024,"children":1025},{"style":235},[1026],{"type":47,"value":1027},"$JOB",{"type":42,"tag":222,"props":1029,"children":1030},{"style":241},[1031],{"type":47,"value":249},{"type":42,"tag":222,"props":1033,"children":1034},{"style":241},[1035],{"type":47,"value":979},{"type":42,"tag":222,"props":1037,"children":1038},{"class":224,"line":627},[1039,1044,1048,1052,1056,1060,1065,1069,1073,1077,1081,1085],{"type":42,"tag":222,"props":1040,"children":1041},{"style":235},[1042],{"type":47,"value":1043},"LOCATION",{"type":42,"tag":222,"props":1045,"children":1046},{"style":241},[1047],{"type":47,"value":896},{"type":42,"tag":222,"props":1049,"children":1050},{"style":374},[1051],{"type":47,"value":582},{"type":42,"tag":222,"props":1053,"children":1054},{"style":252},[1055],{"type":47,"value":1000},{"type":42,"tag":222,"props":1057,"children":1058},{"style":241},[1059],{"type":47,"value":965},{"type":42,"tag":222,"props":1061,"children":1062},{"style":252},[1063],{"type":47,"value":1064},".jobReference.location \u002F\u002F empty",{"type":42,"tag":222,"props":1066,"children":1067},{"style":241},[1068],{"type":47,"value":638},{"type":42,"tag":222,"props":1070,"children":1071},{"style":241},[1072],{"type":47,"value":1018},{"type":42,"tag":222,"props":1074,"children":1075},{"style":241},[1076],{"type":47,"value":249},{"type":42,"tag":222,"props":1078,"children":1079},{"style":235},[1080],{"type":47,"value":1027},{"type":42,"tag":222,"props":1082,"children":1083},{"style":241},[1084],{"type":47,"value":249},{"type":42,"tag":222,"props":1086,"children":1087},{"style":241},[1088],{"type":47,"value":979},{"type":42,"tag":43,"props":1090,"children":1091},{},[1092,1094,1100,1102,1108,1110,1116,1118,1123,1125,1131,1133,1139,1141,1146],{"type":47,"value":1093},"Then poll ",{"type":42,"tag":50,"props":1095,"children":1097},{"className":1096},[],[1098],{"type":47,"value":1099},"GET ${BQ}\u002Fjobs\u002F${JOB_ID}?location=${LOCATION}",{"type":47,"value":1101}," until ",{"type":42,"tag":50,"props":1103,"children":1105},{"className":1104},[],[1106],{"type":47,"value":1107},".status.state",{"type":47,"value":1109}," is ",{"type":42,"tag":50,"props":1111,"children":1113},{"className":1112},[],[1114],{"type":47,"value":1115},"DONE",{"type":47,"value":1117}," — sleep\nbetween calls and bound the loop (",{"type":42,"tag":50,"props":1119,"children":1121},{"className":1120},[],[1122],{"type":47,"value":91},{"type":47,"value":1124}," is the reference implementation). The full\n",{"type":42,"tag":50,"props":1126,"children":1128},{"className":1127},[],[1129],{"type":47,"value":1130},"configuration.query",{"type":47,"value":1132}," body — destination table, write disposition, ",{"type":42,"tag":50,"props":1134,"children":1136},{"className":1135},[],[1137],{"type":47,"value":1138},"maximumBytesBilled",{"type":47,"value":1140},", priority,\nparameters — is in ",{"type":42,"tag":50,"props":1142,"children":1144},{"className":1143},[],[1145],{"type":47,"value":815},{"type":47,"value":1147},", section Query job configuration.",{"type":42,"tag":95,"props":1149,"children":1150},{},[1151,1171,1183,1203],{"type":42,"tag":99,"props":1152,"children":1153},{},[1154,1156,1161,1163,1169],{"type":47,"value":1155},"If ",{"type":42,"tag":50,"props":1157,"children":1159},{"className":1158},[],[1160],{"type":47,"value":987},{"type":47,"value":1162}," came back empty the insert itself failed; surface ",{"type":42,"tag":50,"props":1164,"children":1166},{"className":1165},[],[1167],{"type":47,"value":1168},".error",{"type":47,"value":1170}," instead of polling.",{"type":42,"tag":99,"props":1172,"children":1173},{},[1174,1176,1181],{"type":47,"value":1175},"Always pass ",{"type":42,"tag":50,"props":1177,"children":1179},{"className":1178},[],[1180],{"type":47,"value":546},{"type":47,"value":1182}," back when polling — a job is pinned to the location it ran in, and\nomitting it can 404 for non-US datasets.",{"type":42,"tag":99,"props":1184,"children":1185},{},[1186,1188,1193,1195,1201],{"type":47,"value":1187},"A ",{"type":42,"tag":50,"props":1189,"children":1191},{"className":1190},[],[1192],{"type":47,"value":1115},{"type":47,"value":1194}," job can still have failed: check ",{"type":42,"tag":50,"props":1196,"children":1198},{"className":1197},[],[1199],{"type":47,"value":1200},".status.errorResult",{"type":47,"value":1202}," before fetching results.",{"type":42,"tag":99,"props":1204,"children":1205},{},[1206,1208,1214,1216,1222,1224,1230,1232,1238],{"type":47,"value":1207},"Fetch a query job's rows with ",{"type":42,"tag":50,"props":1209,"children":1211},{"className":1210},[],[1212],{"type":47,"value":1213},"GET ${BQ}\u002Fqueries\u002F${JOB_ID}?location=${LOCATION}&maxResults=1000",{"type":47,"value":1215}," —\ncells come back as ",{"type":42,"tag":50,"props":1217,"children":1219},{"className":1218},[],[1220],{"type":47,"value":1221},"{\"f\": [{\"v\": \"...\"}]}",{"type":47,"value":1223}," in schema order (column names in\n",{"type":42,"tag":50,"props":1225,"children":1227},{"className":1226},[],[1228],{"type":47,"value":1229},".schema.fields[].name",{"type":47,"value":1231},"); more pages follow ",{"type":42,"tag":50,"props":1233,"children":1235},{"className":1234},[],[1236],{"type":47,"value":1237},".pageToken",{"type":47,"value":1239}," (see Pagination).",{"type":42,"tag":523,"props":1241,"children":1243},{"id":1242},"_3-cancel-a-running-job",[1244],{"type":47,"value":1245},"3. Cancel a running job",{"type":42,"tag":211,"props":1247,"children":1249},{"className":213,"code":1248,"language":215,"meta":216,"style":216},"bq_curl -X POST \"${BQ}\u002Fjobs\u002F${JOB_ID}\u002Fcancel?location=${LOCATION}\" | jq '.job.status \u002F\u002F .error'\n",[1250],{"type":42,"tag":50,"props":1251,"children":1252},{"__ignoreMap":216},[1253],{"type":42,"tag":222,"props":1254,"children":1255},{"class":224,"line":225},[1256,1260,1264,1268,1272,1276,1280,1285,1289,1293,1297,1302,1306,1310,1314,1318,1322,1326,1331],{"type":42,"tag":222,"props":1257,"children":1258},{"style":374},[1259],{"type":47,"value":361},{"type":42,"tag":222,"props":1261,"children":1262},{"style":252},[1263],{"type":47,"value":905},{"type":42,"tag":222,"props":1265,"children":1266},{"style":252},[1267],{"type":47,"value":910},{"type":42,"tag":222,"props":1269,"children":1270},{"style":241},[1271],{"type":47,"value":464},{"type":42,"tag":222,"props":1273,"children":1274},{"style":235},[1275],{"type":47,"value":469},{"type":42,"tag":222,"props":1277,"children":1278},{"style":241},[1279],{"type":47,"value":474},{"type":42,"tag":222,"props":1281,"children":1282},{"style":252},[1283],{"type":47,"value":1284},"\u002Fjobs\u002F",{"type":42,"tag":222,"props":1286,"children":1287},{"style":241},[1288],{"type":47,"value":342},{"type":42,"tag":222,"props":1290,"children":1291},{"style":235},[1292],{"type":47,"value":987},{"type":42,"tag":222,"props":1294,"children":1295},{"style":241},[1296],{"type":47,"value":474},{"type":42,"tag":222,"props":1298,"children":1299},{"style":252},[1300],{"type":47,"value":1301},"\u002Fcancel?location=",{"type":42,"tag":222,"props":1303,"children":1304},{"style":241},[1305],{"type":47,"value":342},{"type":42,"tag":222,"props":1307,"children":1308},{"style":235},[1309],{"type":47,"value":1043},{"type":42,"tag":222,"props":1311,"children":1312},{"style":241},[1313],{"type":47,"value":425},{"type":42,"tag":222,"props":1315,"children":1316},{"style":241},[1317],{"type":47,"value":488},{"type":42,"tag":222,"props":1319,"children":1320},{"style":374},[1321],{"type":47,"value":493},{"type":42,"tag":222,"props":1323,"children":1324},{"style":241},[1325],{"type":47,"value":965},{"type":42,"tag":222,"props":1327,"children":1328},{"style":252},[1329],{"type":47,"value":1330},".job.status \u002F\u002F .error",{"type":42,"tag":222,"props":1332,"children":1333},{"style":241},[1334],{"type":47,"value":1335},"'\n",{"type":42,"tag":43,"props":1337,"children":1338},{},[1339,1341,1346],{"type":47,"value":1340},"Cancellation is best-effort; poll ",{"type":42,"tag":50,"props":1342,"children":1344},{"className":1343},[],[1345],{"type":47,"value":139},{"type":47,"value":1347}," to confirm.",{"type":42,"tag":523,"props":1349,"children":1351},{"id":1350},"_4-list-recent-jobs",[1352],{"type":47,"value":1353},"4. List recent jobs",{"type":42,"tag":211,"props":1355,"children":1357},{"className":213,"code":1356,"language":215,"meta":216,"style":216},"bq_curl \"${BQ}\u002Fjobs?maxResults=20&projection=full&allUsers=false&stateFilter=done\" \\\n  | jq '.jobs[]? | {id: .jobReference.jobId, state: .status.state, query: (.configuration.query.query \u002F\u002F \"\" | .[0:80]), bytes: .statistics.query.totalBytesProcessed}'\n",[1358],{"type":42,"tag":50,"props":1359,"children":1360},{"__ignoreMap":216},[1361,1393],{"type":42,"tag":222,"props":1362,"children":1363},{"class":224,"line":225},[1364,1368,1372,1376,1380,1385,1389],{"type":42,"tag":222,"props":1365,"children":1366},{"style":374},[1367],{"type":47,"value":361},{"type":42,"tag":222,"props":1369,"children":1370},{"style":241},[1371],{"type":47,"value":464},{"type":42,"tag":222,"props":1373,"children":1374},{"style":235},[1375],{"type":47,"value":469},{"type":42,"tag":222,"props":1377,"children":1378},{"style":241},[1379],{"type":47,"value":474},{"type":42,"tag":222,"props":1381,"children":1382},{"style":252},[1383],{"type":47,"value":1384},"\u002Fjobs?maxResults=20&projection=full&allUsers=false&stateFilter=done",{"type":42,"tag":222,"props":1386,"children":1387},{"style":241},[1388],{"type":47,"value":249},{"type":42,"tag":222,"props":1390,"children":1391},{"style":235},[1392],{"type":47,"value":603},{"type":42,"tag":222,"props":1394,"children":1395},{"class":224,"line":268},[1396,1401,1405,1409,1414],{"type":42,"tag":222,"props":1397,"children":1398},{"style":241},[1399],{"type":47,"value":1400},"  |",{"type":42,"tag":222,"props":1402,"children":1403},{"style":374},[1404],{"type":47,"value":493},{"type":42,"tag":222,"props":1406,"children":1407},{"style":241},[1408],{"type":47,"value":965},{"type":42,"tag":222,"props":1410,"children":1411},{"style":252},[1412],{"type":47,"value":1413},".jobs[]? | {id: .jobReference.jobId, state: .status.state, query: (.configuration.query.query \u002F\u002F \"\" | .[0:80]), bytes: .statistics.query.totalBytesProcessed}",{"type":42,"tag":222,"props":1415,"children":1416},{"style":241},[1417],{"type":47,"value":1335},{"type":42,"tag":523,"props":1419,"children":1421},{"id":1420},"_5-list-datasets",[1422],{"type":47,"value":1423},"5. List datasets",{"type":42,"tag":211,"props":1425,"children":1427},{"className":213,"code":1426,"language":215,"meta":216,"style":216},"bq_curl \"${BQ}\u002Fdatasets?maxResults=100\" \\\n  | jq '.datasets[]? | {id: .datasetReference.datasetId, location}'\n",[1428],{"type":42,"tag":50,"props":1429,"children":1430},{"__ignoreMap":216},[1431,1463],{"type":42,"tag":222,"props":1432,"children":1433},{"class":224,"line":225},[1434,1438,1442,1446,1450,1455,1459],{"type":42,"tag":222,"props":1435,"children":1436},{"style":374},[1437],{"type":47,"value":361},{"type":42,"tag":222,"props":1439,"children":1440},{"style":241},[1441],{"type":47,"value":464},{"type":42,"tag":222,"props":1443,"children":1444},{"style":235},[1445],{"type":47,"value":469},{"type":42,"tag":222,"props":1447,"children":1448},{"style":241},[1449],{"type":47,"value":474},{"type":42,"tag":222,"props":1451,"children":1452},{"style":252},[1453],{"type":47,"value":1454},"\u002Fdatasets?maxResults=100",{"type":42,"tag":222,"props":1456,"children":1457},{"style":241},[1458],{"type":47,"value":249},{"type":42,"tag":222,"props":1460,"children":1461},{"style":235},[1462],{"type":47,"value":603},{"type":42,"tag":222,"props":1464,"children":1465},{"class":224,"line":268},[1466,1470,1474,1478,1483],{"type":42,"tag":222,"props":1467,"children":1468},{"style":241},[1469],{"type":47,"value":1400},{"type":42,"tag":222,"props":1471,"children":1472},{"style":374},[1473],{"type":47,"value":493},{"type":42,"tag":222,"props":1475,"children":1476},{"style":241},[1477],{"type":47,"value":965},{"type":42,"tag":222,"props":1479,"children":1480},{"style":252},[1481],{"type":47,"value":1482},".datasets[]? | {id: .datasetReference.datasetId, location}",{"type":42,"tag":222,"props":1484,"children":1485},{"style":241},[1486],{"type":47,"value":1335},{"type":42,"tag":43,"props":1488,"children":1489},{},[1490,1492,1498,1500,1506],{"type":47,"value":1491},"Pass ",{"type":42,"tag":50,"props":1493,"children":1495},{"className":1494},[],[1496],{"type":47,"value":1497},"?all=true",{"type":47,"value":1499}," to include hidden datasets. For a different project's datasets, swap the project in the URL (you need ",{"type":42,"tag":50,"props":1501,"children":1503},{"className":1502},[],[1504],{"type":47,"value":1505},"bigquery.datasets.get",{"type":47,"value":1507}," there).",{"type":42,"tag":523,"props":1509,"children":1511},{"id":1510},"_6-list-tables-in-a-dataset",[1512],{"type":47,"value":1513},"6. List tables in a dataset",{"type":42,"tag":211,"props":1515,"children":1517},{"className":213,"code":1516,"language":215,"meta":216,"style":216},"DATASET=\"my_dataset\"\nbq_curl \"${BQ}\u002Fdatasets\u002F${DATASET}\u002Ftables?maxResults=100\" \\\n  | jq '.tables[]? | {id: .tableReference.tableId, type, creationTime}'\n",[1518],{"type":42,"tag":50,"props":1519,"children":1520},{"__ignoreMap":216},[1521,1547,1596],{"type":42,"tag":222,"props":1522,"children":1523},{"class":224,"line":225},[1524,1529,1533,1537,1542],{"type":42,"tag":222,"props":1525,"children":1526},{"style":235},[1527],{"type":47,"value":1528},"DATASET",{"type":42,"tag":222,"props":1530,"children":1531},{"style":241},[1532],{"type":47,"value":244},{"type":42,"tag":222,"props":1534,"children":1535},{"style":241},[1536],{"type":47,"value":249},{"type":42,"tag":222,"props":1538,"children":1539},{"style":252},[1540],{"type":47,"value":1541},"my_dataset",{"type":42,"tag":222,"props":1543,"children":1544},{"style":241},[1545],{"type":47,"value":1546},"\"\n",{"type":42,"tag":222,"props":1548,"children":1549},{"class":224,"line":268},[1550,1554,1558,1562,1566,1571,1575,1579,1583,1588,1592],{"type":42,"tag":222,"props":1551,"children":1552},{"style":374},[1553],{"type":47,"value":361},{"type":42,"tag":222,"props":1555,"children":1556},{"style":241},[1557],{"type":47,"value":464},{"type":42,"tag":222,"props":1559,"children":1560},{"style":235},[1561],{"type":47,"value":469},{"type":42,"tag":222,"props":1563,"children":1564},{"style":241},[1565],{"type":47,"value":474},{"type":42,"tag":222,"props":1567,"children":1568},{"style":252},[1569],{"type":47,"value":1570},"\u002Fdatasets\u002F",{"type":42,"tag":222,"props":1572,"children":1573},{"style":241},[1574],{"type":47,"value":342},{"type":42,"tag":222,"props":1576,"children":1577},{"style":235},[1578],{"type":47,"value":1528},{"type":42,"tag":222,"props":1580,"children":1581},{"style":241},[1582],{"type":47,"value":474},{"type":42,"tag":222,"props":1584,"children":1585},{"style":252},[1586],{"type":47,"value":1587},"\u002Ftables?maxResults=100",{"type":42,"tag":222,"props":1589,"children":1590},{"style":241},[1591],{"type":47,"value":249},{"type":42,"tag":222,"props":1593,"children":1594},{"style":235},[1595],{"type":47,"value":603},{"type":42,"tag":222,"props":1597,"children":1598},{"class":224,"line":509},[1599,1603,1607,1611,1616],{"type":42,"tag":222,"props":1600,"children":1601},{"style":241},[1602],{"type":47,"value":1400},{"type":42,"tag":222,"props":1604,"children":1605},{"style":374},[1606],{"type":47,"value":493},{"type":42,"tag":222,"props":1608,"children":1609},{"style":241},[1610],{"type":47,"value":965},{"type":42,"tag":222,"props":1612,"children":1613},{"style":252},[1614],{"type":47,"value":1615},".tables[]? | {id: .tableReference.tableId, type, creationTime}",{"type":42,"tag":222,"props":1617,"children":1618},{"style":241},[1619],{"type":47,"value":1335},{"type":42,"tag":43,"props":1621,"children":1622},{},[1623,1629,1630,1636,1638,1644,1645,1651,1652,1658,1660,1666],{"type":42,"tag":50,"props":1624,"children":1626},{"className":1625},[],[1627],{"type":47,"value":1628},"type",{"type":47,"value":1109},{"type":42,"tag":50,"props":1631,"children":1633},{"className":1632},[],[1634],{"type":47,"value":1635},"TABLE",{"type":47,"value":1637},", ",{"type":42,"tag":50,"props":1639,"children":1641},{"className":1640},[],[1642],{"type":47,"value":1643},"VIEW",{"type":47,"value":1637},{"type":42,"tag":50,"props":1646,"children":1648},{"className":1647},[],[1649],{"type":47,"value":1650},"EXTERNAL",{"type":47,"value":1637},{"type":42,"tag":50,"props":1653,"children":1655},{"className":1654},[],[1656],{"type":47,"value":1657},"MATERIALIZED_VIEW",{"type":47,"value":1659},", or ",{"type":42,"tag":50,"props":1661,"children":1663},{"className":1662},[],[1664],{"type":47,"value":1665},"SNAPSHOT",{"type":47,"value":1667},".",{"type":42,"tag":523,"props":1669,"children":1671},{"id":1670},"_7-get-a-tables-schema-and-size",[1672],{"type":47,"value":1673},"7. Get a table's schema and size",{"type":42,"tag":211,"props":1675,"children":1677},{"className":213,"code":1676,"language":215,"meta":216,"style":216},"TABLE=\"events\"\nbq_curl \"${BQ}\u002Fdatasets\u002F${DATASET}\u002Ftables\u002F${TABLE}\" \\\n  | jq '{rows: .numRows, bytes: .numBytes, partitioning: .timePartitioning, schema: [.schema.fields[]? | {name, type, mode}]}'\n",[1678],{"type":42,"tag":50,"props":1679,"children":1680},{"__ignoreMap":216},[1681,1705,1761],{"type":42,"tag":222,"props":1682,"children":1683},{"class":224,"line":225},[1684,1688,1692,1696,1701],{"type":42,"tag":222,"props":1685,"children":1686},{"style":235},[1687],{"type":47,"value":1635},{"type":42,"tag":222,"props":1689,"children":1690},{"style":241},[1691],{"type":47,"value":244},{"type":42,"tag":222,"props":1693,"children":1694},{"style":241},[1695],{"type":47,"value":249},{"type":42,"tag":222,"props":1697,"children":1698},{"style":252},[1699],{"type":47,"value":1700},"events",{"type":42,"tag":222,"props":1702,"children":1703},{"style":241},[1704],{"type":47,"value":1546},{"type":42,"tag":222,"props":1706,"children":1707},{"class":224,"line":268},[1708,1712,1716,1720,1724,1728,1732,1736,1740,1745,1749,1753,1757],{"type":42,"tag":222,"props":1709,"children":1710},{"style":374},[1711],{"type":47,"value":361},{"type":42,"tag":222,"props":1713,"children":1714},{"style":241},[1715],{"type":47,"value":464},{"type":42,"tag":222,"props":1717,"children":1718},{"style":235},[1719],{"type":47,"value":469},{"type":42,"tag":222,"props":1721,"children":1722},{"style":241},[1723],{"type":47,"value":474},{"type":42,"tag":222,"props":1725,"children":1726},{"style":252},[1727],{"type":47,"value":1570},{"type":42,"tag":222,"props":1729,"children":1730},{"style":241},[1731],{"type":47,"value":342},{"type":42,"tag":222,"props":1733,"children":1734},{"style":235},[1735],{"type":47,"value":1528},{"type":42,"tag":222,"props":1737,"children":1738},{"style":241},[1739],{"type":47,"value":474},{"type":42,"tag":222,"props":1741,"children":1742},{"style":252},[1743],{"type":47,"value":1744},"\u002Ftables\u002F",{"type":42,"tag":222,"props":1746,"children":1747},{"style":241},[1748],{"type":47,"value":342},{"type":42,"tag":222,"props":1750,"children":1751},{"style":235},[1752],{"type":47,"value":1635},{"type":42,"tag":222,"props":1754,"children":1755},{"style":241},[1756],{"type":47,"value":425},{"type":42,"tag":222,"props":1758,"children":1759},{"style":235},[1760],{"type":47,"value":603},{"type":42,"tag":222,"props":1762,"children":1763},{"class":224,"line":509},[1764,1768,1772,1776,1781],{"type":42,"tag":222,"props":1765,"children":1766},{"style":241},[1767],{"type":47,"value":1400},{"type":42,"tag":222,"props":1769,"children":1770},{"style":374},[1771],{"type":47,"value":493},{"type":42,"tag":222,"props":1773,"children":1774},{"style":241},[1775],{"type":47,"value":965},{"type":42,"tag":222,"props":1777,"children":1778},{"style":252},[1779],{"type":47,"value":1780},"{rows: .numRows, bytes: .numBytes, partitioning: .timePartitioning, schema: [.schema.fields[]? | {name, type, mode}]}",{"type":42,"tag":222,"props":1782,"children":1783},{"style":241},[1784],{"type":47,"value":1335},{"type":42,"tag":43,"props":1786,"children":1787},{},[1788,1790,1796,1798,1804],{"type":47,"value":1789},"Nested columns appear as ",{"type":42,"tag":50,"props":1791,"children":1793},{"className":1792},[],[1794],{"type":47,"value":1795},"type: \"RECORD\"",{"type":47,"value":1797}," with their own ",{"type":42,"tag":50,"props":1799,"children":1801},{"className":1800},[],[1802],{"type":47,"value":1803},"fields[]",{"type":47,"value":1805}," — recurse if you need the full tree.",{"type":42,"tag":523,"props":1807,"children":1809},{"id":1808},"_8-preview-table-rows-without-a-query-tabledatalist",[1810,1812,1818],{"type":47,"value":1811},"8. Preview table rows without a query (",{"type":42,"tag":50,"props":1813,"children":1815},{"className":1814},[],[1816],{"type":47,"value":1817},"tabledata.list",{"type":47,"value":535},{"type":42,"tag":43,"props":1820,"children":1821},{},[1822],{"type":47,"value":1823},"Reads rows directly from storage — no query job, no bytes-scanned cost.",{"type":42,"tag":211,"props":1825,"children":1827},{"className":213,"code":1826,"language":215,"meta":216,"style":216},"bq_curl \"${BQ}\u002Fdatasets\u002F${DATASET}\u002Ftables\u002F${TABLE}\u002Fdata?maxResults=10\" \\\n  | jq '.rows[]?.f | map(.v)'\n",[1828],{"type":42,"tag":50,"props":1829,"children":1830},{"__ignoreMap":216},[1831,1895],{"type":42,"tag":222,"props":1832,"children":1833},{"class":224,"line":225},[1834,1838,1842,1846,1850,1854,1858,1862,1866,1870,1874,1878,1882,1887,1891],{"type":42,"tag":222,"props":1835,"children":1836},{"style":374},[1837],{"type":47,"value":361},{"type":42,"tag":222,"props":1839,"children":1840},{"style":241},[1841],{"type":47,"value":464},{"type":42,"tag":222,"props":1843,"children":1844},{"style":235},[1845],{"type":47,"value":469},{"type":42,"tag":222,"props":1847,"children":1848},{"style":241},[1849],{"type":47,"value":474},{"type":42,"tag":222,"props":1851,"children":1852},{"style":252},[1853],{"type":47,"value":1570},{"type":42,"tag":222,"props":1855,"children":1856},{"style":241},[1857],{"type":47,"value":342},{"type":42,"tag":222,"props":1859,"children":1860},{"style":235},[1861],{"type":47,"value":1528},{"type":42,"tag":222,"props":1863,"children":1864},{"style":241},[1865],{"type":47,"value":474},{"type":42,"tag":222,"props":1867,"children":1868},{"style":252},[1869],{"type":47,"value":1744},{"type":42,"tag":222,"props":1871,"children":1872},{"style":241},[1873],{"type":47,"value":342},{"type":42,"tag":222,"props":1875,"children":1876},{"style":235},[1877],{"type":47,"value":1635},{"type":42,"tag":222,"props":1879,"children":1880},{"style":241},[1881],{"type":47,"value":474},{"type":42,"tag":222,"props":1883,"children":1884},{"style":252},[1885],{"type":47,"value":1886},"\u002Fdata?maxResults=10",{"type":42,"tag":222,"props":1888,"children":1889},{"style":241},[1890],{"type":47,"value":249},{"type":42,"tag":222,"props":1892,"children":1893},{"style":235},[1894],{"type":47,"value":603},{"type":42,"tag":222,"props":1896,"children":1897},{"class":224,"line":268},[1898,1902,1906,1910,1915],{"type":42,"tag":222,"props":1899,"children":1900},{"style":241},[1901],{"type":47,"value":1400},{"type":42,"tag":222,"props":1903,"children":1904},{"style":374},[1905],{"type":47,"value":493},{"type":42,"tag":222,"props":1907,"children":1908},{"style":241},[1909],{"type":47,"value":965},{"type":42,"tag":222,"props":1911,"children":1912},{"style":252},[1913],{"type":47,"value":1914},".rows[]?.f | map(.v)",{"type":42,"tag":222,"props":1916,"children":1917},{"style":241},[1918],{"type":47,"value":1335},{"type":42,"tag":163,"props":1920,"children":1922},{"id":1921},"pagination",[1923],{"type":47,"value":1924},"Pagination",{"type":42,"tag":43,"props":1926,"children":1927},{},[1928,1930,1936,1938,1944,1946,1951,1953,1959],{"type":47,"value":1929},"Every list-style endpoint uses the same scheme: the response carries a token when there's more, and you pass it back as ",{"type":42,"tag":50,"props":1931,"children":1933},{"className":1932},[],[1934],{"type":47,"value":1935},"?pageToken=",{"type":47,"value":1937}," on the next call. Stop when the field is absent. ",{"type":42,"tag":50,"props":1939,"children":1941},{"className":1940},[],[1942],{"type":47,"value":1943},"maxResults",{"type":47,"value":1945}," caps a single page; the actual API ceilings are size-based (~10 MB per ",{"type":42,"tag":50,"props":1947,"children":1949},{"className":1948},[],[1950],{"type":47,"value":1817},{"type":47,"value":1952}," page, ~20 MB per ",{"type":42,"tag":50,"props":1954,"children":1956},{"className":1955},[],[1957],{"type":47,"value":1958},"getQueryResults",{"type":47,"value":1960}," page) rather than a fixed row count — the bundled script defaults to 1000 rows per page.",{"type":42,"tag":43,"props":1962,"children":1963},{},[1964],{"type":47,"value":1965},"The response field name is not uniform — check which one your endpoint returns:",{"type":42,"tag":95,"props":1967,"children":1968},{},[1969,1998],{"type":42,"tag":99,"props":1970,"children":1971},{},[1972,1978,1980,1985,1986,1991,1992,1997],{"type":42,"tag":50,"props":1973,"children":1975},{"className":1974},[],[1976],{"type":47,"value":1977},"pageToken",{"type":47,"value":1979}," — ",{"type":42,"tag":50,"props":1981,"children":1983},{"className":1982},[],[1984],{"type":47,"value":114},{"type":47,"value":1637},{"type":42,"tag":50,"props":1987,"children":1989},{"className":1988},[],[1990],{"type":47,"value":146},{"type":47,"value":1637},{"type":42,"tag":50,"props":1993,"children":1995},{"className":1994},[],[1996],{"type":47,"value":1817},{"type":47,"value":1667},{"type":42,"tag":99,"props":1999,"children":2000},{},[2001,2007,2008,2014,2015,2021,2022,2028,2029,2035,2036,2042],{"type":42,"tag":50,"props":2002,"children":2004},{"className":2003},[],[2005],{"type":47,"value":2006},"nextPageToken",{"type":47,"value":1979},{"type":42,"tag":50,"props":2009,"children":2011},{"className":2010},[],[2012],{"type":47,"value":2013},"datasets.list",{"type":47,"value":1637},{"type":42,"tag":50,"props":2016,"children":2018},{"className":2017},[],[2019],{"type":47,"value":2020},"tables.list",{"type":47,"value":1637},{"type":42,"tag":50,"props":2023,"children":2025},{"className":2024},[],[2026],{"type":47,"value":2027},"jobs.list",{"type":47,"value":1637},{"type":42,"tag":50,"props":2030,"children":2032},{"className":2031},[],[2033],{"type":47,"value":2034},"routines.list",{"type":47,"value":1637},{"type":42,"tag":50,"props":2037,"children":2039},{"className":2038},[],[2040],{"type":47,"value":2041},"models.list",{"type":47,"value":1667},{"type":42,"tag":43,"props":2044,"children":2045},{},[2046,2048,2053,2055,2060,2062,2068],{"type":47,"value":2047},"Reading ",{"type":42,"tag":50,"props":2049,"children":2051},{"className":2050},[],[2052],{"type":47,"value":1237},{"type":47,"value":2054}," on a ",{"type":42,"tag":50,"props":2056,"children":2058},{"className":2057},[],[2059],{"type":47,"value":2013},{"type":47,"value":2061}," response silently yields ",{"type":42,"tag":50,"props":2063,"children":2065},{"className":2064},[],[2066],{"type":47,"value":2067},"null",{"type":47,"value":2069}," and you get one page.",{"type":42,"tag":43,"props":2071,"children":2072},{},[2073,2075,2080,2082,2087,2089,2095],{"type":47,"value":2074},"Query results add one wrinkle: ",{"type":42,"tag":50,"props":2076,"children":2078},{"className":2077},[],[2079],{"type":47,"value":114},{"type":47,"value":2081}," and ",{"type":42,"tag":50,"props":2083,"children":2085},{"className":2084},[],[2086],{"type":47,"value":146},{"type":47,"value":2088}," also return ",{"type":42,"tag":50,"props":2090,"children":2092},{"className":2091},[],[2093],{"type":47,"value":2094},"totalRows",{"type":47,"value":2096},", which is the full count even when a single page is smaller — use it to size progress bars, not as a stop condition.",{"type":42,"tag":163,"props":2098,"children":2100},{"id":2099},"rate-limits-quotas",[2101],{"type":47,"value":2102},"Rate limits & quotas",{"type":42,"tag":43,"props":2104,"children":2105},{},[2106],{"type":47,"value":2107},"BigQuery enforces per-project quotas rather than per-request rate limits. The ones you'll hit:",{"type":42,"tag":95,"props":2109,"children":2110},{},[2111,2135,2166],{"type":42,"tag":99,"props":2112,"children":2113},{},[2114,2119,2121,2127,2128,2134],{"type":42,"tag":72,"props":2115,"children":2116},{},[2117],{"type":47,"value":2118},"Concurrent queries",{"type":47,"value":2120},": BigQuery decides how many queries run at once (dynamic concurrency) and queues the rest — up to 1,000 queued interactive queries per project per region. Past that, submits fail with ",{"type":42,"tag":50,"props":2122,"children":2124},{"className":2123},[],[2125],{"type":47,"value":2126},"quotaExceeded",{"type":47,"value":682},{"type":42,"tag":50,"props":2129,"children":2131},{"className":2130},[],[2132],{"type":47,"value":2133},"jobRateLimitExceeded",{"type":47,"value":1667},{"type":42,"tag":99,"props":2136,"children":2137},{},[2138,2143,2145,2150,2151,2156,2158,2164],{"type":42,"tag":72,"props":2139,"children":2140},{},[2141],{"type":47,"value":2142},"API requests",{"type":47,"value":2144},": most methods are capped at ~100 requests per second per user per method (",{"type":42,"tag":50,"props":2146,"children":2148},{"className":2147},[],[2149],{"type":47,"value":139},{"type":47,"value":2081},{"type":42,"tag":50,"props":2152,"children":2154},{"className":2153},[],[2155],{"type":47,"value":1817},{"type":47,"value":2157}," allow more) — poll with a ",{"type":42,"tag":50,"props":2159,"children":2161},{"className":2160},[],[2162],{"type":47,"value":2163},"sleep",{"type":47,"value":2165},", not a hot loop.",{"type":42,"tag":99,"props":2167,"children":2168},{},[2169,2174,2175,2180],{"type":42,"tag":72,"props":2170,"children":2171},{},[2172],{"type":47,"value":2173},"On-demand bytes scanned",{"type":47,"value":2081},{"type":42,"tag":72,"props":2176,"children":2177},{},[2178],{"type":47,"value":2179},"slot-time",{"type":47,"value":2181}," quotas depend on your billing model.",{"type":42,"tag":43,"props":2183,"children":2184},{},[2185,2191,2192,2198,2199,2204,2206,2212],{"type":42,"tag":50,"props":2186,"children":2188},{"className":2187},[],[2189],{"type":47,"value":2190},"429",{"type":47,"value":2081},{"type":42,"tag":50,"props":2193,"children":2195},{"className":2194},[],[2196],{"type":47,"value":2197},"403 rateLimitExceeded",{"type":47,"value":682},{"type":42,"tag":50,"props":2200,"children":2202},{"className":2201},[],[2203],{"type":47,"value":2126},{"type":47,"value":2205}," responses carry a retryable reason in ",{"type":42,"tag":50,"props":2207,"children":2209},{"className":2208},[],[2210],{"type":47,"value":2211},"error.errors[].reason",{"type":47,"value":2213},". Back off exponentially and retry; don't tighten the poll interval.",{"type":42,"tag":163,"props":2215,"children":2217},{"id":2216},"error-handling",[2218],{"type":47,"value":2219},"Error handling",{"type":42,"tag":43,"props":2221,"children":2222},{},[2223,2225,2231,2233,2238,2240,2246],{"type":47,"value":2224},"Every error response is ",{"type":42,"tag":50,"props":2226,"children":2228},{"className":2227},[],[2229],{"type":47,"value":2230},"{\"error\": {\"code\": N, \"message\": \"...\", \"errors\": [{\"reason\": \"...\"}]}}",{"type":47,"value":2232}," — check ",{"type":42,"tag":50,"props":2234,"children":2236},{"className":2235},[],[2237],{"type":47,"value":1168},{"type":47,"value":2239}," before projecting. The ",{"type":42,"tag":50,"props":2241,"children":2243},{"className":2242},[],[2244],{"type":47,"value":2245},"reason",{"type":47,"value":2247}," string is the most useful field.",{"type":42,"tag":95,"props":2249,"children":2250},{},[2251,2268,2295,2341,2367,2393],{"type":42,"tag":99,"props":2252,"children":2253},{},[2254,2259,2261,2266],{"type":42,"tag":50,"props":2255,"children":2257},{"className":2256},[],[2258],{"type":47,"value":179},{"type":47,"value":2260}," — Credential missing or rejected. Check ",{"type":42,"tag":50,"props":2262,"children":2264},{"className":2263},[],[2265],{"type":47,"value":420},{"type":47,"value":2267}," is set at all (any value works). If it persists, the credential isn't configured for this workspace — report it.",{"type":42,"tag":99,"props":2269,"children":2270},{},[2271,2277,2279,2285,2287,2293],{"type":42,"tag":50,"props":2272,"children":2274},{"className":2273},[],[2275],{"type":47,"value":2276},"403 accessDenied",{"type":47,"value":2278}," — Caller lacks permission on the project\u002Fdataset. Check which project is in the URL (billing project) vs. which project owns the data — they can differ. Grant ",{"type":42,"tag":50,"props":2280,"children":2282},{"className":2281},[],[2283],{"type":47,"value":2284},"roles\u002Fbigquery.dataViewer",{"type":47,"value":2286}," on the data, ",{"type":42,"tag":50,"props":2288,"children":2290},{"className":2289},[],[2291],{"type":47,"value":2292},"roles\u002Fbigquery.jobUser",{"type":47,"value":2294}," on the billing project.",{"type":42,"tag":99,"props":2296,"children":2297},{},[2298,2304,2306,2311,2313,2319,2321,2327,2329,2334,2335,2340],{"type":42,"tag":50,"props":2299,"children":2301},{"className":2300},[],[2302],{"type":47,"value":2303},"404 notFound",{"type":47,"value":2305}," — Job, dataset, or table doesn't exist, or you omitted ",{"type":42,"tag":50,"props":2307,"children":2309},{"className":2308},[],[2310],{"type":47,"value":546},{"type":47,"value":2312}," on a job lookup. Double-check the full reference (",{"type":42,"tag":50,"props":2314,"children":2316},{"className":2315},[],[2317],{"type":47,"value":2318},"project.dataset.table",{"type":47,"value":2320},"). Always pass ",{"type":42,"tag":50,"props":2322,"children":2324},{"className":2323},[],[2325],{"type":47,"value":2326},"?location=",{"type":47,"value":2328}," on ",{"type":42,"tag":50,"props":2330,"children":2332},{"className":2331},[],[2333],{"type":47,"value":139},{"type":47,"value":682},{"type":42,"tag":50,"props":2336,"children":2338},{"className":2337},[],[2339],{"type":47,"value":1958},{"type":47,"value":1667},{"type":42,"tag":99,"props":2342,"children":2343},{},[2344,2350,2352,2358,2360,2366],{"type":42,"tag":50,"props":2345,"children":2347},{"className":2346},[],[2348],{"type":47,"value":2349},"400 invalidQuery",{"type":47,"value":2351}," — SQL error. The ",{"type":42,"tag":50,"props":2353,"children":2355},{"className":2354},[],[2356],{"type":47,"value":2357},"message",{"type":47,"value":2359}," carries line\u002Fcolumn. Remember ",{"type":42,"tag":50,"props":2361,"children":2363},{"className":2362},[],[2364],{"type":47,"value":2365},"useLegacySql: false",{"type":47,"value":1667},{"type":42,"tag":99,"props":2368,"children":2369},{},[2370,2372,2378,2380,2385,2387,2392],{"type":47,"value":2371},"job ",{"type":42,"tag":50,"props":2373,"children":2375},{"className":2374},[],[2376],{"type":47,"value":2377},"status.errorResult",{"type":47,"value":2379}," — Query ran but failed. A job can be ",{"type":42,"tag":50,"props":2381,"children":2383},{"className":2382},[],[2384],{"type":47,"value":1115},{"type":47,"value":2386}," and still failed — always check ",{"type":42,"tag":50,"props":2388,"children":2390},{"className":2389},[],[2391],{"type":47,"value":2377},{"type":47,"value":1202},{"type":42,"tag":99,"props":2394,"children":2395},{},[2396,2402,2403,2409],{"type":42,"tag":50,"props":2397,"children":2399},{"className":2398},[],[2400],{"type":47,"value":2401},"5xx",{"type":47,"value":682},{"type":42,"tag":50,"props":2404,"children":2406},{"className":2405},[],[2407],{"type":47,"value":2408},"backendError",{"type":47,"value":2410}," — Transient Google-side. Retry with backoff. Safe for read jobs; for write jobs, check whether the first attempt actually ran before retrying.",{"type":42,"tag":163,"props":2412,"children":2414},{"id":2413},"going-deeper",[2415],{"type":47,"value":2416},"Going deeper",{"type":42,"tag":43,"props":2418,"children":2419},{},[2420,2425],{"type":42,"tag":50,"props":2421,"children":2423},{"className":2422},[],[2424],{"type":47,"value":815},{"type":47,"value":2426}," has the fuller endpoint catalog — the job configuration object in detail (destination tables, write disposition, load\u002Fextract\u002Fcopy jobs), dataset and table create\u002Fupdate, routines, and row-level access policies. Read it when you need an endpoint not covered above or the exact body shape for a write.",{"type":42,"tag":2428,"props":2429,"children":2430},"style",{},[2431],{"type":47,"value":2432},"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":2434,"total":2539},[2435,2451,2458,2477,2493,2512,2526],{"slug":2436,"name":2436,"fn":2437,"description":2438,"org":2439,"tags":2440,"stars":26,"repoUrl":27,"updatedAt":2450},"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},[2441,2444,2447],{"name":2442,"slug":2443,"type":16},"Productivity","productivity",{"name":2445,"slug":2446,"type":16},"Project Management","project-management",{"name":2448,"slug":2449,"type":16},"Task Management","task-management","2026-06-24T07:44:51.70496",{"slug":4,"name":4,"fn":5,"description":6,"org":2452,"tags":2453,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2454,2455,2456,2457],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":24,"slug":25,"type":16},{"name":21,"slug":22,"type":16},{"slug":2459,"name":2459,"fn":2460,"description":2461,"org":2462,"tags":2463,"stars":26,"repoUrl":27,"updatedAt":2476},"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},[2464,2467,2470,2473],{"name":2465,"slug":2466,"type":16},"Agents","agents",{"name":2468,"slug":2469,"type":16},"Claude API","claude-api",{"name":2471,"slug":2472,"type":16},"Configuration","configuration",{"name":2474,"slug":2475,"type":16},"GitHub","github","2026-06-25T07:41:36.617524",{"slug":2478,"name":2478,"fn":2479,"description":2480,"org":2481,"tags":2482,"stars":26,"repoUrl":27,"updatedAt":2492},"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},[2483,2486,2489],{"name":2484,"slug":2485,"type":16},"Confluence","confluence",{"name":2487,"slug":2488,"type":16},"Documentation","documentation",{"name":2490,"slug":2491,"type":16},"Knowledge Management","knowledge-management","2026-06-25T07:41:43.531982",{"slug":2494,"name":2494,"fn":2495,"description":2496,"org":2497,"tags":2498,"stars":26,"repoUrl":27,"updatedAt":2511},"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},[2499,2502,2505,2508],{"name":2500,"slug":2501,"type":16},"API Development","api-development",{"name":2503,"slug":2504,"type":16},"Datadog","datadog",{"name":2506,"slug":2507,"type":16},"Monitoring","monitoring",{"name":2509,"slug":2510,"type":16},"Observability","observability","2026-06-24T07:46:42.266372",{"slug":2513,"name":2513,"fn":2514,"description":2515,"org":2516,"tags":2517,"stars":26,"repoUrl":27,"updatedAt":2525},"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},[2518,2519,2522],{"name":2468,"slug":2469,"type":16},{"name":2520,"slug":2521,"type":16},"Debugging","debugging",{"name":2523,"slug":2524,"type":16},"Plugin Development","plugin-development","2026-06-24T07:46:32.792809",{"slug":2527,"name":2527,"fn":2528,"description":2529,"org":2530,"tags":2531,"stars":26,"repoUrl":27,"updatedAt":2538},"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},[2532,2534,2535],{"name":2533,"slug":2527,"type":16},"Enterprise Search",{"name":2490,"slug":2491,"type":16},{"name":2536,"slug":2537,"type":16},"Research","research","2026-06-24T07:46:40.641837",18,{"items":2541,"total":2720},[2542,2563,2577,2589,2604,2615,2636,2656,2670,2683,2691,2704],{"slug":2543,"name":2543,"fn":2544,"description":2545,"org":2546,"tags":2547,"stars":2560,"repoUrl":2561,"updatedAt":2562},"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},[2548,2551,2554,2557],{"name":2549,"slug":2550,"type":16},"Creative","creative",{"name":2552,"slug":2553,"type":16},"Design","design",{"name":2555,"slug":2556,"type":16},"Generative Art","generative-art",{"name":2558,"slug":2559,"type":16},"JavaScript","javascript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":2564,"name":2564,"fn":2565,"description":2566,"org":2567,"tags":2568,"stars":2560,"repoUrl":2561,"updatedAt":2576},"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},[2569,2572,2573],{"name":2570,"slug":2571,"type":16},"Branding","branding",{"name":2552,"slug":2553,"type":16},{"name":2574,"slug":2575,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":2578,"name":2578,"fn":2579,"description":2580,"org":2581,"tags":2582,"stars":2560,"repoUrl":2561,"updatedAt":2588},"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},[2583,2584,2585],{"name":2549,"slug":2550,"type":16},{"name":2552,"slug":2553,"type":16},{"name":2586,"slug":2587,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":2469,"name":2469,"fn":2590,"description":2591,"org":2592,"tags":2593,"stars":2560,"repoUrl":2561,"updatedAt":2603},"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},[2594,2595,2596,2599,2600],{"name":2465,"slug":2466,"type":16},{"name":9,"slug":8,"type":16},{"name":2597,"slug":2598,"type":16},"Anthropic SDK","anthropic-sdk",{"name":2468,"slug":2469,"type":16},{"name":2601,"slug":2602,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":2605,"name":2605,"fn":2606,"description":2607,"org":2608,"tags":2609,"stars":2560,"repoUrl":2561,"updatedAt":2614},"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},[2610,2611],{"name":2487,"slug":2488,"type":16},{"name":2612,"slug":2613,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":2616,"name":2616,"fn":2617,"description":2618,"org":2619,"tags":2620,"stars":2560,"repoUrl":2561,"updatedAt":2635},"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},[2621,2624,2626,2629,2632],{"name":2622,"slug":2623,"type":16},"Documents","documents",{"name":2625,"slug":2616,"type":16},"DOCX",{"name":2627,"slug":2628,"type":16},"Office","office",{"name":2630,"slug":2631,"type":16},"Templates","templates",{"name":2633,"slug":2634,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":2637,"name":2637,"fn":2638,"description":2639,"org":2640,"tags":2641,"stars":2560,"repoUrl":2561,"updatedAt":2655},"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},[2642,2643,2646,2649,2652],{"name":2552,"slug":2553,"type":16},{"name":2644,"slug":2645,"type":16},"Frontend","frontend",{"name":2647,"slug":2648,"type":16},"React","react",{"name":2650,"slug":2651,"type":16},"Tailwind CSS","tailwind-css",{"name":2653,"slug":2654,"type":16},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":2657,"name":2657,"fn":2658,"description":2659,"org":2660,"tags":2661,"stars":2560,"repoUrl":2561,"updatedAt":2669},"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},[2662,2665,2666],{"name":2663,"slug":2664,"type":16},"Communications","communications",{"name":2630,"slug":2631,"type":16},{"name":2667,"slug":2668,"type":16},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":2671,"name":2671,"fn":2672,"description":2673,"org":2674,"tags":2675,"stars":2560,"repoUrl":2561,"updatedAt":2682},"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},[2676,2677,2678,2679],{"name":2465,"slug":2466,"type":16},{"name":2500,"slug":2501,"type":16},{"name":2601,"slug":2602,"type":16},{"name":2680,"slug":2681,"type":16},"MCP","mcp","2026-04-06T17:56:10.357665",{"slug":2587,"name":2587,"fn":2684,"description":2685,"org":2686,"tags":2687,"stars":2560,"repoUrl":2561,"updatedAt":2690},"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},[2688,2689],{"name":2622,"slug":2623,"type":16},{"name":2586,"slug":2587,"type":16},"2026-04-06T17:56:02.483316",{"slug":2692,"name":2692,"fn":2693,"description":2694,"org":2695,"tags":2696,"stars":2560,"repoUrl":2561,"updatedAt":2703},"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},[2697,2700],{"name":2698,"slug":2699,"type":16},"PowerPoint","powerpoint",{"name":2701,"slug":2702,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":2705,"name":2705,"fn":2706,"description":2707,"org":2708,"tags":2709,"stars":2560,"repoUrl":2561,"updatedAt":2719},"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},[2710,2711,2712,2715,2718],{"name":2465,"slug":2466,"type":16},{"name":2487,"slug":2488,"type":16},{"name":2713,"slug":2714,"type":16},"Evals","evals",{"name":2716,"slug":2717,"type":16},"Performance","performance",{"name":2612,"slug":2613,"type":16},"2026-04-19T06:45:40.804",490]