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

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
量子位
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
小众软件
小众软件
aimingoo的专栏
aimingoo的专栏
Recent Announcements
Recent Announcements
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Microsoft Security Blog
Microsoft Security Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
酷 壳 – CoolShell
酷 壳 – CoolShell
J
Java Code Geeks
V
V2EX
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
博客园 - Franky
爱范儿
爱范儿
T
Tailwind CSS Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
博客园_首页
B
Blog RSS Feed
博客园 - 司徒正美
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - mohdibrahimaiml/epi-recorder: EPI (Evidence Pack...
afridi_epila · 2026-05-18 · via Hacker News - Newest: "AI"

EPI Logo

Portable Evidence for AI Execution.

PyPI Python 3.11+ License: MIT SCITT Compatible AIUC-1 Ready Release Gate

Pilot Program · Quick Start · Integrations · Regulatory Mapping · Standards · Docs


When a regulator asks what your AI agent did six months ago,
the answer should be a file — not a shrug.


🏛️ The Problem

AI agents make decisions that carry legal, financial, and safety consequences. Those decisions happen in memory, get logged in transient cloud infrastructure, and are tied to a runtime that may not exist when an auditor arrives six months later.

EU AI Act Article 12 requires providers of high-risk AI systems to maintain logs of operation appropriate to the system's lifecycle. FDA 21 CFR Part 11 requires tamper-evident audit trails. SOC 2 CC7.2 requires logging of unauthorized activity. None of these regulations define how evidence must be packaged for external review.

EPI closes that packaging gap.


💎 What EPI Does

EPI packages AI agent execution—the complete decision trail, governance evaluation, tool calls, inputs, outputs, approvals, and environmental context—into a single .epi artifact: a cryptographically signed, tamper-evident, self-contained forensic container.

The artifact can be emailed to an auditor, archived for 10 years, or opened on an air-gapped machine—without calling home, without the original runtime, and without trusting the producer.

The Forensic Container Architecture

agent_run.epi
├── [Envelope] EPI1 Header  — Binary magic, version, and payload SHA-256
└── [Payload] Signed ZIP    — Wrap with EPI1 Envelope
    ├── manifest.json       — Ed25519 signed root of trust + file hashes
    ├── steps.jsonl         — Immutable execution timeline (prev_hash chain)
    ├── governance.json     — The rulebook that governed the run
    ├── environment.json    — Host & Python runtime context snapshot
    ├── artifacts/          — Raw evidence preserved verbatim (e.g., AGT bundles)
    ├── viewer.html         — Self-contained offline forensic viewer
    └── VERIFY.txt          — Human-readable offline verification guide

🚀 Quick Start

pip install epi-recorder

1. Instrument an Agent

Capture any LLM-backed workflow with minimal boilerplate.

from epi_recorder import record, wrap_openai
from openai import OpenAI

# 1. Wrap your client for high-fidelity capture
client = wrap_openai(OpenAI())

# 2. Record the forensic context
with record("loan-approval.epi", workflow_name="Credit-V4"):
    response = client.chat.completions.create(
        model="gpt-4o",
        messages=[{"role": "user", "content": "Assess applicant #421"}]
    )

2. Verify the Artifact

epi verify --strict loan-approval.epi
────────────────────────────────────────────────────
  EPI Verification Report (v4.1.0)
────────────────────────────────────────────────────
  Trust Level:  HIGH
  Signature:    VALID   (Ed25519)
  Integrity:    OK      (SHA-256 manifest, 23 files)
  Chain:        INTACT  (prev_hash verified, 47 steps)
  Identity:     KNOWN   (production-signer-v4)

  This artifact has not been modified since sealing.
────────────────────────────────────────────────────

3. Open the Offline Viewer

epi view loan-approval.epi
# Opens viewer.html in your browser — zero dependencies, offline-ready.

🔌 Integrations

EPI acts as a universal evidence layer for the entire AI ecosystem:

  • LangChain: ChatOpenAI(..., callbacks=[EPICallbackHandler()])
  • LiteLLM: litellm.callbacks = [EPICallback()]
  • Microsoft AGT: epi import agt <bundle> — adapter for regulatory evidence.
  • OpenTelemetry: setup_epi_tracing() — turn spans into signed artifacts.
  • pytest: pytest --epi — automatic forensic evidence for failing tests.

⚖️ Regulatory Compliance Mapping

EPI produces evidence that addresses specific global regulatory requirements. EPI is not a compliance guarantee and does not provide legal advice. Whether the enclosed evidence satisfies a specific regulatory threshold is for the auditor or notified body to determine.

Requirement Framework .epi Evidence
Logs of operation appropriate to lifecycle EU AI Act Art. 12 steps.jsonl + environment.json
Technical documentation retention (10yr) EU AI Act Art. 19 Sealed .epi (format-stable)
Evidence of Human Oversight EU AI Act Art. 14 review.json approval ledger
Audit trail for regulated software FDA 21 CFR Part 11 Signed steps.jsonl + manifest.json
Non-repudiation of data HIPAA § 164.312 Ed25519 signature over manifest
AI Risk Management documentation NIST AI RMF governance.json + analysis.json
Verifiable risk evaluation & HITL audit proof AIUC-1 (SOC 2 for Agents) steps.jsonl + review.json + analysis.json

🏛️ Standards Alignment

  • SCITT (IETF): EPI produces SCITT-compatible COSE Sign1 statements for transparency log anchoring.
  • AIUC-1 (Compliance): EPI generates structured compliance audit evidence mapping to the six AIUC-1 risk domains for autonomous agent audits. See AIUC-1 Evidence Mapping for details.
  • CycloneDX: Preserves CycloneDX SBOMs under artifacts/sbom/ for software supply chain transparency.
  • in-toto (CNCF): Roadmap: Exporting steps.jsonl as in-toto link files for execution supply chain verification.
  • Ed25519 (RFC 8032): All manifests are signed using industry-standard Ed25519 digital signatures.

🤝 Founding Pilot Program

EPI is seeking regulated enterprises to pilot AI compliance evidence packaging.

If you operate AI agents under the EU AI Act, FDA 21 CFR Part 11, or SOC 2, and you need portable, independently-verifiable evidence, we invite you to join our Pilot Program.

What Pilots Receive:

  • Direct Integration Support: Hands-on assistance from the maintainers.
  • Priority Roadmap Influence: Shape the standard based on your compliance needs.
  • Founding Partner Recognition: Optional listing as an early adopter.

Contact: mohdibrahim@epilabs.org — Subject: EPI Pilot — [Your Organization]


📑 Documentation


🛡️ Security Model

Threat Mitigation
Post-Seal Tampering SHA-256 file manifest + Ed25519 signature.
Evidence Replay Unique workflow_id + time-anchored created_at.
Secret Leakage Automatic forensic redaction of API keys, tokens, and PII.
Signature Spoofing Strict ed25519:<key>:<hex> format enforcement.