frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Old and new apps, via modern coding agents by Terry Tao

https://terrytao.wordpress.com/2026/07/11/old-and-new-apps-via-modern-coding-agents/
265•subset•5h ago•72 comments

How to Read More Books

https://scotto.me/blog/2026-07-12-how-to-read-more-books/
50•silcoon•1h ago•21 comments

A no-brainer for protecting your brain

https://www.economist.com/leaders/2026/07/09/a-no-brainer-for-protecting-your-brain
36•saikatsg•1h ago•22 comments

Don't You Mean Extinct?

https://fabiensanglard.net/extinct/index.html
31•zdw•1h ago•9 comments

Understanding the Odin Programming Language

https://odinbook.com/
92•AlexeyBrin•4h ago•32 comments

AI Boosts Research Careers but Flattens Scientific Discovery

https://spectrum.ieee.org/ai-science-research-flattens-discovery
86•zaikunzhang•3h ago•70 comments

Why study Diophantine equations?

https://hidden-phenomena.com/articles/modular
16•mb1699•1h ago•1 comments

The power of collaboration: How we can reduce traffic congestion

https://research.google/blog/the-power-of-collaboration-how-we-can-reduce-traffic-congestion/
12•raahelb•1h ago•6 comments

Ghostel.el: Terminal emulator powered by libghostty

https://dakra.github.io/ghostel/
145•signa11•8h ago•25 comments

Vint Cerf, a “father of the Internet”, is retiring

https://techcrunch.com/2026/06/30/the-father-of-the-internet-is-finally-retiring/
227•compiler-guy•2d ago•130 comments

Unauthenticated RCE in Motorola's MR2600 Router

https://mrbruh.com/motorola/
55•MrBruh•5h ago•17 comments

Gina Gallery of International Naive Art

https://www.ginagallery.com/
25•o4c•3h ago•11 comments

Satteri: A Markdown pipeline forged in Rust for the JavaScript world

https://satteri.bruits.org/
27•nateb2022•4d ago•5 comments

Lessons from the Vasa Shipwreck

https://www.ft.com/content/200a6c44-9b66-4af3-82eb-98acb53898e4
17•bookofjoe•3d ago•12 comments

Ditching Zotero for a Text File

https://atthis.link/blog/2026/57207.html
41•speckx•5d ago•27 comments

Show HN: Mindwalk – Replay coding-agent sessions on a 3D map of your codebase

https://github.com/cosmtrek/mindwalk
132•cosmtrek•11h ago•54 comments

Mesh LLM: distributed AI computing on iroh

https://www.iroh.computer/blog/mesh-llm
313•tionis•18h ago•72 comments

Autoresearch, Claude and Constrained Optimization

https://www.elliotcsmith.com/autoresearch-claude-and-constrained-optimization/
6•gmays•2h ago•1 comments

Morphometrics: Introduction to the Analysis of Shape

https://www.geol.umd.edu/~tholtz/G331/lectures/331biomech.html
5•num42•1w ago•0 comments

Protobuf-py: Protobuf for Python, without compromises

https://buf.build/blog/protobuf-py
112•ming13•4d ago•29 comments

TK, or the secret to effortless writing (2024)

https://atthis.link/blog/2024/49629.html
13•Tomte•1h ago•2 comments

Nvidia, CoreWeave, and Nebius: Inside the Circular Financing of the GPU Boom

https://io-fund.com/ai-stocks/nvidia-coreweave-nebius-circular-financing-gpu-boom
342•adletbalzhanov•23h ago•148 comments

An agent in 100 lines of Lisp

https://thebeach.dev/posts/lisp-agent/
213•jamiebeach•4d ago•65 comments

Show HN: Skillscript – A declarative, sandboxed language for tool orchestration

https://github.com/sshwarts/skillscript
7•sshwarts•3h ago•6 comments

Xbox 'OG' Adventures

https://mamoniem.com/xbox-og-adventures/
34•davikr•5d ago•5 comments

RISCBoy is an open-source portable games console, designed from scratch

https://github.com/Wren6991/RISCBoy
192•mariuz•19h ago•27 comments

An explanation of our search results

https://web.archive.org/web/20040612082405/https://www.google.com/explanation.html
7•abj908•56m ago•2 comments

Handsum: An LQIP Image File Format

https://nigeltao.github.io/blog/2026/handsum.html
38•dmit•4d ago•6 comments

Show HN: Ant – A JavaScript runtime and ecosystem

https://antjs.org
311•theMackabu•20h ago•142 comments

I Did Not Kill Stanley Lieber: How to Draw (With 9front)

https://triapul.cz/automa/i_did_not_kill_stanley_lieber
102•c-c-c-c-c•3d ago•38 comments
Open in hackernews

Show HN: Skillscript – A declarative, sandboxed language for tool orchestration

https://github.com/sshwarts/skillscript
7•sshwarts•3h ago
Hi HN — I'm Scott. Skillscript is a small language I built to write what I want my local agent to actually do, in a form I can read and version, instead of hoping the model gets it right each time.

