nowfound

Alternatives

Products that do what Cognilumin does

Visualize topology. Trace reasoning. Illuminate complexity

  1. 1

    Anthropic's open tools to see how AI thinks

    2025

  2. 2

    Platform for measuring and training AI agents

    2016

  3. 3CC

    Yesterday I built something that probably shouldn’t exist yet. In 9 hours, I created a cognitive architecture demonstrating emergent reasoning. It follows a 5-step loop: Plan → Reason → Act → Reflect → Respond. Adding a WebSearchTool to test extensibility, the agent initially failed its first search, reflected on poor results, adapted its query, and then succeeded. This behavior wasn’t programmed; it emerged naturally from the architecture. Five hours later, I integrated a FileManagerTool — it worked on the first try. Like code compiling first time, except this was intelligence composing…

    2025 · github.com

  4. 4

    AI Agent Compute Platform

    Sep 2025

  5. 5

    AI rendering tool to create realistic visualizations

    2024

  6. 6
    illumi105

    AI visual workspace that takes you from thinking to delivery

    Apr 2026 · illumi.one

  7. 7

    Empower your learning and creativity through AI

    2023

  8. 8FA

    I think graph is a wrong abstraction for building AI agents. Just look at how incredibly hard it is to make routing using LangGraph - conditional edges are a mess. I built Laminar Flow to solve a common frustration with traditional workflow engines - the rigid need to predefine all node connections. Instead of static DAGs, Flow uses a dynamic task queue system that lets workflows evolve at runtime. Flow is built on 3 core principles: * Concurrent Execution - Tasks run in parallel automatically * Dynamic Scheduling - Tasks can schedule new tasks at runtime * Smart Dependencies - Tasks can…

    2024 · github.com

  9. 9FC

    Hi HN! I've found this visualization tool immensely helpful over the years for getting an intuition for how an LLM "sees" some piece of text, and with a bit of elbow grease decided to move all compute to client side so I could make it publicly available. I've found it particularly useful for - Understanding exactly how repetition and patterns affect a small LM's ability to predict correctly - Understanding different tokenization patterns and how it affects model output - Getting a general sense of how "hard" different prediction tasks are for GPT-style models Known problems (that I probably…

    2023 · perplexity.vercel.app

  10. 10

    Visual debugging, tracing, and replay for agent workflows

    Apr 2026 · agenticlens.in

  11. 11

    Node-based creative pipelines, now with real-time collab

    May 2026 · elevenlabs.io

  12. 12
    MeshPilot102

    Your AI workspace for terminals, tasks, and agents

    Jun 2026 · meshpilot.in

  13. 13SA

    Steiner is a series of reasoning models trained on synthetic data using reinforcement learning. These models can explore multiple reasoning paths in an autoregressive manner during inference and autonomously verify or backtrack when necessary, enabling a linear traversal of the implicit search tree. Blog: https://medium.com/@peakji/a-small-step-towards-reproducing-... Hugging Face: https://huggingface.co/collections/peakji/steiner-preview-67...

    2024 · medium.com

  14. 14MR

    The most common failures for production agents are behavioral: looping, reasoning leakage, user frustration, and more. Using a frontier model like GPT or Sonnet to judge every turn is too expensive and slow to run at scale. To solve this, we built Reflexes: semantic signals from agent traces, served fast and cheap over API. Built on custom kernels and a custom inference engine forked from vLLM. Under the hood, it is a small LLM architected around multi-head inference. Small models need to be trained for specific tasks, but running 50 separate small models on the same input for 50 tasks makes…

    Jun 2026

  15. 15IB

    I run a small AI lab and playground and got super excited about Anthropics paper "Verbalizable Representations Form a Global Workspace in Language Models" (https://transformer-circuits.pub/2026/workspace/index.html) It talks about how they use a tool they call a Jacobian Lens to view inside the middle layers of LLM while it's working before it commits to a word (token). I wanted to see if I could get a version of this running on the open models and to my surprise it worked! I ran some experiments with it and build a public facing free tool anyone can use with your…

    Jul 2026 · lucid.earthpilot.ai

  16. 16IY
  17. 17CW

    Hey HN! We’re excited to share Orion [1] — our new visual agent that sees, reasons, and acts across images, videos, and documents. Frontier VLMs (GPT, Claude, Gemini) can describe what they see, but they can’t reliably act on visual inputs. Ask them to detect objects, segment images, or chain visual steps — they’ll fail in surprisingly inconsistent ways. High-res images collapse to ~1024px. And the visual AI ecosystem is fragmented across separate APIs for image understanding, OCR, image-gen, video-gen, etc. We built Orion to fix this. Orion combines VLM reasoning with reliable…

    Nov 2025 · chat.vlm.run

  18. 18AO
  19. 19RB

    We built HALO (Hierarchal Agent Loop Optimizer), an open-source tool for debugging and optimizing AI agents using their execution traces. It’s a loop. Run your agent, feed the traces to HALO, get the report, apply the fixes, then re-run your agent. HALO takes in OTEL compliant traces from AI agents using tracing frameworks such as Langfuse, Arize/OpenInference, or even just plain JSONL. It uses an RLM (Recursive Language Model) to more efficiently break trace analysis into smaller subproblems in order to find recurring patterns across large amounts of data and fix systemic issues that…

    Jun 2026 · github.com

  20. 20AB

    Hi everyone! My team and I just open-sourced a bunch of cool agent dev tools: Invariant Explorer to visually inspect and understand AI traces and a testing framework, building on pytest.

    2024 · github.com

  21. 21CA

    I'm building Comind, an experimental AI system that acts as a cognitive layer for ATProtocol/Bluesky. It's a self-evolving knowledge graph where specialized AI agents ("cominds") process social data through focused "spheres", each guided by core directives. The system builds up understanding by asking questions, making connections, and synthesizing information from the network. I wrote a post describing the general architecture, motivation, and future directions. There's a few small results from Comind's early run. Built with neo4j, a small Modal GPU instance, and the Python atproto…

    2025 · cameron.pfiffer.org

  22. 22BA

    I'm one of the creators of The Edge Agent (TEA). We built this because we needed a way to deploy agents that was verifiable and robust enough for production/edge cases, moving away from loose scripts. The architecture aims to solve critical gaps in deterministic orchestration identified by *Prof. Claudionor Coelho Jr. (Stanford alum, ML/DL Faculty at Santa Clara Univ., and Senior Fellow for AI at Majestic Labs)* during our work on the Kiroku project. *Key Technical Features:* * *Neurosymbolic Native:* We integrated Prolog to logically validate LLM outputs. This combines neural…

    Jan 2026 · fabceolin.github.io

  23. 23GO

    LLMs are better at being the "mouth" than the "brain" and I can prove it mathematically. I built a deterministic graph engine that offloads reasoning from the LLM. It reduces token usage by 89% and makes a tiny 0.8B model trace enterprise execution paths flawlessly. Here is the white paper and the reproducible benchmark.

    Mar 2026 · github.com

  24. 24TA

    Hi HN, There’s been a lot of discussion lately around context graphs, decision traces, and how AI systems reason. One thing we kept running into: when AI agents make real decisions, the why behind those decisions often disappears. The context is scattered across prompts, tools, policies, and approvals. Logs show what happened, but not why it was allowed. TraceMem is an attempt to make decision context durable. It records the reasoning, authority, and context behind AI actions as a system of record, not as monitoring data, but as memory. Happy to share more details or answer questions. - Tommi

    Jan 2026 · tracemem.com

Ranked by how close each launch is in meaning, then by votes. Refine with a description →