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

推荐订阅源

博客园 - Franky
Microsoft Azure Blog
Microsoft Azure Blog
阮一峰的网络日志
阮一峰的网络日志
宝玉的分享
宝玉的分享
量子位
N
Netflix TechBlog - Medium
M
MIT News - Artificial intelligence
GbyAI
GbyAI
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
Y
Y Combinator Blog
L
LangChain Blog
The Cloudflare Blog
T
The Blog of Author Tim Ferriss
U
Unit 42
Martin Fowler
Martin Fowler
aimingoo的专栏
aimingoo的专栏
G
Google Developers Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客

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
AI Agents Need Passports: A Local First Approach to Prove...
Arpita Sarke · 2026-05-07 · via DEV Community

AI Agents Need Passports: A Local First Approach to Provenance and Lineage

AI agents are becoming harder to inspect.

A simple AI app may start with one model and one prompt. Then it grows.

Suddenly there is a base model, a fine-tuned version, prompt templates, tools, API calls, retrieval sources, sub-agents, human approvals, CI workflows, and deployment changes.

At that point, a basic question becomes surprisingly hard to answer:

What exactly is this AI system, where did it come from, and what changed?

Logs show what happened after execution.

Model cards describe a model.

Registries store assets.

Observability tools monitor behaviour.

But many teams still lack a portable identity record that can stay with a model or agent across repositories, local workflows, and CI.

That is the idea behind AI Passports.


What is an AI Passport?

An AI Passport is a machine-readable record for an AI system.

It can hold:

  • identity
  • ownership
  • provenance
  • artifact references
  • lineage
  • version context
  • validation metadata
  • evidence events

The goal is not to replace model cards, MLflow, Hugging Face, or observability tools.

The goal is to complement them with a portable layer that makes AI systems easier to identify, inspect, and verify across workflows.

Think of it like this:

Model cards describe the model.

Registries store the asset.

Logs show runtime behaviour.

Passports preserve identity, provenance, lineage, and evidence.


Why local first matters

AI teams should not need to send private prompts, weights, logs, datasets, or customer data to a hosted service just to create a basic identity record.

A local-first passport workflow lets builders create and validate passport files inside their own repository and CI process.

That matters because provenance should be verifiable before a system reaches a hosted governance platform.

A passport should be useful when a developer is still working locally. It should also remain useful later when the same system becomes part of a product, agent workflow, or governed AI process.


The problem gets worse with agents

AI systems are no longer static.

Models are fine-tuned, quantized, wrapped, reused, forked, and connected to tools.

Agents can call APIs, use memory, retrieve documents, trigger workflows, or generate artifacts.

This creates a practical traceability problem.

If an agent behaves unexpectedly, teams need to know:

  • which model or agent version was involved
  • what it was derived from
  • what tool surface it had
  • what changed since the previous version
  • whether the identity record is still valid
  • what evidence exists for review

Without a durable identity record, this information gets scattered across READMEs, dashboards, logs, deployment scripts, and team memory.


What we built

We are building Forkit Dev, an AI passport infrastructure layer for models, agents, datasets, and AI workflows.

Today, there are two ways to try it.


1. Forkit Dev Core: open-source passport infrastructure

Forkit Dev Core is the Apache 2.0 open-source foundation.

It is a public alpha for local AI model and agent passports.

Current scope:

  • create model and agent passport JSON records
  • generate deterministic passport IDs
  • validate passports locally
  • keep basic provenance and lineage fields
  • validate passport files in GitHub CI
  • use a local-first workflow without requiring a hosted service

GitHub:

https://github.com/Forkit-Dev-Core/Forkit_Dev

This is for developers who want to inspect, run, extend, or challenge the passport structure.


2. Forkit.dev: free hosted AI Passport flow

For builders who do not want to run the local stack, we also opened a free hosted passport flow.

You can create a free AI Passport here:

https://forkit.dev

The hosted flow is for founders, developers, researchers, and AI teams who want to register an AI model, agent, or dataset and start building an evidence record early.

The open-source core is for inspection and extension.

The hosted flow is for speed and usability.

Both are part of the same idea:

AI systems should have a durable identity before they become invisible inside production workflows.


What this is not

Forkit Dev Core is not a replacement for model cards.

It is not a replacement for MLflow, Hugging Face, or observability platforms.

It is not a magic compliance certificate.

It is an attempt to create a portable identity and evidence layer that can sit alongside existing tools.

The current open-source core is still public alpha. That means the fundamentals are usable, but feedback may still shape the schema, APIs, and developer experience.


The open design question

The hardest question is not whether AI systems need metadata.

The harder question is where the boundary should be.

When an agent forks into sub-agents, or when tools generate artifacts:

  • What should become a separate passport?
  • What should stay as an evidence event?
  • Should every sub-agent get its own passport?
  • Should only reusable or deployable agents get passports?
  • Should tool-generated artifacts become passport-linked evidence instead?
  • How much metadata is useful before it becomes bureaucracy?

This is the question I would love feedback on.

If you are building models, agents, MLOps workflows, local LLM tools, or AI governance systems, I would genuinely value your thoughts.

Open-source core:

https://github.com/Forkit-Dev-Core/Forkit_Dev

Create a free AI Passport:

https://forkit.dev