惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog
S
SegmentFault 最新的问题
WordPress大学
WordPress大学
P
Proofpoint News Feed
Hugging Face - Blog
Hugging Face - Blog
MyScale Blog
MyScale Blog
A
About on SuperTechFans
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
MongoDB | Blog
MongoDB | Blog
博客园 - 【当耐特】
The Cloudflare Blog
F
Fortinet All Blogs
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
罗磊的独立博客
量子位
有赞技术团队
有赞技术团队
V
V2EX
Engineering at Meta
Engineering at Meta

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Why I'm Building Trust Infrastructure as a Solo Founder
Ryo Hoshi · 2026-06-16 · via DEV Community

I run two AI coding agents simultaneously when I work. Claude Code handles architecture decisions and code review. Codex runs parallel implementation tasks — writing tests, scaffolding modules, handling migrations. On a productive day, they make hundreds of decisions between them.

I have no idea what most of those decisions are.

I'm not exaggerating. I set the direction. I review the outputs. But the intermediate reasoning — why Claude Code chose this abstraction over that one, why Codex structured a test suite in a particular way, what trade-offs each agent silently made — disappears the moment the context window rolls over. I get the artifacts. I lose the logic.

This is my daily reality, and I'm a technical founder who chose this workflow. Imagine an enterprise with fifty teams, each running their own agents, with no coordination, no audit trail, no shared governance model. That's not a hypothetical. That's most organizations adopting AI agents right now.

I wrote about this problem recently — I called it Agent Dark Matter. The invisible mass of unrecorded, unmonitored agent decisions that shapes your organization's outcomes without anyone knowing.

The response confirmed what I suspected: this resonates because it's real. Developers know it. Engineering managers feel it. Nobody has named it until now, and nobody is building the infrastructure to solve it.

So I'm building it.

Why solo

The honest answer: because the infrastructure layer I'm describing doesn't lend itself to a venture-funded sprint. Trust Infrastructure has to be open source — full stop. If the tool that governs your AI agents is itself a black box, you've solved nothing. It has to be built in a language that takes security seriously, which is why I chose Rust. And it has to be designed by someone who uses AI agents every day, not by someone who theorizes about them from a slide deck.

I am my own first user. I'm building deAria — open-source Trust Infrastructure for AI agents — using the very AI coding agents that deAria is designed to govern. Every friction I hit, every moment where I think "I have no idea what that agent just decided," becomes a design requirement. Every workflow I run without governance becomes proof that the problem is real.

This is the recursive loop: deAria governs AI agents. AI agents build deAria. The development process is the product's living proof.

The dogfooding loop:
Build deAria → using AI coding agents → which produce invisible decisions → which reveal design requirements → which feed back into building deAria → ♻️

What I'm not building

I'm not building another agent framework. There are enough of those. I'm not building another LLM wrapper or another chatbot platform.

I'm building the layer that sits beneath all of those — the infrastructure that makes agent activity visible, auditable, and governable. The same way Kubernetes doesn't replace containers but makes containers manageable at scale, Trust Infrastructure doesn't replace agents. It makes agents trustworthy at scale.

What comes next

I'm building in public. The architecture decisions, the trade-offs, the mistakes — all of it will be documented here. If you're running AI agents in production and feeling the gravitational pull of decisions you can't see, you're experiencing Agent Dark Matter. And you're exactly who I'm building this for.

The code is Rust. The license will be open. The first milestone is a working Decision-Aware Runtime that can record every decision an AI agent makes, and let you define policies for what decisions require human approval.

Let's illuminate the dark matter.


I'm building open-source Trust Infrastructure for AI agents at dearia.dev. Read the full problem statement: Agent Dark Matter: The Invisible Crisis in Your AI Stack.