Schemesh – Unix shell and Lisp REPL, now with structured pipelines
cosmos0072
26 points
5 comments
March 16, 2026
Related Discussions
Found 5 related stories in 51.6ms across 3,471 title embeddings via pgvector HNSW
- Show HN: Mesa – A collaborative canvas IDE built for agent-first development visekr · 15 pts · March 13, 2026 · 49% similar
- Show HN: Tmux-IDE, OSS agent-first terminal IDE thijsverreck · 75 pts · March 18, 2026 · 49% similar
- Show HN: Sycamore – next gen Rust web UI library using fine-grained reactivity lukechu10 · 94 pts · April 01, 2026 · 48% similar
- Emacs as a Programmable Workbench signa11 · 13 pts · March 30, 2026 · 47% similar
- Get Shit Done: A meta-prompting, context engineering and spec-driven dev system stefankuehnel · 267 pts · March 17, 2026 · 47% similar
Discussion Highlights (2 comments)
cosmos0072
First stable release appeared on HN one year ago: https://news.ycombinator.com/item?id=43061183 Thanks for all the feedback! Today, version 1.0.0 adds structured pipelines: a mechanism to exchange (almost) arbitrary objects via POSIX pipes, and transform them via external programs, shell builtins or Scheme code. Example: dir /proc | where name -starts k | sort-by modified possible output: ┌───────────┬────┬───────────────┬────────┐ │ name │type│ size │modified│ ├───────────┼────┼───────────────┼────────┤ │kcore │file│140737471590400│09:32:44│ │kmsg │file│ 0│09:32:49│ │kallsyms │file│ 0│09:32:50│ │kpageflags │file│ 0│10:42:53│ │keys │file│ 0│10:42:53│ │kpagecount │file│ 0│10:42:53│ │key-users │file│ 0│10:42:53│ │kpagecgroup│file│ 0│10:42:53│ └───────────┴────┴───────────────┴────────┘ Another example: ip -j route | select dst dev prefsrc | to json1 possible output: [{"dst":"default","dev":"eth0"}, {"dst":"192.168.0.0/24","dev":"eth0","prefsrc":"192.168.0.2"}] Internally, objects are serialized before writing them to a pipe - by default as NDJSON, but it can be set manually - and deserialized when reading them from a pipe. This allows arbitrary transformations at each pipeline step: filtering, choosing a subset of the fields, sorting with user-specified criteria, etc. And each step can be an executable program, a shell builtin or Scheme code. If you know nushell, they will feel familiar as they are inspired by it - the implementation is fully independent, though.
ascent817
I'm not too familiar, but is this similar to nushell?