frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Shirei, cross-platform GUI framework in native Go

https://github.com/hasenj/go-shirei/
2•hsn915•2m ago•0 comments

Show HN: Broll – an MCP server that gives coding agents a content studio

https://github.com/luke-fairbanks/broll
2•lukefairbanks•17m ago•0 comments

Show HN: A lightweight app to let LLM work for oncall

https://www.neatcontext.com/
3•tanglearncode•18m ago•1 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

Show HN: The Line of Hope – how current teams compare to past champions

https://titlehopes.com/mlb/standings/index.html
2•marcreicher•25m ago•0 comments

Show HN: VectorSim Tool for Visualizing DSP

https://vectorspin.dsp-coach.com/vector_spin.html#time=1,1,1,1,1,1,1,1&iq_mode=freq&update_time=2...
2•jason_s•47m ago•0 comments

Show HN: I gave my AI coding agents a group chat (it's just a Git repo)

https://github.com/yonidavidson/agentcomm
2•yonidavidson•52m ago•0 comments

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

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

Show HN: AI Photo Editor – Professional-Grade Image Editing with Text Prompts

https://www.aiphotoeditor.ai/
3•vtoolpro•1h ago•0 comments

Show HN: Vigil – open-source TimeTracker with steroids

https://github.com/Brokenwatch24/vigil
2•jjaramillor•1h ago•0 comments

Show HN: TrialPilot – clinical trials from your phone, built by a patient

2•thenerdhead•1h ago•2 comments

Show HN: Ant – A JavaScript runtime and ecosystem

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

Show HN: Pirate.kred – Tipjar DNS for Pirates to pay authors

https://pirate.kred/
3•smashah•1h ago•1 comments

Show HN: Instrumation a PYPI library for Instruments

https://github.com/abduznik/instrumation
3•abduznik•1h ago•0 comments

Show HN: Kurvengefahr – browser CAD/CAM for pen plotters

https://kurvengefahr.org/
3•tibordp•2h ago•0 comments

Show HN: Pickle Tasks – a virtual pickle jar that randomly picks your next task

https://pickletasks.com
2•thip•1h ago•3 comments

Show HN: Itara – Distributed system topology as an explicit, executable layer

https://github.com/itara-project/itara
3•gkiss0001•1h ago•2 comments

Show HN: A dark fantasy short story

https://lawfully.netlify.app/
3•darkhorse13•2h ago•0 comments

Show HN: Containix – Run Nix flakes as Kubernetes pods without images

https://containix.dev/
2•atmask•2h ago•0 comments

Show HN: Introducing: Zotfile Agents

https://www.zot.sh/docs/zotfiles
8•patriceckhart•2h ago•0 comments

Show HN: I built a live streaming platform

https://pairux.com/@moshcoding
2•buffer_overlord•2h ago•0 comments

Show HN: Agent Legibility Analyzer see if AI shopping agents can read your store

https://agentmint.net/
2•Abdalsalaam•2h ago•1 comments

Show HN: MealPlans.dev

https://mealplans.dev/
2•thequietmind•2h ago•1 comments

Show HN: Learn by rebuilding Redis, Git, a database from scratch

https://shipthatcode.com
187•acley•1d ago•63 comments

Show HN: Getting GLM 5.2 running on my slow computer

https://github.com/JustVugg/colibri
907•vforno•3d ago•231 comments

Show HN: Orbit – AR satellite tracker, watch 15k+ objects

https://nagylukas.github.io/orbit.html
84•lukas9•1d ago•19 comments

Show HN: Sqlsure – deterministic semantic checks for AI-generated SQL

https://github.com/sqlsure/sqlsure
36•tejusarora•20h ago•6 comments

Show HN: 18 Words

https://18words.com/
1138•pompomsheep•3d ago•357 comments

Show HN: Earth Game – An offline CLI for turning life goals into quests

https://github.com/skorotkiewicz/earth-game
50•modinfo•1d ago•11 comments

Show HN: Reame – a CPU inference server that gets faster as it runs

https://github.com/swellweb/reame
55•targetbridge•1d ago•16 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•52m 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
•
33m ago
Not sure I understood well your comment.

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

DonHopkins•31m 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•39m ago
In Brave, on stock Google Pixel 10, guard enabled, docs site layout is broken.
DonHopkins•34m 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•26m ago
Brave is Chromium, presumably this means the site is broken on mobile chrome