Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. A dead man's switch with client-side crypto and an offline decryptor(etergis.com ↗)
    discuss
  2. Show HN: Hacker News, a little more focused(beehivesoftware.xyz ↗)
    discuss
  3. Recursive Meta-Intelligence(twitter.com/profbuehlermit ↗)
    discuss
  4. Unlocking the Brain's Potential, with Gül Dölen [video](youtube.com ↗)
    discuss
  5. Where Yesterday's Decisions Run Today(medium.com/gurvinder372 ↗)
    discuss
  6. AgentLane: Git-native coordination for coding agents(github.com/thetrueshags ↗)
    discuss
  7. Ask HN: How long before we will have a major AI driven cyberincident?
    discuss
  8. Bringing Correctly Rounded Math to Production with LLVM-Libc(devblogs.microsoft.com/cppblog ↗)
    discuss
  9. When the fractional part of a float fixes your shader(crocidb.com ↗)
    discuss
  10. Otis – a minimal AI agent that runs local models out of the box(triangllabs.ai ↗)
    1comments
  11. Researchers have created a mouse with a partly human brain(economist.com ↗)
    discuss
  12. Duotone icon library with 1k icons and 250 flags for React with RTL support(github.com/andrsrxn ↗)
    discuss
  13. Show HN: Nullsec – server-blind encrypted paste(pntr.dev ↗)
    discuss
  14. Future of computing is here – OmaVision on Omarchy [video](youtube.com ↗)
    1comments
  15. Paramount 'Leaks' Study Saying California Will Suffer If Its Merger Is Blocked(techdirt.com ↗)
    1comments
  16. Mockfreeli – paste a YouTube link, get 5 license-free songs that sound like it(mockfreeli.org ↗)
    discuss
  17. The US Gov Graph – a complete map of the federal government(civlab.org ↗)
    1comments
  18. What If You Could Do It All Over?(newyorker.com ↗)
    1comments
  19. Permission to Live (In Japan)(buttondown.com/whatever_jamie ↗)
    1comments
  20. SpaceX's next Starship launch is Sept. 22, aims to reach orbit for first time(space.com ↗)
    discuss
  21. The End of Verygoodsoftwarenotvirus.ru(verygoodsoftwarenotvirus.dev ↗)
    discuss
  22. Asking Authors About Their Own Papers(medium.com/tmlrorg ↗)
    discuss
  23. Next-gen gravitational wave detectors could spot the first black holes(phys.org ↗)
    discuss
  24. US interest rates raised for first time in three years(bbc.com ↗)
    discuss
  25. My website charged AI agents a penny per page. I watched Claude pay it(suganthan.com ↗)
    1comments
  26. Show HN: Helping agents break out of their sandboxes in a monitorable way(sparrowsystems.co ↗)
    discuss
  27. Encouraging Deception in Compaction Summaries(alignment.openai.com ↗)
    discuss
  28. vLLM: Jev-like mode for the DiffusionGemma model(github.com/vllm-project ↗)
    discuss
  29. DeepSeek's Parent Company(high-flyer.cn ↗)
    discuss
  30. The Flask Mega-Tutorial, Part I: Hello, World(miguelgrinberg.com ↗)
    discuss

OpenSpec – A lightweight and configurable AI spec framework

39 pointsby 1h agoopenspec.dev
9 comments
1h agoHN ↗

I've been using this, or more pointedly, I built an agent fleet (bespoke harness) where the planner agent uses OpenSpec to generate the plan. Then turns the tasks into a ticket graph.

It works fairly well, and it is definitely less heavy than SpecKit.

44m agoHN ↗

This looks like exactly what I've been thinking I needed. I've tried Superpowers, GSD and oh-my-claude/openagent and mostly they burn more tokens.

Lately I've been using stock OMP and its close to the right balance but not quite enough of the brainstorming and spec maintenance built in. I've tried to layer some simple stuff on myself but with mixed results.

28m agoHN ↗

I think they might be in the process of re-designing the site and/or moving docs because it all used to work not that long ago, but the site design was completely different last time I checked.

32m agoHN ↗

This is my first time seeing openspec, and it seems to share a similar philosophy to what I've been working on this year.

If you like this / SDD, I'd appreciate your feedback:

https://github.com/spekk-ai/spekk-cli

Similar iterative specs philosophy. Ours is a bit different because we focus on declarative specs and installable agent skills. We chose Go for simplicity and minimal requirements (single binary).

28m agoHN ↗

I've also been building something like this, and browsing spekk-cli, it's interesting to see that we ended up with similar roles. Might be fun to compare and contrast a couple of these systems. :)

20m agoHN ↗

It's just a bundle of skills and md files...

Why does it need to have an entire CLI?

2m agoHN ↗

The CLI is actually useful. It gives the skills a way to deterministically interact with the spec. For example, it can validate the shape without having to spend tokens reading the files.