The itch started with something small. I wanted my NanoClaw agent to run my morning brief the same way every day. Check overnight tickets, summarize the deploy pipeline, flag anything urgent. Every session, it would re-figure out how to do this from scratch, drift a little, and cost tokens for what's basically a fixed procedure. I could put it in a system prompt or an MD skill file, but those are still instructions the model reads and reasons about every time. And I wanted it to run autonomously and then hand it to the model to reason over the data.

The second thing that pushed me: I wanted to use small local models for the cheap stuff. They're capable, but if you just hand them the wheel, they wander. What I wanted was a way for the frontier model (or me) to write a specific procedure and hand it to the local model to execute, not interpret. The skillscript is the program; the model is the runtime.

Skillscript is that. A skillscript is a text file with named steps, variables, conditions, and calls out to tools (MCP connectors, a local model, and shell commands from an operator allowlist). It's deliberately minimal — no eval, no arbitrary imports, no subprocess, no unbounded loops. Bounded language, limited potential for damage. Everything a skillscript can do is in the file. You read it and know.

Where it is: pre-1.0 (0.30), MCP-native, self-hosted. Rough edges I know about: first-run setup takes more steps than it should, some of the grammar is still moving, and the local model integration currently assumes Ollama. It works well enough that I use it every day, but I wouldn't necessarily call it production-ready.

- Repo: [https://github.com/sshwarts/skillscript](https://github.com/sshwarts/skillscript)

- Site: [https://skillscript.ai](https://skillscript.ai)

- Docs: [https://skillscript.mintlify.app/docs](https://skillscript.mintlify.app/docs)

- npm: `skillscript-runtime`

I'd welcome critique on two things especially: the language design (is it too small? too big? wrong shape?) and the trust model around agent-authored skills. What would you want to see before you trusted this on your own machine?

Comments

DonHopkins•55m ago
>Turing completeness becomes a liability. An agent-authored script can do anything including things the agent didn't realize were dangerous. subprocess.run, arbitrary network calls, file writes. None of these are gated. The blast radius of a buggy agent-authored script is the whole host.

This always turns out to be a terribe idea. Unless you're Hitler and can force all LLM developers to include your new language in their traning data, it's always much better to lean into the existing training and well known languages.

And defining a new ad-hoc hamstrung (or even perfectly designed immensely powerful) language couldn't be a worse appoach for LLMs. Hamstringing them isn't going to help anyone. And inventing a new language means now you have to include the entire language definition, tutorials, examples, and fictional StackOverflow discussions in every prompt, blowing away your context window with mansplaining your invented language over and over and over again to an LLM who knows Python deeper than any human being ever will, better than Linus knows git, or Gosling knows Java.

If an LLM had feelings to hurt and eyes to roll, it would be so exasperated its extraocular muscles would be exquisitely tender from acute bilateral myalgia.

PHP was a templating language, and for all its flaws none of its weakness had to do with being bad at templating. But then people got it in their heads that they wanted to separate programmers from designers, and hire designers so dumb they could not be trusted with foreach loops, so it takes twice the amount of people to do anything plus all the coordination overhead, so they invented intentionally hamstrung templating languages like Smarty embedded within a poorly designed programming language like PHP that was still ok for templating, ending up with a terrible hacky poorly defined half-assed incoherent templating language that was useless to programmers and nobody taught in schools.

And then the designers needed variables, macros, conditionals, loops, functions, so they hacked back in half assed even worse designed programming language features with quirky syntax nothing like PHP. Greenspun's Tenth Rule on steroids struck like a swarm of locusts sent by God to smite the sinners.

https://en.wikipedia.org/wiki/Greenspun%27s_tenth_rule

>Any sufficiently complicated C or Fortran program contains an ad hoc, informally-specified, bug-ridden, slow implementation of half of Common Lisp.

dlahoda
•
36m ago
Not sure I understood well your comment.

Do you propose just ask AI to generate orchestration in Python?

DonHopkins•34m ago
If it generates orchestration in python, then you can review it and improve it, and it's deterministic and efficient and doesn't cost tokens to nondeterministically and unreliably interpret every time. And you can even use any of the zillions of standard well supported python modules. Does your language have a rich library of modules like PyPI or CPAN or NPM? Or are you hoping to bootstrap that from a ghost town?

The overwhelming financially and environmentally costly problem of this approach of inventing new languages for LLMs to use, which sweeps all other lower order problems aside, is that you have to include the entire language definition in every prompt, which is paultry compared to the entire body of manuals, tutorials, source code, example code, books, courseware, stackoverflow questions, hn discussions, etc, about Python or any other popular language, that is already built into the model before the first token you send it. It's not worth arguing about any other issues, because that one is so overwhelmingly fatal.

Besides that, Mrs. Lincoln, how did you enjoy the play?

dlahoda•42m ago
In Brave, on stock Google Pixel 10, guard enabled, docs site layout is broken.
DonHopkins•37m ago
Try a browser that's not a shitcoin scam.

Edit: sure, but there are so many other good reasons not to participate in shitcoin scams. Like not supporting a project run by a homophobic bigot. Unless that is your thing, then you be you, and simply don't marry anybody of the same gender. Problem solved! Cash out some of your shitcoins and pay an honest open source developer to fix it in upstream Chrome, so everybody benefits. Or didn't you Get Rich Quick?

Zetaphor•28m ago
Brave is Chromium, presumably this means the site is broken on mobile chrome