Hacker News

New stories

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

46m 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.

30m 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.

33m 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).

29m 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. :)

22m agoHN ↗

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

Why does it need to have an entire CLI?

4m 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.