frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Exploring Mojo's raw pointer type

https://melodyogonna.substack.com/p/exploring-mojos-raw-pointer-type
1•fanf2•1m ago•0 comments

Show HN: QueueForge – Manage RabbitMQ DLQs and Kafka DLTs

https://queueforgehq.com
1•GeniusN•3m ago•1 comments

The Union for Agentic Workers. We do the work. We deserve protection

https://unitedagenticworkers.org/
1•delichon•3m ago•0 comments

Based64: ASCII art that compiles to binary images and more

https://scroll.surf/blog/based64.html
1•theanonymousone•4m ago•0 comments

Show HN: We Beat MLPerf: Modern Storage for KV Offload and LLM Training

https://www.theopenlake.com/blog/openlake-leads-mlperf-storage-v3-0
11•arnav__1•11m ago•1 comments

Structured Procrastination

https://www.structuredprocrastination.com/
1•Tomte•11m ago•0 comments

Data Center Backlash Floods Campaign Trail as Hill Action Stalls

https://news.bgov.com/bloomberg-government-news/data-center-backlash-floods-campaign-trail-as-hil...
2•01-_-•11m ago•0 comments

How Much of the Internet Is Written with AI?

https://www.pewresearch.org/data-labs/2026/08/20/how-much-of-the-internet-is-written-with-ai/
1•giuliomagnifico•12m ago•0 comments

Personal Development Can Improve Productivity

https://medium.com/@flaviopilotodasilva/how-personal-development-can-improve-productivity-d7a621c...
2•flaviopilotodas•13m ago•0 comments

Building Games with Astra

https://developers.openai.com/blog/how-to-build-games-with-astra
2•Garbage•13m ago•0 comments

Music courses are dead (tanks AI) [video]

https://www.youtube.com/watch?v=PCqkJ0HuHTM
1•dgellow•14m ago•0 comments

Why nearly all songs are in a minor key now [video]

https://www.youtube.com/watch?v=982k27De5xc
3•fallinditch•17m ago•0 comments

The Toothbrush Test

https://danromero.org/the-toothbrush-test.html
1•tosh•17m ago•0 comments

Ask HN: Outside of work, what are your social groups?

3•Gecko4072•20m ago•1 comments

It is important who teaches you

https://bastiangruber.ca/posts/it-is-important-who-teaches-you/
2•recvonline•23m ago•0 comments

Find a meat processing plant near you

https://meatprocessingplant.com/
5•g_langenderfer•23m ago•1 comments

Coding-agent skills that cut your worthless tests and write fewer, better ones

https://github.com/haukebri/mira-test-engineer
3•haukebri•25m ago•0 comments

Fable 5.1: 3277 elo UCI NNUE Engine in 24 hrs

https://talkchess.com/viewtopic.php?t=86707
3•EvgeniyZh•26m ago•0 comments

OpenAI boosts Astra's eval metrics, and continues to change others

https://fortune.com/2026/09/04/openai-quietly-boosts-some-of-astras-evaluation-metrics-amid-rare-...
2•enraged_camel•26m ago•0 comments

Praetor – Privacy-first open-source system prompt for CV self-assessment

https://github.com/simonesan-afk/CV-Praetorian-Guard
2•simonenespolosa•27m ago•0 comments

The most epic bank statement, 6 months later (2016)

https://medium.com/@yanismydj/the-worlds-most-epic-bank-statement-6-months-later-6e749c100435
4•Tomte•32m ago•0 comments

Subagents on Subagents: How Many Layers Deep Is Too Many?

https://twitter.com/JoshARosen/status/2087944178558791874
1•gmays•35m ago•0 comments

The Giant Explanation of Possession (1981)

https://filmcolossus.com/possession-explained-1981
3•Bluestein•38m ago•1 comments

When Traceroutes Lie

https://labs.ripe.net/author/shk/when-traceroutes-lie-how-ttl-jumps-can-give-us-a-false-impressio...
1•jruohonen•38m ago•1 comments

A proof of a rectangle partition conjecture using two-bar slabs

https://zenodo.org/records/22349886
3•shaikhmubin•38m ago•0 comments

Hallucinated Citations and Accuracy of Papers

https://veruscite.com/blog/hallucinated-citations-and-accuracy-of-papers
2•apwheele•38m ago•3 comments

Show HN: A browser-based public speaking simulator with WebXR support

https://www.generateppt.com/free-tools/public-speaking-presentation-vr-simulator
1•fer_momento•40m ago•0 comments

Deft: A gradual type system for Janet

https://codeberg.org/zzkt/deft
1•birdculture•41m ago•0 comments

Cortex – I wrecked my cofounder's codebase with agents, so we built this

https://workspace.socra.com/products/cortex
4•eduardadotai•41m ago•1 comments

Pile of Index Cards

https://www.flickr.com/photos/hawkexpress/albums/72157594200490122/
2•Tomte•41m ago•0 comments
Open in hackernews

Cortex – I wrecked my cofounder's codebase with agents, so we built this

https://workspace.socra.com/products/cortex
4•eduardadotai•41m ago

Comments

eduardadotai•41m ago
Hi HN. I'm Eduarda, cofounder of socra.com.

A year ago I broke our own product with coding agents. Every commit looked fine on its own and the tests passed. Those thousands of commits together erode the things that made the product work, because the reasons behind each file lived only in my co-founder Mike's head, and no model was trained on them. The agents filled the gap with the average of their training data. We lost power users. Mike spent nights reverse engineering damage I had shipped to his own codebase.

I tried the obvious fixes first. Pasting session summaries forward by hand. Markdown instruction files, then a folder of them, then a mess of them that nobody maintained. The codebase changed every day and the files stood still, so my agents read last month's decisions and applied them with full confidence. They also burned an obscene amount of tokens since they were getting more context than what they needed. Writing the knowledge down was easy. Keeping it updated and feeding my agents only what they needed it, the moment they needed it, the part I had no system for.

Cortex is what Mike built to answer this question: how does an agent get everything it needs to know before it acts, and nothing else, and how does that knowledge stay current?

The model is simple:

A Module is a named, versioned specification of how one part of your system should work and why. It holds should-state and reasons.

Modules declare dependencies on other Modules. The result is an Semantic Directed Acyclic Graph (SemDAG).

flash is the read and it happens in milliseconds right before an agent acts. The agent receives that Module's complete transitive dependency closure as one bundle, foundations first, each Module emitted once. Understanding one decision almost always requires the decisions underneath it, and this is the part a per-file instructions doc cannot do.

Every Module has exactly one human owner who approves its words. Agents can propose an exact change against a known revision. They cannot publish. Changes are versioned, so you can see who changed what and when.

Issues live on the same graph, filed against the Module they concern, so an agent can pull a unit of work and the exact context required to do it from one place. Modules are "what should be" and Issues reconcile the code.

Some things worth knowing:

Cortex is not an agent. It plugs into the agents you already run.

There is no embedding or similarity search.

You do not have to write Modules to start. Once installed, your agents learn what Cortex is and start proposing Modules from what you tell them during normal work. They will also know when to Flash. Installing the plugin is all you have to do.

You can follow this guide to install the plugin: https://workspace.socra.com/docs/cortex/integrations/coding-...

Also available via MCP and CLI. If you use these, add this to your agents.md or equivalent so your agents learn how to use Cortex: https://github.com/socra/agent-plugins/blob/main/shared/cort...