duckdb

Installation
SKILL.md

DuckDB JSON Processing

DuckDB excels at JSON analytics: schema inference, SQL queries, complex joins, and streaming. Use when Nushell pipeline commands aren't enough.

Loading JSON

read_json — Auto-Detect Schema

Reads JSON files or URLs, auto-detects structure into typed columns. Arrays and objects become composite types.

-- Load from URL or file
select * from read_json('https://api.example.com/data');
select * from read_json('data.json');

-- In-memory (no .db file)
duckdb :memory:
Installs
4
Repository
knoopx/pi
GitHub Stars
59
First Seen
May 24, 2026
duckdb — knoopx/pi