Feed aggregator

What Is Stoicism?

Hacker News - Sat, 02/07/2026 - 11:06am
Categories: Hacker News

There's no such thing as "tech" (Ten years later)

Hacker News - Sat, 02/07/2026 - 11:04am

Comments URL: https://news.ycombinator.com/item?id=46924878

Points: 1

# Comments: 0

Categories: Hacker News

Ask HN: Anyone orchestrating multiple AI coding agents in parallel?

Hacker News - Sat, 02/07/2026 - 11:02am

I've been running into a wall with AI coding assistants. They're great individually, but I end up being the human middleware - copy-pasting between Claude windows, manually coordinating who works on what.

So I built something: Orcha (orcha.nl). It lets you run multiple Claude Code agents in parallel, each on separate git branches. Visual workflow builder to define hand-offs. All 100% local.

What took 2 hours now takes 20 minutes.

Curious: Has anyone else tried multi-agent setups? What worked? What didn't?

Comments URL: https://news.ycombinator.com/item?id=46924871

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: Knowledge-Bank

Hacker News - Sat, 02/07/2026 - 10:57am

An intelligent knowledge management system for Claude Code that automatically captures, stores, and retrieves development knowledge during your coding sessions.

Comments URL: https://news.ycombinator.com/item?id=46924834

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: The Codeverse Hub Linux

Hacker News - Sat, 02/07/2026 - 10:56am

Hi HN!, So, We are working on an open source Linux distribution called CodeVerse Linux. It is a community project built by developers from The CodeVerse Hub. The idea is simple: A minimal, fast, Arch based OS that is Wayland first and actually enjoyable for developers and power users. we are not trying to be the next omarchy or the next big thing, but we have a lot of passion for what we do, after all, we are all learners ourselves. the distro has sane defaults while not being very bloated and its fully open source we are doing this for the purpose of giving everyone a change to contribute what they can, becoming the opportunity for many to make their first meaningful contribution. This project will continue to evolve and we aim to make it something that is built by learners for learners. So expect misconducts and mistakes in the code-base We are open to: Feedback, Contributors, Suggestions and Criticism (constructive) thanks for reading this and have a good one

Comments URL: https://news.ycombinator.com/item?id=46924822

Points: 3

# Comments: 2

Categories: Hacker News

The Devil Inside GitHub

Hacker News - Sat, 02/07/2026 - 10:08am
Categories: Hacker News

Show HN: Distill – Migrate LLM agents from expensive to cheap models

Hacker News - Sat, 02/07/2026 - 10:08am

I built an agent with Claude Sonnet ($15/MTok). Works great but costs $200/month. Migrating to GPT-4o-mini ($0.15/MTok) manually took 15 hours.

Distill automates it: - Profiles expensive model (gold standard) - Iteratively optimizes prompts for cheap model - LLM-as-Judge validates quality - Returns optimized agent config Real example: Sentiment classifier - Before: Sonnet, $0.02/run, 95% success - After: GPT-4o-mini, $0.002/run, 100% success - Migration: 2 iterations, fully automated Built with TypeScript, LangChain, LangGraph. MIT license.

Comments URL: https://news.ycombinator.com/item?id=46924451

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: Sigma Runtime – Maintaining 100% Fact Integrity over 120 LLM Cycles

Hacker News - Sat, 02/07/2026 - 10:07am

Context drift remains the primary barrier to deploying LLM agents in production-critical environments. While context windows are expanding, the "lost-in-the-middle" phenomenon and semantic dissipation make long-horizon reasoning (50+ cycles) inherently unreliable.

Standard approaches (Sliding Windows or RAG) fail because they treat conversational history as either a flat string or a collection of isolated fragments.

We’ve developed the Compression & Memory Topology (CMT) framework (part of SIGMA Runtime v0.5.3) to move from probabilistic context to a deterministic semantic lattice.

The Architecture: Semantic Lattice vs. Linear Context

Instead of a chronological log, CMT transforms history into a self-organizing graph:

Rib Points: We implement periodic semantic condensation every 10–50 cycles. This extracts the "conceptual essence" into stable nodes, preventing the attention mechanism from being overwhelmed by noise.

The Anchor Buffer: Probabilistic recall often fails for low-signal/high-importance data (e.g., patient names, specific dosages). We've introduced a protected, immutable layer for identity and core constraints (AFL v2).

Topological Retrieval: Navigation is based on relational weight and semantic proximity. A fact established in Cycle 5 remains topologically "near" the reasoning core in Cycle 120, even if it has been flushed from the active token window.

Anti-Crystallization: A mechanism that prevents the memory field from becoming trapped in "attractor states," allowing the agent to reinterpret previous facts when new contradictory or clarifying context arrives.

Validation: IASO-DEMO-120

We validated this on a clinical triage scenario requiring 120+ cycles of sustained coherence.

Memory Integrity: 100% retention of clinical anchors (Score 9/9 on critical recall checkpoints).

Boundary Stability: 12/12 adherence to safety constraints (refusal of diagnostic overreach).

Model Agnostic: Tested across Gemini 3 Flash and GPT-5.2 with near-identical ARI (Anchor Recall Integrity) scores.

Why Metrics Matter

To quantify stability, we’ve introduced two formal metrics:

Semantic Loss (SL): Cosine similarity variance during Rib Point compression.

Anchor Recall Integrity (ARI): A deterministic verification of critical fact accessibility across the session horizon.

We believe that for LLM agents to move into healthcare, defense, or autonomous research, we must stop managing "tokens" and start managing "topology."

Specs and Reports:

SRIP-11 (Memory Topology): https://github.com/sigmastratum/documentation/tree/main/sigm...

IASO-DEMO-120 (Full Test Log): https://github.com/sigmastratum/documentation/tree/main/sigm...

I'd be interested in hearing from anyone working on long-context state management or non-linear memory structures for agents.

Comments URL: https://news.ycombinator.com/item?id=46924448

Points: 1

# Comments: 0

Categories: Hacker News

Software Factories and the Agentic Moment

Hacker News - Sat, 02/07/2026 - 10:05am

Article URL: https://factory.strongdm.ai/

Comments URL: https://news.ycombinator.com/item?id=46924426

Points: 1

# Comments: 1

Categories: Hacker News

Pages