[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-duckdb-install-duckdb":3,"mdc--9934s3-key":29,"related-repo-duckdb-install-duckdb":749,"related-org-duckdb-install-duckdb":841},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":19,"repoUrl":20,"updatedAt":21,"license":22,"forks":23,"topics":24,"repo":25,"sourceUrl":27,"mdContent":28},"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},"duckdb","DuckDB","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fduckdb.jpg",[12,16],{"name":13,"slug":14,"type":15},"Database","database","tag",{"name":17,"slug":18,"type":15},"Engineering","engineering",510,"https:\u002F\u002Fgithub.com\u002Fduckdb\u002Fduckdb-skills","2026-07-12T07:54:42.330952",null,25,[],{"repoUrl":20,"stars":19,"forks":23,"topics":26,"description":22},[],"https:\u002F\u002Fgithub.com\u002Fduckdb\u002Fduckdb-skills\u002Ftree\u002FHEAD\u002Fskills\u002Finstall-duckdb","---\nname: install-duckdb\ndescription: >\n  Install or update DuckDB extensions. Each argument is either a plain\n  extension name (installs from core) or name@repo (e.g. magic@community).\n  Pass --update to update extensions instead of installing.\nargument-hint: \"[--update] [ext1 ext2@repo ext3 ...]\"\nallowed-tools: Bash\n---\n\nArguments: `$@`\n\nEach extension argument has the form `name` or `name@repo`.\n- `name` → `INSTALL name;`\n- `name@repo` → `INSTALL name FROM repo;`\n\n## Step 1 — Locate DuckDB\n\n```bash\nDUCKDB=$(command -v duckdb)\n```\n\nIf not found, tell the user:\n\n> **DuckDB is not installed.** Install it first with one of:\n> - macOS:   `brew install duckdb`\n> - Linux:   `curl -fsSL https:\u002F\u002Finstall.duckdb.org | sh`\n> - Windows: `winget install DuckDB.cli`\n>\n> Then re-run `\u002Fduckdb-skills:install-duckdb`.\n\nStop if DuckDB is not found.\n\n## Step 2 — Check for --update flag\n\nIf `--update` is present in `$@`, remove it from the argument list and set mode to **update**.\nOtherwise mode is **install**.\n\n## Step 3 — Build and run statements\n\n**Install mode:**\n\nParse each remaining argument:\n- If it contains `@`, split on `@` → `INSTALL \u003Cname> FROM \u003Crepo>;`\n- Otherwise → `INSTALL \u003Cname>;`\n\nRun all in a single DuckDB call:\n\n```bash\n\"$DUCKDB\" :memory: -c \"INSTALL \u003Cext1>; INSTALL \u003Cext2> FROM \u003Crepo2>; ...\"\n```\n\n**Update mode:**\n\nFirst, check if the DuckDB CLI itself is up to date:\n\n```bash\nCURRENT=$(duckdb --version | grep -oE '[0-9]+\\.[0-9]+\\.[0-9]+')\nLATEST=$(curl -fsSL https:\u002F\u002Fduckdb.org\u002Fdata\u002Flatest_stable_version.txt)\n```\n\n- If `CURRENT` == `LATEST` → report DuckDB CLI is up to date.\n- If `CURRENT` != `LATEST` → ask the user:\n  > **DuckDB CLI is outdated** (installed: `CURRENT`, latest: `LATEST`). Upgrade now?\n\n  If the user agrees, detect the platform and run the appropriate upgrade command:\n  - macOS (`brew` available): `brew upgrade duckdb`\n  - Linux: `curl -fsSL https:\u002F\u002Finstall.duckdb.org | sh`\n  - Windows: `winget upgrade DuckDB.cli`\n\nThen update extensions:\n\n- No extension names → update all: `UPDATE EXTENSIONS;`\n- With extension names → update in a single call (ignore `@repo`):\n  `UPDATE EXTENSIONS (\u003Cname1>, \u003Cname2>, ...);`\n\n```bash\n\"$DUCKDB\" :memory: -c \"UPDATE EXTENSIONS;\"\n# or\n\"$DUCKDB\" :memory: -c \"UPDATE EXTENSIONS (\u003Cext1>, \u003Cext2>, ...);\"\n```\n\nReport success or failure after the call completes.\n",{"data":30,"body":33},{"name":4,"description":6,"argument-hint":31,"allowed-tools":32},"[--update] [ext1 ext2@repo ext3 ...]","Bash",{"type":34,"children":35},"root",[36,51,72,108,115,166,171,234,239,245,278,284,292,297,336,341,391,399,404,498,612,617,650,738,743],{"type":37,"tag":38,"props":39,"children":40},"element","p",{},[41,44],{"type":42,"value":43},"text","Arguments: ",{"type":37,"tag":45,"props":46,"children":48},"code",{"className":47},[],[49],{"type":42,"value":50},"$@",{"type":37,"tag":38,"props":52,"children":53},{},[54,56,62,64,70],{"type":42,"value":55},"Each extension argument has the form ",{"type":37,"tag":45,"props":57,"children":59},{"className":58},[],[60],{"type":42,"value":61},"name",{"type":42,"value":63}," or ",{"type":37,"tag":45,"props":65,"children":67},{"className":66},[],[68],{"type":42,"value":69},"name@repo",{"type":42,"value":71},".",{"type":37,"tag":73,"props":74,"children":75},"ul",{},[76,93],{"type":37,"tag":77,"props":78,"children":79},"li",{},[80,85,87],{"type":37,"tag":45,"props":81,"children":83},{"className":82},[],[84],{"type":42,"value":61},{"type":42,"value":86}," → ",{"type":37,"tag":45,"props":88,"children":90},{"className":89},[],[91],{"type":42,"value":92},"INSTALL name;",{"type":37,"tag":77,"props":94,"children":95},{},[96,101,102],{"type":37,"tag":45,"props":97,"children":99},{"className":98},[],[100],{"type":42,"value":69},{"type":42,"value":86},{"type":37,"tag":45,"props":103,"children":105},{"className":104},[],[106],{"type":42,"value":107},"INSTALL name FROM repo;",{"type":37,"tag":109,"props":110,"children":112},"h2",{"id":111},"step-1-locate-duckdb",[113],{"type":42,"value":114},"Step 1 — Locate DuckDB",{"type":37,"tag":116,"props":117,"children":122},"pre",{"className":118,"code":119,"language":120,"meta":121,"style":121},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","DUCKDB=$(command -v duckdb)\n","bash","",[123],{"type":37,"tag":45,"props":124,"children":125},{"__ignoreMap":121},[126],{"type":37,"tag":127,"props":128,"children":131},"span",{"class":129,"line":130},"line",1,[132,138,144,150,156,161],{"type":37,"tag":127,"props":133,"children":135},{"style":134},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[136],{"type":42,"value":137},"DUCKDB",{"type":37,"tag":127,"props":139,"children":141},{"style":140},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[142],{"type":42,"value":143},"=$(",{"type":37,"tag":127,"props":145,"children":147},{"style":146},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[148],{"type":42,"value":149},"command",{"type":37,"tag":127,"props":151,"children":153},{"style":152},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[154],{"type":42,"value":155}," -v",{"type":37,"tag":127,"props":157,"children":158},{"style":152},[159],{"type":42,"value":160}," duckdb",{"type":37,"tag":127,"props":162,"children":163},{"style":140},[164],{"type":42,"value":165},")\n",{"type":37,"tag":38,"props":167,"children":168},{},[169],{"type":42,"value":170},"If not found, tell the user:",{"type":37,"tag":172,"props":173,"children":174},"blockquote",{},[175,186,222],{"type":37,"tag":38,"props":176,"children":177},{},[178,184],{"type":37,"tag":179,"props":180,"children":181},"strong",{},[182],{"type":42,"value":183},"DuckDB is not installed.",{"type":42,"value":185}," Install it first with one of:",{"type":37,"tag":73,"props":187,"children":188},{},[189,200,211],{"type":37,"tag":77,"props":190,"children":191},{},[192,194],{"type":42,"value":193},"macOS:   ",{"type":37,"tag":45,"props":195,"children":197},{"className":196},[],[198],{"type":42,"value":199},"brew install duckdb",{"type":37,"tag":77,"props":201,"children":202},{},[203,205],{"type":42,"value":204},"Linux:   ",{"type":37,"tag":45,"props":206,"children":208},{"className":207},[],[209],{"type":42,"value":210},"curl -fsSL https:\u002F\u002Finstall.duckdb.org | sh",{"type":37,"tag":77,"props":212,"children":213},{},[214,216],{"type":42,"value":215},"Windows: ",{"type":37,"tag":45,"props":217,"children":219},{"className":218},[],[220],{"type":42,"value":221},"winget install DuckDB.cli",{"type":37,"tag":38,"props":223,"children":224},{},[225,227,233],{"type":42,"value":226},"Then re-run ",{"type":37,"tag":45,"props":228,"children":230},{"className":229},[],[231],{"type":42,"value":232},"\u002Fduckdb-skills:install-duckdb",{"type":42,"value":71},{"type":37,"tag":38,"props":235,"children":236},{},[237],{"type":42,"value":238},"Stop if DuckDB is not found.",{"type":37,"tag":109,"props":240,"children":242},{"id":241},"step-2-check-for-update-flag",[243],{"type":42,"value":244},"Step 2 — Check for --update flag",{"type":37,"tag":38,"props":246,"children":247},{},[248,250,256,258,263,265,270,272,277],{"type":42,"value":249},"If ",{"type":37,"tag":45,"props":251,"children":253},{"className":252},[],[254],{"type":42,"value":255},"--update",{"type":42,"value":257}," is present in ",{"type":37,"tag":45,"props":259,"children":261},{"className":260},[],[262],{"type":42,"value":50},{"type":42,"value":264},", remove it from the argument list and set mode to ",{"type":37,"tag":179,"props":266,"children":267},{},[268],{"type":42,"value":269},"update",{"type":42,"value":271},".\nOtherwise mode is ",{"type":37,"tag":179,"props":273,"children":274},{},[275],{"type":42,"value":276},"install",{"type":42,"value":71},{"type":37,"tag":109,"props":279,"children":281},{"id":280},"step-3-build-and-run-statements",[282],{"type":42,"value":283},"Step 3 — Build and run statements",{"type":37,"tag":38,"props":285,"children":286},{},[287],{"type":37,"tag":179,"props":288,"children":289},{},[290],{"type":42,"value":291},"Install mode:",{"type":37,"tag":38,"props":293,"children":294},{},[295],{"type":42,"value":296},"Parse each remaining argument:",{"type":37,"tag":73,"props":298,"children":299},{},[300,325],{"type":37,"tag":77,"props":301,"children":302},{},[303,305,311,313,318,319],{"type":42,"value":304},"If it contains ",{"type":37,"tag":45,"props":306,"children":308},{"className":307},[],[309],{"type":42,"value":310},"@",{"type":42,"value":312},", split on ",{"type":37,"tag":45,"props":314,"children":316},{"className":315},[],[317],{"type":42,"value":310},{"type":42,"value":86},{"type":37,"tag":45,"props":320,"children":322},{"className":321},[],[323],{"type":42,"value":324},"INSTALL \u003Cname> FROM \u003Crepo>;",{"type":37,"tag":77,"props":326,"children":327},{},[328,330],{"type":42,"value":329},"Otherwise → ",{"type":37,"tag":45,"props":331,"children":333},{"className":332},[],[334],{"type":42,"value":335},"INSTALL \u003Cname>;",{"type":37,"tag":38,"props":337,"children":338},{},[339],{"type":42,"value":340},"Run all in a single DuckDB call:",{"type":37,"tag":116,"props":342,"children":344},{"className":118,"code":343,"language":120,"meta":121,"style":121},"\"$DUCKDB\" :memory: -c \"INSTALL \u003Cext1>; INSTALL \u003Cext2> FROM \u003Crepo2>; ...\"\n",[345],{"type":37,"tag":45,"props":346,"children":347},{"__ignoreMap":121},[348],{"type":37,"tag":127,"props":349,"children":350},{"class":129,"line":130},[351,357,362,366,371,376,381,386],{"type":37,"tag":127,"props":352,"children":354},{"style":353},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[355],{"type":42,"value":356},"\"",{"type":37,"tag":127,"props":358,"children":359},{"style":134},[360],{"type":42,"value":361},"$DUCKDB",{"type":37,"tag":127,"props":363,"children":364},{"style":353},[365],{"type":42,"value":356},{"type":37,"tag":127,"props":367,"children":368},{"style":152},[369],{"type":42,"value":370}," :memory:",{"type":37,"tag":127,"props":372,"children":373},{"style":152},[374],{"type":42,"value":375}," -c",{"type":37,"tag":127,"props":377,"children":378},{"style":140},[379],{"type":42,"value":380}," \"",{"type":37,"tag":127,"props":382,"children":383},{"style":152},[384],{"type":42,"value":385},"INSTALL \u003Cext1>; INSTALL \u003Cext2> FROM \u003Crepo2>; ...",{"type":37,"tag":127,"props":387,"children":388},{"style":140},[389],{"type":42,"value":390},"\"\n",{"type":37,"tag":38,"props":392,"children":393},{},[394],{"type":37,"tag":179,"props":395,"children":396},{},[397],{"type":42,"value":398},"Update mode:",{"type":37,"tag":38,"props":400,"children":401},{},[402],{"type":42,"value":403},"First, check if the DuckDB CLI itself is up to date:",{"type":37,"tag":116,"props":405,"children":407},{"className":118,"code":406,"language":120,"meta":121,"style":121},"CURRENT=$(duckdb --version | grep -oE '[0-9]+\\.[0-9]+\\.[0-9]+')\nLATEST=$(curl -fsSL https:\u002F\u002Fduckdb.org\u002Fdata\u002Flatest_stable_version.txt)\n",[408],{"type":37,"tag":45,"props":409,"children":410},{"__ignoreMap":121},[411,466],{"type":37,"tag":127,"props":412,"children":413},{"class":129,"line":130},[414,419,423,427,432,437,442,447,452,457,462],{"type":37,"tag":127,"props":415,"children":416},{"style":134},[417],{"type":42,"value":418},"CURRENT",{"type":37,"tag":127,"props":420,"children":421},{"style":140},[422],{"type":42,"value":143},{"type":37,"tag":127,"props":424,"children":425},{"style":353},[426],{"type":42,"value":8},{"type":37,"tag":127,"props":428,"children":429},{"style":152},[430],{"type":42,"value":431}," --version",{"type":37,"tag":127,"props":433,"children":434},{"style":140},[435],{"type":42,"value":436}," |",{"type":37,"tag":127,"props":438,"children":439},{"style":353},[440],{"type":42,"value":441}," grep",{"type":37,"tag":127,"props":443,"children":444},{"style":152},[445],{"type":42,"value":446}," -oE",{"type":37,"tag":127,"props":448,"children":449},{"style":140},[450],{"type":42,"value":451}," '",{"type":37,"tag":127,"props":453,"children":454},{"style":152},[455],{"type":42,"value":456},"[0-9]+\\.[0-9]+\\.[0-9]+",{"type":37,"tag":127,"props":458,"children":459},{"style":140},[460],{"type":42,"value":461},"'",{"type":37,"tag":127,"props":463,"children":464},{"style":140},[465],{"type":42,"value":165},{"type":37,"tag":127,"props":467,"children":469},{"class":129,"line":468},2,[470,475,479,484,489,494],{"type":37,"tag":127,"props":471,"children":472},{"style":134},[473],{"type":42,"value":474},"LATEST",{"type":37,"tag":127,"props":476,"children":477},{"style":140},[478],{"type":42,"value":143},{"type":37,"tag":127,"props":480,"children":481},{"style":353},[482],{"type":42,"value":483},"curl",{"type":37,"tag":127,"props":485,"children":486},{"style":152},[487],{"type":42,"value":488}," -fsSL",{"type":37,"tag":127,"props":490,"children":491},{"style":152},[492],{"type":42,"value":493}," https:\u002F\u002Fduckdb.org\u002Fdata\u002Flatest_stable_version.txt",{"type":37,"tag":127,"props":495,"children":496},{"style":140},[497],{"type":42,"value":165},{"type":37,"tag":73,"props":499,"children":500},{},[501,519],{"type":37,"tag":77,"props":502,"children":503},{},[504,505,510,512,517],{"type":42,"value":249},{"type":37,"tag":45,"props":506,"children":508},{"className":507},[],[509],{"type":42,"value":418},{"type":42,"value":511}," == ",{"type":37,"tag":45,"props":513,"children":515},{"className":514},[],[516],{"type":42,"value":474},{"type":42,"value":518}," → report DuckDB CLI is up to date.",{"type":37,"tag":77,"props":520,"children":521},{},[522,523,528,530,535,537,564,568,570],{"type":42,"value":249},{"type":37,"tag":45,"props":524,"children":526},{"className":525},[],[527],{"type":42,"value":418},{"type":42,"value":529}," != ",{"type":37,"tag":45,"props":531,"children":533},{"className":532},[],[534],{"type":42,"value":474},{"type":42,"value":536}," → ask the user:",{"type":37,"tag":172,"props":538,"children":539},{},[540],{"type":37,"tag":38,"props":541,"children":542},{},[543,548,550,555,557,562],{"type":37,"tag":179,"props":544,"children":545},{},[546],{"type":42,"value":547},"DuckDB CLI is outdated",{"type":42,"value":549}," (installed: ",{"type":37,"tag":45,"props":551,"children":553},{"className":552},[],[554],{"type":42,"value":418},{"type":42,"value":556},", latest: ",{"type":37,"tag":45,"props":558,"children":560},{"className":559},[],[561],{"type":42,"value":474},{"type":42,"value":563},"). Upgrade now?",{"type":37,"tag":565,"props":566,"children":567},"br",{},[],{"type":42,"value":569},"If the user agrees, detect the platform and run the appropriate upgrade command:",{"type":37,"tag":73,"props":571,"children":572},{},[573,592,602],{"type":37,"tag":77,"props":574,"children":575},{},[576,578,584,586],{"type":42,"value":577},"macOS (",{"type":37,"tag":45,"props":579,"children":581},{"className":580},[],[582],{"type":42,"value":583},"brew",{"type":42,"value":585}," available): ",{"type":37,"tag":45,"props":587,"children":589},{"className":588},[],[590],{"type":42,"value":591},"brew upgrade duckdb",{"type":37,"tag":77,"props":593,"children":594},{},[595,597],{"type":42,"value":596},"Linux: ",{"type":37,"tag":45,"props":598,"children":600},{"className":599},[],[601],{"type":42,"value":210},{"type":37,"tag":77,"props":603,"children":604},{},[605,606],{"type":42,"value":215},{"type":37,"tag":45,"props":607,"children":609},{"className":608},[],[610],{"type":42,"value":611},"winget upgrade DuckDB.cli",{"type":37,"tag":38,"props":613,"children":614},{},[615],{"type":42,"value":616},"Then update extensions:",{"type":37,"tag":73,"props":618,"children":619},{},[620,631],{"type":37,"tag":77,"props":621,"children":622},{},[623,625],{"type":42,"value":624},"No extension names → update all: ",{"type":37,"tag":45,"props":626,"children":628},{"className":627},[],[629],{"type":42,"value":630},"UPDATE EXTENSIONS;",{"type":37,"tag":77,"props":632,"children":633},{},[634,636,642,644],{"type":42,"value":635},"With extension names → update in a single call (ignore ",{"type":37,"tag":45,"props":637,"children":639},{"className":638},[],[640],{"type":42,"value":641},"@repo",{"type":42,"value":643},"):\n",{"type":37,"tag":45,"props":645,"children":647},{"className":646},[],[648],{"type":42,"value":649},"UPDATE EXTENSIONS (\u003Cname1>, \u003Cname2>, ...);",{"type":37,"tag":116,"props":651,"children":653},{"className":118,"code":652,"language":120,"meta":121,"style":121},"\"$DUCKDB\" :memory: -c \"UPDATE EXTENSIONS;\"\n# or\n\"$DUCKDB\" :memory: -c \"UPDATE EXTENSIONS (\u003Cext1>, \u003Cext2>, ...);\"\n",[654],{"type":37,"tag":45,"props":655,"children":656},{"__ignoreMap":121},[657,692,701],{"type":37,"tag":127,"props":658,"children":659},{"class":129,"line":130},[660,664,668,672,676,680,684,688],{"type":37,"tag":127,"props":661,"children":662},{"style":353},[663],{"type":42,"value":356},{"type":37,"tag":127,"props":665,"children":666},{"style":134},[667],{"type":42,"value":361},{"type":37,"tag":127,"props":669,"children":670},{"style":353},[671],{"type":42,"value":356},{"type":37,"tag":127,"props":673,"children":674},{"style":152},[675],{"type":42,"value":370},{"type":37,"tag":127,"props":677,"children":678},{"style":152},[679],{"type":42,"value":375},{"type":37,"tag":127,"props":681,"children":682},{"style":140},[683],{"type":42,"value":380},{"type":37,"tag":127,"props":685,"children":686},{"style":152},[687],{"type":42,"value":630},{"type":37,"tag":127,"props":689,"children":690},{"style":140},[691],{"type":42,"value":390},{"type":37,"tag":127,"props":693,"children":694},{"class":129,"line":468},[695],{"type":37,"tag":127,"props":696,"children":698},{"style":697},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[699],{"type":42,"value":700},"# or\n",{"type":37,"tag":127,"props":702,"children":704},{"class":129,"line":703},3,[705,709,713,717,721,725,729,734],{"type":37,"tag":127,"props":706,"children":707},{"style":353},[708],{"type":42,"value":356},{"type":37,"tag":127,"props":710,"children":711},{"style":134},[712],{"type":42,"value":361},{"type":37,"tag":127,"props":714,"children":715},{"style":353},[716],{"type":42,"value":356},{"type":37,"tag":127,"props":718,"children":719},{"style":152},[720],{"type":42,"value":370},{"type":37,"tag":127,"props":722,"children":723},{"style":152},[724],{"type":42,"value":375},{"type":37,"tag":127,"props":726,"children":727},{"style":140},[728],{"type":42,"value":380},{"type":37,"tag":127,"props":730,"children":731},{"style":152},[732],{"type":42,"value":733},"UPDATE EXTENSIONS (\u003Cext1>, \u003Cext2>, ...);",{"type":37,"tag":127,"props":735,"children":736},{"style":140},[737],{"type":42,"value":390},{"type":37,"tag":38,"props":739,"children":740},{},[741],{"type":42,"value":742},"Report success or failure after the call completes.",{"type":37,"tag":744,"props":745,"children":746},"style",{},[747],{"type":42,"value":748},"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":750,"total":840},[751,765,782,798,803,813,826],{"slug":752,"name":752,"fn":753,"description":754,"org":755,"tags":756,"stars":19,"repoUrl":20,"updatedAt":764},"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},[757,760,761],{"name":758,"slug":759,"type":15},"Data Analysis","data-analysis",{"name":13,"slug":14,"type":15},{"name":762,"slug":763,"type":15},"SQL","sql","2026-07-12T07:54:35.248848",{"slug":766,"name":766,"fn":767,"description":768,"org":769,"tags":770,"stars":19,"repoUrl":20,"updatedAt":781},"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},[771,772,775,778],{"name":758,"slug":759,"type":15},{"name":773,"slug":774,"type":15},"Data Engineering","data-engineering",{"name":776,"slug":777,"type":15},"Excel","excel",{"name":779,"slug":780,"type":15},"Spreadsheets","spreadsheets","2026-07-12T07:54:39.62274",{"slug":783,"name":783,"fn":784,"description":785,"org":786,"tags":787,"stars":19,"repoUrl":20,"updatedAt":797},"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},[788,791,794],{"name":789,"slug":790,"type":15},"Documentation","documentation",{"name":792,"slug":793,"type":15},"Research","research",{"name":795,"slug":796,"type":15},"Search","search","2026-07-12T07:54:38.216517",{"slug":4,"name":4,"fn":5,"description":6,"org":799,"tags":800,"stars":19,"repoUrl":20,"updatedAt":21},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[801,802],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"slug":804,"name":804,"fn":805,"description":806,"org":807,"tags":808,"stars":19,"repoUrl":20,"updatedAt":812},"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},[809,810,811],{"name":758,"slug":759,"type":15},{"name":13,"slug":14,"type":15},{"name":762,"slug":763,"type":15},"2026-07-12T07:54:28.352759",{"slug":814,"name":814,"fn":815,"description":816,"org":817,"tags":818,"stars":19,"repoUrl":20,"updatedAt":825},"read-file","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},[819,820,823,824],{"name":758,"slug":759,"type":15},{"name":821,"slug":822,"type":15},"Data Quality","data-quality",{"name":13,"slug":14,"type":15},{"name":762,"slug":763,"type":15},"2026-07-12T07:54:33.514298",{"slug":827,"name":827,"fn":828,"description":829,"org":830,"tags":831,"stars":19,"repoUrl":20,"updatedAt":839},"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},[832,835,838],{"name":833,"slug":834,"type":15},"Claude Code","claude-code",{"name":836,"slug":837,"type":15},"Memory","memory",{"name":795,"slug":796,"type":15},"2026-07-12T07:54:40.860856",9,{"items":842,"total":840},[843,849,856,862,867,873,880,886,899],{"slug":752,"name":752,"fn":753,"description":754,"org":844,"tags":845,"stars":19,"repoUrl":20,"updatedAt":764},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[846,847,848],{"name":758,"slug":759,"type":15},{"name":13,"slug":14,"type":15},{"name":762,"slug":763,"type":15},{"slug":766,"name":766,"fn":767,"description":768,"org":850,"tags":851,"stars":19,"repoUrl":20,"updatedAt":781},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[852,853,854,855],{"name":758,"slug":759,"type":15},{"name":773,"slug":774,"type":15},{"name":776,"slug":777,"type":15},{"name":779,"slug":780,"type":15},{"slug":783,"name":783,"fn":784,"description":785,"org":857,"tags":858,"stars":19,"repoUrl":20,"updatedAt":797},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[859,860,861],{"name":789,"slug":790,"type":15},{"name":792,"slug":793,"type":15},{"name":795,"slug":796,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":863,"tags":864,"stars":19,"repoUrl":20,"updatedAt":21},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[865,866],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"slug":804,"name":804,"fn":805,"description":806,"org":868,"tags":869,"stars":19,"repoUrl":20,"updatedAt":812},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[870,871,872],{"name":758,"slug":759,"type":15},{"name":13,"slug":14,"type":15},{"name":762,"slug":763,"type":15},{"slug":814,"name":814,"fn":815,"description":816,"org":874,"tags":875,"stars":19,"repoUrl":20,"updatedAt":825},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[876,877,878,879],{"name":758,"slug":759,"type":15},{"name":821,"slug":822,"type":15},{"name":13,"slug":14,"type":15},{"name":762,"slug":763,"type":15},{"slug":827,"name":827,"fn":828,"description":829,"org":881,"tags":882,"stars":19,"repoUrl":20,"updatedAt":839},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[883,884,885],{"name":833,"slug":834,"type":15},{"name":836,"slug":837,"type":15},{"name":795,"slug":796,"type":15},{"slug":887,"name":887,"fn":888,"description":889,"org":890,"tags":891,"stars":19,"repoUrl":20,"updatedAt":898},"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},[892,895,896,897],{"name":893,"slug":894,"type":15},"Cloud","cloud",{"name":773,"slug":774,"type":15},{"name":13,"slug":14,"type":15},{"name":762,"slug":763,"type":15},"2026-07-12T07:54:36.928868",{"slug":900,"name":900,"fn":901,"description":902,"org":903,"tags":904,"stars":19,"repoUrl":20,"updatedAt":911},"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},[905,906,907,910],{"name":758,"slug":759,"type":15},{"name":13,"slug":14,"type":15},{"name":908,"slug":909,"type":15},"Maps","maps",{"name":762,"slug":763,"type":15},"2026-07-12T07:54:32.004105"]