Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Pangram – AI detector for text and images(pangram.com ↗)
    discuss
  2. Migrating the GitHub Copilot Runtime to Rust, Using Copilot(github.blog ↗)
    discuss
  3. Game UI Database(gameuidatabase.com ↗)
    discuss
  4. Found a B2B billing stack for my agency that doesn't feel like 2010(cordhq.app ↗)
    discuss
  5. Pro UI: native grade components for pro software(pro-ui.dev ↗)
    discuss
  6. Page Shield ML caught 4 storefront malware campaigns scanners missed(cloudflare.com ↗)
    discuss
  7. Why the Postpandemic Tech Bust Sent Billionaires to Trump(wired.com ↗)
    discuss
  8. Hacker puts 'full redundancy' code-hosting firm out of business (2014)(pcworld.com ↗)
    discuss
  9. OpenAI Discloses Six New Incidents of ‘Concerning’ A.I. Behavior(nytimes.com ↗)
    1comments
  10. Math challenges a 2k-year-old story about Parthenon's optical illusions(phys.org ↗)
    discuss
  11. Could Your Chatbot Be Stealing Ideas from You?(nytimes.com ↗)
    1comments
  12. Weeping whales: Stillborn humpback whale grieving documented(phys.org ↗)
    discuss
  13. I gave my agents a heartbeat(mlsystemsri.com ↗)
    discuss
  14. Will AI Replace Your Doctor? Dr. Zeke Emanuel and AMA President Dr. John Whyte(youtube.com ↗)
    1comments
  15. A Large Database Does Not Mean Large Shared_buffers(keithf4.com ↗)
    discuss
  16. Size-Specialized Memory Allocation(go.dev ↗)
    discuss
  17. What's Scarier Than Agents Taking over Internet? CEO Cartel Trying Take over AI(fractalsofchange.substack.com ↗)
    discuss
  18. AI Cheating Is on the Rise(vals.ai ↗)
    discuss
  19. Unplug America(engageq.notion.site ↗)
    discuss
  20. Suzanne Ciani's Buchla Cookbook(echo.orpheusinstituut.be ↗)
    discuss
  21. OpenAI discloses six new AI safety incidents(axios.com ↗)
    1comments
  22. The Return of Sail Power: Cargo Ships Are Turning Back to the Wind(gcaptain.com ↗)
    discuss
  23. How the Strategic Petroleum Reserve Works(construction-physics.com ↗)
    discuss
  24. What Would Canada's Associate Membership of the EU Look Like?(wsj.com ↗)
    discuss
  25. Cert/CC covers up Google's data retention fraud(medium.com/istokovicsgyorgy79 ↗)
    discuss
  26. A dead man's switch with client-side crypto and an offline decryptor(etergis.com ↗)
    discuss
  27. Show HN: Hacker News, a little more focused(beehivesoftware.xyz ↗)
    discuss
  28. Recursive Meta-Intelligence(twitter.com/profbuehlermit ↗)
    discuss
  29. Unlocking the Brain's Potential, with Gül Dölen [video](youtube.com ↗)
    discuss
  30. Where Yesterday's Decisions Run Today(medium.com/gurvinder372 ↗)
    discuss

OpenSpec – A lightweight and configurable AI spec framework

53 pointsby 2h agoopenspec.dev
14 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.

1h 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.

1h 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.

1h 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).

1h 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. :)

1h agoHN ↗

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

Why does it need to have an entire CLI?

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

47m agoHN ↗

What are people using for this nowadays?

There seems to be a spectrum from fluid, iterative workflows like OpenSpec to more up-front alignment and control like Matt Pocock skills.

Curious what people have settled on.

8m agoHN ↗

Symlink the global MD files to a single file I control that is versioned. Define my own general spec and workflow terminology using markdown files in this universal MD.

```

~/.config/opencode/AGENTS.md

~/.claude/CLAUDE.md

~/.codex/AGENTS.md

~/.copilot/copilot-instructions.md

~/.gemini/GEMINI.md

```

Define it as a graph and iterate. I use more tokens, but I can also use more tools without disruption. Delegating markdown to folders/smaller repos can solve the tokens/context issue.

42m agoHN ↗

LOVE. LOVE. LOVE. Openspec.

Easily my favorite spec driven development framework.

It scored really well in our internal evals as well.

I think it has the most sane ceremony and its model fits my mental model really well.

I've also been working on a TUI that will automatically generate "phases" with each one being a openspec spec.

I would highly recommend trying out SpecDriven development. I found it to be the most productive way to work with LLMs for larger tasks, and I have found that it improves performance on larger tasks.

To me, this is where LLMs should go. Collaborating on shared documents that serve as a contract that then gets evaluated post-implementation

I've made multiple attempts to write domain-specific languages for LLMs to use to guide software architecture so that I can have higher-quality software architecture and also so that it can communicate ideas to me in a more terse way.

One thing that I think LLMs are lacking right now is information density. I'm a guitarist, and I like this game called Rocksmith, but I think that its user interface kind of sucks. It's fun to play along with the songs, and it's fun that it scores me on the songs and gamifies playing guitar. For dense notes, the user interface just isn't very good.

That kind of made me think more about information density. A sheet of notes is very dense, but it takes a little more time to process. Guitar tablature is slightly less dense, but I think it strikes a better balance between treble clef and Rocksmith. Really, I'd rather have all three of those presented to me.

This is really where I'd like to go with how I'm writing software now. LLMs: I'd love to be able to just create a specification that is very dense and describes domain-driven design concepts to the LLM, and then have a workflow that will do adversarial review to evaluate those concepts after implementing a phase.

This also kind of solves part of the problem with design decisions and artifact storage and all those things that we kind of see LLMs scatter around a codebase. If it exists in the spec, then it can be referenced later, and you can document changes, etc. Also, if you do the spec right, it could be language-agnostic.

28m agoHN ↗

Tired of wrestling JIRA for AI project specs. If this actually streamlines things, I'm definitely giving it a look.

17m agoHN ↗

Haven’t we moved on from these things? Most recent LLMs have been trained on enough long context tasks to have become pretty good at planning. Perhaps with contributions from the harness. In either case, I wouldn’t bother if I were using Codex or Claude Code.