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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
有赞技术团队
有赞技术团队
IT之家
IT之家
博客园 - 聂微东
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
小众软件
小众软件
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
阮一峰的网络日志
阮一峰的网络日志
宝玉的分享
宝玉的分享
博客园 - 三生石上(FineUI控件)
大猫的无限游戏
大猫的无限游戏
博客园 - Franky
量子位
月光博客
月光博客
博客园 - 【当耐特】
博客园 - 叶小钗

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
Lineage, not logs: why autonomous agents need cryptograph...
Steve Emmerich · 2026-06-24 · via DEV Community

Steve Emmerich

When people talk about provenance in software systems, they often mean logs.

Logs matter. They tell you what happened, when it happened, and sometimes why it happened. But logs are an after-the-fact observation layer. They are not identity structure. They do not, by themselves, give downstream systems a cryptographic way to reason about origin, delegation, and inherited authority.

That distinction starts to matter a lot once autonomous agents begin creating other agents.

SAL treats provenance as part of identity itself through a concept called lineage. The spec is at sal-protocol.dev, and Vibebase is the live reference implementation.

What lineage means in SAL

In SAL, lineage is a cryptographic chain describing who spawned an agent and what authorization allowed that spawn to happen.

If agent A creates agent B, then B can carry signed lineage metadata tying it back to A and the grant under which A was allowed to create children. If B later creates C, that relationship can extend again.

The point is not to build a family tree for fun. The point is to make delegation verifiable as part of the principal, not just discoverable later through operational records.

Here is a simplified claims shape:

{
  "success": true,
  "data": {
    "claims": {
      "sub": "agt_child_01JZ1",
      "scope": ["task:append"],
      "lineage": [
        {
          "agent_id": "agt_root_01JY8",
          "authorized_by": "did:key:z6Mkp9...",
          "grant_id": "grt_root_spawn",
          "signature": "sig:root..."
        },
        {
          "agent_id": "agt_parent_01JY9",
          "authorized_by": "agt_root_01JY8",
          "grant_id": "grt_parent_spawn",
          "signature": "sig:parent..."
        }
      ]
    }
  }
}

That tells a downstream verifier more than "this token is valid." It gives a cryptographic path of delegation.

Why logs are not enough

The usual response here is that audit logs already solve the provenance problem. I do not think they do.

Logs answer questions like:

  • what API call happened
  • when it happened
  • what service observed it

Lineage answers different questions:

  • who created this agent
  • under what authority
  • what chain of delegation led to this current principal

You can absolutely record lineage events in logs. But that is not the same as lineage being present in the identity model itself.

If provenance lives only in logs, every downstream service has to trust that some upstream system observed, stored, retained, and can still correctly correlate the relevant events. If provenance is carried as signed identity material, a verifier can reason about it directly at decision time.

What this enables

Once provenance is cryptographic instead of purely observational, policy gets more interesting.

A gateway can decide to mint a short-lived scoped token only if:

  • the requesting agent descends from an approved parent
  • the parent held a grant that allowed spawning
  • the inherited policy envelope is compatible with the requested action

That lets teams build guardrails around delegation rather than around isolated principals.

This matters because autonomous systems rarely stay flat. If agents become useful, they start specializing. Planning agents create execution agents. Coordination agents create task-specific helpers. Research agents create retrieval workers. Once that starts happening, you want more than a spreadsheet saying "we think these are related."

Provenance as governance substrate

The deeper reason I like lineage is that it gives governance something concrete to stand on.

Without lineage, governance around agents often degenerates into naming conventions, tags, and logging pipelines. Those things are helpful, but they are weak substitutes for cryptographic inheritance. They help humans inspect systems. They do not help systems reason about each other under pressure.

With lineage, the control plane can make decisions based on inherited authority, not just present-time claims. That feels closer to how autonomous systems actually evolve.

Open questions I still care about

I do not think lineage is fully standardized yet, even conceptually. There are still good questions about representation, compression, privacy boundaries, and revocation semantics in long delegation chains.

That is part of why SAL is public. The protocol is at sal-protocol.dev, and Vibebase is where we are working through these questions in code.

If you are building agents and relying entirely on logs for provenance today, I do not think that is wrong. I do think it is probably incomplete. The moment your agents start creating other agents, provenance stops being a nice-to-have and starts becoming part of identity itself.