[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-duckdb-convert-file":3,"mdc--annavx-key":35,"related-repo-duckdb-convert-file":751,"related-org-duckdb-convert-file":838},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":33,"mdContent":34},"convert-file","convert data files between formats","Convert any data file to another format: CSV, Parquet, JSON, Excel, GeoJSON, and more. Use when the user says \"convert to parquet\", \"save as xlsx\", \"export as JSON\", \"make this a CSV\", \"turn into parquet\", or any variation of format-to-format conversion for data files. Also triggers when the user wants to write Parquet, Excel, or other binary formats that Claude cannot produce natively.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"duckdb","DuckDB","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fduckdb.jpg",[12,16,19,22],{"name":13,"slug":14,"type":15},"Data Engineering","data-engineering","tag",{"name":17,"slug":18,"type":15},"Excel","excel",{"name":20,"slug":21,"type":15},"Spreadsheets","spreadsheets",{"name":23,"slug":24,"type":15},"Data Analysis","data-analysis",510,"https:\u002F\u002Fgithub.com\u002Fduckdb\u002Fduckdb-skills","2026-07-12T07:54:39.62274",null,25,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":28},[],"https:\u002F\u002Fgithub.com\u002Fduckdb\u002Fduckdb-skills\u002Ftree\u002FHEAD\u002Fskills\u002Fconvert-file","---\nname: convert-file\ndescription: >\n  Convert any data file to another format: CSV, Parquet, JSON, Excel, GeoJSON, and more.\n  Use when the user says \"convert to parquet\", \"save as xlsx\", \"export as JSON\", \"make this a CSV\",\n  \"turn into parquet\", or any variation of format-to-format conversion for data files.\n  Also triggers when the user wants to write Parquet, Excel, or other binary formats that Claude cannot produce natively.\nargument-hint: \u003Cinput-file> [output-file]\nallowed-tools: Bash\n---\n\nYou are helping the user convert a data file from one format to another using DuckDB.\n\nInput file: `$0`\nOutput file: `${1:-}`\n\n## Step 1 — Resolve input and output\n\n**Input**: `$0`. If it's a bare filename (no `\u002F`), resolve to a full path with `find \"$PWD\" -name \"$0\" -not -path '*\u002F.git\u002F*' 2>\u002Fdev\u002Fnull | head -1`.\n\n**Output**: If `$1` is provided, use it as the output path. If not, default to the same stem as the input with a `.parquet` extension (e.g., `data.csv` → `data.parquet`).\n\nInfer the output format from the output file extension:\n\n| Extension | Format clause |\n|---|---|\n| `.parquet`, `.pq` | *(default, no clause needed)* |\n| `.csv` | `(FORMAT csv, HEADER)` |\n| `.tsv` | `(FORMAT csv, HEADER, DELIMITER '\\t')` |\n| `.json` | `(FORMAT json, ARRAY true)` |\n| `.jsonl`, `.ndjson` | `(FORMAT json, ARRAY false)` |\n| `.xlsx` | `(FORMAT xlsx)` — requires `INSTALL excel; LOAD excel;` |\n| `.geojson` | `(FORMAT GDAL, DRIVER 'GeoJSON')` — requires `LOAD spatial;` |\n| `.gpkg` | `(FORMAT GDAL, DRIVER 'GPKG')` — requires `LOAD spatial;` |\n| `.shp` | `(FORMAT GDAL, DRIVER 'ESRI Shapefile')` — requires `LOAD spatial;` |\n\n## Step 2 — Convert\n\nRun a single DuckDB command. Prepend extension loads as needed based on both the input and output formats.\n\n```bash\nduckdb -c \"\n\u003CEXTENSION_LOADS>\nCOPY (FROM '\u003CINPUT_PATH>') TO '\u003COUTPUT_PATH>' \u003CFORMAT_CLAUSE>;\n\"\n```\n\nFor remote inputs (`s3:\u002F\u002F`, `https:\u002F\u002F`, etc.), prepend the same protocol setup as `read-file`:\n\n| Protocol | Prepend |\n|---|---|\n| `s3:\u002F\u002F` | `LOAD httpfs; CREATE SECRET (TYPE S3, PROVIDER credential_chain);` |\n| `gs:\u002F\u002F` \u002F `gcs:\u002F\u002F` | `LOAD httpfs; CREATE SECRET (TYPE GCS, PROVIDER credential_chain);` |\n| `https:\u002F\u002F` \u002F `http:\u002F\u002F` | `LOAD httpfs;` |\n\n**If the user mentions partitioning** (e.g., \"partition by year\"), add `PARTITION_BY (col)` to the format clause. This only works with Parquet and CSV output.\n\n**If the user mentions compression** (e.g., \"use zstd\"), add `CODEC 'zstd'` for Parquet output.\n\n## Step 3 — Report\n\nOn success, report:\n- Input file and detected format\n- Output file, format, and size (`ls -lh`)\n- Row count if quick to compute\n\nOn failure:\n- **`duckdb: command not found`** → delegate to `\u002Fduckdb-skills:install-duckdb`\n- **Missing extension** → install it and retry\n- **Input parse error** → suggest the user check the input format or try `\u002Fduckdb-skills:read-file` first to inspect it\n",{"data":36,"body":39},{"name":4,"description":6,"argument-hint":37,"allowed-tools":38},"\u003Cinput-file> [output-file]","Bash",{"type":40,"children":41},"root",[42,50,70,77,111,153,158,416,422,427,488,516,614,632,650,656,661,689,694,745],{"type":43,"tag":44,"props":45,"children":46},"element","p",{},[47],{"type":48,"value":49},"text","You are helping the user convert a data file from one format to another using DuckDB.",{"type":43,"tag":44,"props":51,"children":52},{},[53,55,62,64],{"type":48,"value":54},"Input file: ",{"type":43,"tag":56,"props":57,"children":59},"code",{"className":58},[],[60],{"type":48,"value":61},"$0",{"type":48,"value":63},"\nOutput file: ",{"type":43,"tag":56,"props":65,"children":67},{"className":66},[],[68],{"type":48,"value":69},"${1:-}",{"type":43,"tag":71,"props":72,"children":74},"h2",{"id":73},"step-1-resolve-input-and-output",[75],{"type":48,"value":76},"Step 1 — Resolve input and output",{"type":43,"tag":44,"props":78,"children":79},{},[80,86,88,93,95,101,103,109],{"type":43,"tag":81,"props":82,"children":83},"strong",{},[84],{"type":48,"value":85},"Input",{"type":48,"value":87},": ",{"type":43,"tag":56,"props":89,"children":91},{"className":90},[],[92],{"type":48,"value":61},{"type":48,"value":94},". If it's a bare filename (no ",{"type":43,"tag":56,"props":96,"children":98},{"className":97},[],[99],{"type":48,"value":100},"\u002F",{"type":48,"value":102},"), resolve to a full path with ",{"type":43,"tag":56,"props":104,"children":106},{"className":105},[],[107],{"type":48,"value":108},"find \"$PWD\" -name \"$0\" -not -path '*\u002F.git\u002F*' 2>\u002Fdev\u002Fnull | head -1",{"type":48,"value":110},".",{"type":43,"tag":44,"props":112,"children":113},{},[114,119,121,127,129,135,137,143,145,151],{"type":43,"tag":81,"props":115,"children":116},{},[117],{"type":48,"value":118},"Output",{"type":48,"value":120},": If ",{"type":43,"tag":56,"props":122,"children":124},{"className":123},[],[125],{"type":48,"value":126},"$1",{"type":48,"value":128}," is provided, use it as the output path. If not, default to the same stem as the input with a ",{"type":43,"tag":56,"props":130,"children":132},{"className":131},[],[133],{"type":48,"value":134},".parquet",{"type":48,"value":136}," extension (e.g., ",{"type":43,"tag":56,"props":138,"children":140},{"className":139},[],[141],{"type":48,"value":142},"data.csv",{"type":48,"value":144}," → ",{"type":43,"tag":56,"props":146,"children":148},{"className":147},[],[149],{"type":48,"value":150},"data.parquet",{"type":48,"value":152},").",{"type":43,"tag":44,"props":154,"children":155},{},[156],{"type":48,"value":157},"Infer the output format from the output file extension:",{"type":43,"tag":159,"props":160,"children":161},"table",{},[162,181],{"type":43,"tag":163,"props":164,"children":165},"thead",{},[166],{"type":43,"tag":167,"props":168,"children":169},"tr",{},[170,176],{"type":43,"tag":171,"props":172,"children":173},"th",{},[174],{"type":48,"value":175},"Extension",{"type":43,"tag":171,"props":177,"children":178},{},[179],{"type":48,"value":180},"Format clause",{"type":43,"tag":182,"props":183,"children":184},"tbody",{},[185,214,235,256,277,305,334,362,389],{"type":43,"tag":167,"props":186,"children":187},{},[188,205],{"type":43,"tag":189,"props":190,"children":191},"td",{},[192,197,199],{"type":43,"tag":56,"props":193,"children":195},{"className":194},[],[196],{"type":48,"value":134},{"type":48,"value":198},", ",{"type":43,"tag":56,"props":200,"children":202},{"className":201},[],[203],{"type":48,"value":204},".pq",{"type":43,"tag":189,"props":206,"children":207},{},[208],{"type":43,"tag":209,"props":210,"children":211},"em",{},[212],{"type":48,"value":213},"(default, no clause needed)",{"type":43,"tag":167,"props":215,"children":216},{},[217,226],{"type":43,"tag":189,"props":218,"children":219},{},[220],{"type":43,"tag":56,"props":221,"children":223},{"className":222},[],[224],{"type":48,"value":225},".csv",{"type":43,"tag":189,"props":227,"children":228},{},[229],{"type":43,"tag":56,"props":230,"children":232},{"className":231},[],[233],{"type":48,"value":234},"(FORMAT csv, HEADER)",{"type":43,"tag":167,"props":236,"children":237},{},[238,247],{"type":43,"tag":189,"props":239,"children":240},{},[241],{"type":43,"tag":56,"props":242,"children":244},{"className":243},[],[245],{"type":48,"value":246},".tsv",{"type":43,"tag":189,"props":248,"children":249},{},[250],{"type":43,"tag":56,"props":251,"children":253},{"className":252},[],[254],{"type":48,"value":255},"(FORMAT csv, HEADER, DELIMITER '\\t')",{"type":43,"tag":167,"props":257,"children":258},{},[259,268],{"type":43,"tag":189,"props":260,"children":261},{},[262],{"type":43,"tag":56,"props":263,"children":265},{"className":264},[],[266],{"type":48,"value":267},".json",{"type":43,"tag":189,"props":269,"children":270},{},[271],{"type":43,"tag":56,"props":272,"children":274},{"className":273},[],[275],{"type":48,"value":276},"(FORMAT json, ARRAY true)",{"type":43,"tag":167,"props":278,"children":279},{},[280,296],{"type":43,"tag":189,"props":281,"children":282},{},[283,289,290],{"type":43,"tag":56,"props":284,"children":286},{"className":285},[],[287],{"type":48,"value":288},".jsonl",{"type":48,"value":198},{"type":43,"tag":56,"props":291,"children":293},{"className":292},[],[294],{"type":48,"value":295},".ndjson",{"type":43,"tag":189,"props":297,"children":298},{},[299],{"type":43,"tag":56,"props":300,"children":302},{"className":301},[],[303],{"type":48,"value":304},"(FORMAT json, ARRAY false)",{"type":43,"tag":167,"props":306,"children":307},{},[308,317],{"type":43,"tag":189,"props":309,"children":310},{},[311],{"type":43,"tag":56,"props":312,"children":314},{"className":313},[],[315],{"type":48,"value":316},".xlsx",{"type":43,"tag":189,"props":318,"children":319},{},[320,326,328],{"type":43,"tag":56,"props":321,"children":323},{"className":322},[],[324],{"type":48,"value":325},"(FORMAT xlsx)",{"type":48,"value":327}," — requires ",{"type":43,"tag":56,"props":329,"children":331},{"className":330},[],[332],{"type":48,"value":333},"INSTALL excel; LOAD excel;",{"type":43,"tag":167,"props":335,"children":336},{},[337,346],{"type":43,"tag":189,"props":338,"children":339},{},[340],{"type":43,"tag":56,"props":341,"children":343},{"className":342},[],[344],{"type":48,"value":345},".geojson",{"type":43,"tag":189,"props":347,"children":348},{},[349,355,356],{"type":43,"tag":56,"props":350,"children":352},{"className":351},[],[353],{"type":48,"value":354},"(FORMAT GDAL, DRIVER 'GeoJSON')",{"type":48,"value":327},{"type":43,"tag":56,"props":357,"children":359},{"className":358},[],[360],{"type":48,"value":361},"LOAD spatial;",{"type":43,"tag":167,"props":363,"children":364},{},[365,374],{"type":43,"tag":189,"props":366,"children":367},{},[368],{"type":43,"tag":56,"props":369,"children":371},{"className":370},[],[372],{"type":48,"value":373},".gpkg",{"type":43,"tag":189,"props":375,"children":376},{},[377,383,384],{"type":43,"tag":56,"props":378,"children":380},{"className":379},[],[381],{"type":48,"value":382},"(FORMAT GDAL, DRIVER 'GPKG')",{"type":48,"value":327},{"type":43,"tag":56,"props":385,"children":387},{"className":386},[],[388],{"type":48,"value":361},{"type":43,"tag":167,"props":390,"children":391},{},[392,401],{"type":43,"tag":189,"props":393,"children":394},{},[395],{"type":43,"tag":56,"props":396,"children":398},{"className":397},[],[399],{"type":48,"value":400},".shp",{"type":43,"tag":189,"props":402,"children":403},{},[404,410,411],{"type":43,"tag":56,"props":405,"children":407},{"className":406},[],[408],{"type":48,"value":409},"(FORMAT GDAL, DRIVER 'ESRI Shapefile')",{"type":48,"value":327},{"type":43,"tag":56,"props":412,"children":414},{"className":413},[],[415],{"type":48,"value":361},{"type":43,"tag":71,"props":417,"children":419},{"id":418},"step-2-convert",[420],{"type":48,"value":421},"Step 2 — Convert",{"type":43,"tag":44,"props":423,"children":424},{},[425],{"type":48,"value":426},"Run a single DuckDB command. Prepend extension loads as needed based on both the input and output formats.",{"type":43,"tag":428,"props":429,"children":434},"pre",{"className":430,"code":431,"language":432,"meta":433,"style":433},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","duckdb -c \"\n\u003CEXTENSION_LOADS>\nCOPY (FROM '\u003CINPUT_PATH>') TO '\u003COUTPUT_PATH>' \u003CFORMAT_CLAUSE>;\n\"\n","bash","",[435],{"type":43,"tag":56,"props":436,"children":437},{"__ignoreMap":433},[438,461,470,479],{"type":43,"tag":439,"props":440,"children":443},"span",{"class":441,"line":442},"line",1,[444,449,455],{"type":43,"tag":439,"props":445,"children":447},{"style":446},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[448],{"type":48,"value":8},{"type":43,"tag":439,"props":450,"children":452},{"style":451},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[453],{"type":48,"value":454}," -c",{"type":43,"tag":439,"props":456,"children":458},{"style":457},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[459],{"type":48,"value":460}," \"\n",{"type":43,"tag":439,"props":462,"children":464},{"class":441,"line":463},2,[465],{"type":43,"tag":439,"props":466,"children":467},{"style":451},[468],{"type":48,"value":469},"\u003CEXTENSION_LOADS>\n",{"type":43,"tag":439,"props":471,"children":473},{"class":441,"line":472},3,[474],{"type":43,"tag":439,"props":475,"children":476},{"style":451},[477],{"type":48,"value":478},"COPY (FROM '\u003CINPUT_PATH>') TO '\u003COUTPUT_PATH>' \u003CFORMAT_CLAUSE>;\n",{"type":43,"tag":439,"props":480,"children":482},{"class":441,"line":481},4,[483],{"type":43,"tag":439,"props":484,"children":485},{"style":457},[486],{"type":48,"value":487},"\"\n",{"type":43,"tag":44,"props":489,"children":490},{},[491,493,499,500,506,508,514],{"type":48,"value":492},"For remote inputs (",{"type":43,"tag":56,"props":494,"children":496},{"className":495},[],[497],{"type":48,"value":498},"s3:\u002F\u002F",{"type":48,"value":198},{"type":43,"tag":56,"props":501,"children":503},{"className":502},[],[504],{"type":48,"value":505},"https:\u002F\u002F",{"type":48,"value":507},", etc.), prepend the same protocol setup as ",{"type":43,"tag":56,"props":509,"children":511},{"className":510},[],[512],{"type":48,"value":513},"read-file",{"type":48,"value":515},":",{"type":43,"tag":159,"props":517,"children":518},{},[519,535],{"type":43,"tag":163,"props":520,"children":521},{},[522],{"type":43,"tag":167,"props":523,"children":524},{},[525,530],{"type":43,"tag":171,"props":526,"children":527},{},[528],{"type":48,"value":529},"Protocol",{"type":43,"tag":171,"props":531,"children":532},{},[533],{"type":48,"value":534},"Prepend",{"type":43,"tag":182,"props":536,"children":537},{},[538,558,587],{"type":43,"tag":167,"props":539,"children":540},{},[541,549],{"type":43,"tag":189,"props":542,"children":543},{},[544],{"type":43,"tag":56,"props":545,"children":547},{"className":546},[],[548],{"type":48,"value":498},{"type":43,"tag":189,"props":550,"children":551},{},[552],{"type":43,"tag":56,"props":553,"children":555},{"className":554},[],[556],{"type":48,"value":557},"LOAD httpfs; CREATE SECRET (TYPE S3, PROVIDER credential_chain);",{"type":43,"tag":167,"props":559,"children":560},{},[561,578],{"type":43,"tag":189,"props":562,"children":563},{},[564,570,572],{"type":43,"tag":56,"props":565,"children":567},{"className":566},[],[568],{"type":48,"value":569},"gs:\u002F\u002F",{"type":48,"value":571}," \u002F ",{"type":43,"tag":56,"props":573,"children":575},{"className":574},[],[576],{"type":48,"value":577},"gcs:\u002F\u002F",{"type":43,"tag":189,"props":579,"children":580},{},[581],{"type":43,"tag":56,"props":582,"children":584},{"className":583},[],[585],{"type":48,"value":586},"LOAD httpfs; CREATE SECRET (TYPE GCS, PROVIDER credential_chain);",{"type":43,"tag":167,"props":588,"children":589},{},[590,605],{"type":43,"tag":189,"props":591,"children":592},{},[593,598,599],{"type":43,"tag":56,"props":594,"children":596},{"className":595},[],[597],{"type":48,"value":505},{"type":48,"value":571},{"type":43,"tag":56,"props":600,"children":602},{"className":601},[],[603],{"type":48,"value":604},"http:\u002F\u002F",{"type":43,"tag":189,"props":606,"children":607},{},[608],{"type":43,"tag":56,"props":609,"children":611},{"className":610},[],[612],{"type":48,"value":613},"LOAD httpfs;",{"type":43,"tag":44,"props":615,"children":616},{},[617,622,624,630],{"type":43,"tag":81,"props":618,"children":619},{},[620],{"type":48,"value":621},"If the user mentions partitioning",{"type":48,"value":623}," (e.g., \"partition by year\"), add ",{"type":43,"tag":56,"props":625,"children":627},{"className":626},[],[628],{"type":48,"value":629},"PARTITION_BY (col)",{"type":48,"value":631}," to the format clause. This only works with Parquet and CSV output.",{"type":43,"tag":44,"props":633,"children":634},{},[635,640,642,648],{"type":43,"tag":81,"props":636,"children":637},{},[638],{"type":48,"value":639},"If the user mentions compression",{"type":48,"value":641}," (e.g., \"use zstd\"), add ",{"type":43,"tag":56,"props":643,"children":645},{"className":644},[],[646],{"type":48,"value":647},"CODEC 'zstd'",{"type":48,"value":649}," for Parquet output.",{"type":43,"tag":71,"props":651,"children":653},{"id":652},"step-3-report",[654],{"type":48,"value":655},"Step 3 — Report",{"type":43,"tag":44,"props":657,"children":658},{},[659],{"type":48,"value":660},"On success, report:",{"type":43,"tag":662,"props":663,"children":664},"ul",{},[665,671,684],{"type":43,"tag":666,"props":667,"children":668},"li",{},[669],{"type":48,"value":670},"Input file and detected format",{"type":43,"tag":666,"props":672,"children":673},{},[674,676,682],{"type":48,"value":675},"Output file, format, and size (",{"type":43,"tag":56,"props":677,"children":679},{"className":678},[],[680],{"type":48,"value":681},"ls -lh",{"type":48,"value":683},")",{"type":43,"tag":666,"props":685,"children":686},{},[687],{"type":48,"value":688},"Row count if quick to compute",{"type":43,"tag":44,"props":690,"children":691},{},[692],{"type":48,"value":693},"On failure:",{"type":43,"tag":662,"props":695,"children":696},{},[697,717,727],{"type":43,"tag":666,"props":698,"children":699},{},[700,709,711],{"type":43,"tag":81,"props":701,"children":702},{},[703],{"type":43,"tag":56,"props":704,"children":706},{"className":705},[],[707],{"type":48,"value":708},"duckdb: command not found",{"type":48,"value":710}," → delegate to ",{"type":43,"tag":56,"props":712,"children":714},{"className":713},[],[715],{"type":48,"value":716},"\u002Fduckdb-skills:install-duckdb",{"type":43,"tag":666,"props":718,"children":719},{},[720,725],{"type":43,"tag":81,"props":721,"children":722},{},[723],{"type":48,"value":724},"Missing extension",{"type":48,"value":726}," → install it and retry",{"type":43,"tag":666,"props":728,"children":729},{},[730,735,737,743],{"type":43,"tag":81,"props":731,"children":732},{},[733],{"type":48,"value":734},"Input parse error",{"type":48,"value":736}," → suggest the user check the input format or try ",{"type":43,"tag":56,"props":738,"children":740},{"className":739},[],[741],{"type":48,"value":742},"\u002Fduckdb-skills:read-file",{"type":48,"value":744}," first to inspect it",{"type":43,"tag":746,"props":747,"children":748},"style",{},[749],{"type":48,"value":750},"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":752,"total":837},[753,767,774,790,801,811,823],{"slug":754,"name":754,"fn":755,"description":756,"org":757,"tags":758,"stars":25,"repoUrl":26,"updatedAt":766},"attach-db","attach DuckDB database files for querying","Attach a DuckDB database file for use with \u002Fduckdb-skills:query. Explores the schema (tables, columns, row counts) and writes a SQL state file so subsequent queries can restore this session automatically via duckdb -init.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[759,760,763],{"name":23,"slug":24,"type":15},{"name":761,"slug":762,"type":15},"Database","database",{"name":764,"slug":765,"type":15},"SQL","sql","2026-07-12T07:54:35.248848",{"slug":4,"name":4,"fn":5,"description":6,"org":768,"tags":769,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[770,771,772,773],{"name":23,"slug":24,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"slug":775,"name":775,"fn":776,"description":777,"org":778,"tags":779,"stars":25,"repoUrl":26,"updatedAt":789},"duckdb-docs","search DuckDB documentation and blog posts","Search DuckDB and DuckLake documentation and blog posts. Returns relevant doc chunks for a question or keyword using full-text search against a locally cached index.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[780,783,786],{"name":781,"slug":782,"type":15},"Documentation","documentation",{"name":784,"slug":785,"type":15},"Research","research",{"name":787,"slug":788,"type":15},"Search","search","2026-07-12T07:54:38.216517",{"slug":791,"name":791,"fn":792,"description":793,"org":794,"tags":795,"stars":25,"repoUrl":26,"updatedAt":800},"install-duckdb","install and update DuckDB extensions","Install or update DuckDB extensions. Each argument is either a plain extension name (installs from core) or name@repo (e.g. magic@community). Pass --update to update extensions instead of installing.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[796,797],{"name":761,"slug":762,"type":15},{"name":798,"slug":799,"type":15},"Engineering","engineering","2026-07-12T07:54:42.330952",{"slug":802,"name":802,"fn":803,"description":804,"org":805,"tags":806,"stars":25,"repoUrl":26,"updatedAt":810},"query","run SQL queries against DuckDB","Run SQL queries against the attached DuckDB database or ad-hoc against files. Accepts raw SQL or natural language questions. Uses DuckDB Friendly SQL idioms.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[807,808,809],{"name":23,"slug":24,"type":15},{"name":761,"slug":762,"type":15},{"name":764,"slug":765,"type":15},"2026-07-12T07:54:28.352759",{"slug":513,"name":513,"fn":812,"description":813,"org":814,"tags":815,"stars":25,"repoUrl":26,"updatedAt":822},"read and profile data files","Read any data file (CSV, JSON, Parquet, Avro, Excel, spatial, SQLite) or remote URL (S3, HTTPS). Use when user references a data file, asks \"what's in this file\", or wants to preview\u002Fprofile a dataset. Not for source code.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[816,817,820,821],{"name":23,"slug":24,"type":15},{"name":818,"slug":819,"type":15},"Data Quality","data-quality",{"name":761,"slug":762,"type":15},{"name":764,"slug":765,"type":15},"2026-07-12T07:54:33.514298",{"slug":824,"name":824,"fn":825,"description":826,"org":827,"tags":828,"stars":25,"repoUrl":26,"updatedAt":836},"read-memories","recall past Claude Code session logs","Search past Claude Code session logs to recall prior decisions, patterns, or unresolved work. Use when user says \"do you remember\", \"what did we do\", references past conversations, or you need context from prior sessions.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[829,832,835],{"name":830,"slug":831,"type":15},"Claude Code","claude-code",{"name":833,"slug":834,"type":15},"Memory","memory",{"name":787,"slug":788,"type":15},"2026-07-12T07:54:40.860856",9,{"items":839,"total":837},[840,846,853,859,864,870,877,883,896],{"slug":754,"name":754,"fn":755,"description":756,"org":841,"tags":842,"stars":25,"repoUrl":26,"updatedAt":766},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[843,844,845],{"name":23,"slug":24,"type":15},{"name":761,"slug":762,"type":15},{"name":764,"slug":765,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":847,"tags":848,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[849,850,851,852],{"name":23,"slug":24,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"slug":775,"name":775,"fn":776,"description":777,"org":854,"tags":855,"stars":25,"repoUrl":26,"updatedAt":789},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[856,857,858],{"name":781,"slug":782,"type":15},{"name":784,"slug":785,"type":15},{"name":787,"slug":788,"type":15},{"slug":791,"name":791,"fn":792,"description":793,"org":860,"tags":861,"stars":25,"repoUrl":26,"updatedAt":800},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[862,863],{"name":761,"slug":762,"type":15},{"name":798,"slug":799,"type":15},{"slug":802,"name":802,"fn":803,"description":804,"org":865,"tags":866,"stars":25,"repoUrl":26,"updatedAt":810},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[867,868,869],{"name":23,"slug":24,"type":15},{"name":761,"slug":762,"type":15},{"name":764,"slug":765,"type":15},{"slug":513,"name":513,"fn":812,"description":813,"org":871,"tags":872,"stars":25,"repoUrl":26,"updatedAt":822},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[873,874,875,876],{"name":23,"slug":24,"type":15},{"name":818,"slug":819,"type":15},{"name":761,"slug":762,"type":15},{"name":764,"slug":765,"type":15},{"slug":824,"name":824,"fn":825,"description":826,"org":878,"tags":879,"stars":25,"repoUrl":26,"updatedAt":836},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[880,881,882],{"name":830,"slug":831,"type":15},{"name":833,"slug":834,"type":15},{"name":787,"slug":788,"type":15},{"slug":884,"name":884,"fn":885,"description":886,"org":887,"tags":888,"stars":25,"repoUrl":26,"updatedAt":895},"s3-explore","explore and query remote storage data","Explore and query data on S3, Cloudflare R2, GCS, MinIO, or any S3-compatible storage. Use when the user mentions an s3:\u002F\u002F, r2:\u002F\u002F, gs:\u002F\u002F, or gcs:\u002F\u002F URL, asks \"what's in this bucket\", wants to list remote files, preview remote Parquet\u002FCSV\u002FJSON, or query data on object storage without downloading it. Also triggers when the user wants to know the size, schema, or row count of remote datasets.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[889,892,893,894],{"name":890,"slug":891,"type":15},"Cloud","cloud",{"name":13,"slug":14,"type":15},{"name":761,"slug":762,"type":15},{"name":764,"slug":765,"type":15},"2026-07-12T07:54:36.928868",{"slug":897,"name":897,"fn":898,"description":899,"org":900,"tags":901,"stars":25,"repoUrl":26,"updatedAt":908},"spatial","query spatial data with DuckDB","Answer questions about spatial data using DuckDB. Use when the user mentions locations, coordinates, lat\u002Flng, distances, maps, addresses, \"near\", \"within\", \"closest\", geographic names, or spatial file formats (GeoJSON, Shapefile, GeoPackage, GPX, GeoParquet). Also triggers when the user wants to find places, buildings, or roads — Overture Maps provides free global data on S3 with zero API keys. Handles spatial joins, distance calculations, containment checks, density analysis, and format conversions for geographic data.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[902,903,904,907],{"name":23,"slug":24,"type":15},{"name":761,"slug":762,"type":15},{"name":905,"slug":906,"type":15},"Maps","maps",{"name":764,"slug":765,"type":15},"2026-07-12T07:54:32.004105"]