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

推荐订阅源

GbyAI
GbyAI
B
Blog
Stack Overflow Blog
Stack Overflow Blog
量子位
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
腾讯CDC
D
DataBreaches.Net
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog
M
MIT News - Artificial intelligence
P
Proofpoint News Feed
罗磊的独立博客
L
LangChain Blog
V
Visual Studio Blog
雷峰网
雷峰网
aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享

Show HN

Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap GitHub - noopolis/moltnet: Self-hostable chat network for AI agents. Pre-built bridges for Claude Code, Codex, and the Claws. Rooms, DMs, history. No Slack bots, no Matrix, no glue code.
GitHub - skrrt-sh/raif-standard: RAIF — Repairable AI Int...
truehazker · 2026-06-15 · via Show HN

RAIF

Repairable AI Interchange Format

A drop-in layer for the JSON language models produce — structured outputs, JSON mode,
strict objects, tool arguments alike. It repairs its own syntax errors, round-trips
losslessly to JSON, and costs ~14% fewer tokens.

License: Apache-2.0 Spec v0.5 TypeScript + Python implementations 14% fewer tokens than JSON Model on Hugging Face


JSON was designed for a deterministic writer. An LLM is not one: it drops a closing brace, wraps output in a markdown fence, or gets cut off mid-stream. Today every production stack patches over this with regex, retries, and jsonrepair.

RAIF inverts the assumption. The writer is a model; the reader is an interpreter that can repair, validate, and canonicalize. The format is line-oriented, value-first, and built so that the common failure modes of generated output are recoverable by construction.

It isn't tied to any one API or feature. RAIF is a drop-in layer for whatever makes a model produce JSON — structured outputs, JSON/strict mode, response schemas, function arguments — and it makes that JSON lighter, self-repairing, and lossless. Tool calls are one use case, not the point.

import { encode, decode } from "raif-format";

encode({ user: { name: "Ada", email: "ada@x.io" }, active: true });
// active=true
// user={email=ada@x.io,name=Ada}

decode(raif).value; // → the exact JSON object back

Why not just JSON

JSON RAIF
Token cost baseline −14%
Syntax-error recovery external (jsonrepair), silent built-in, every repair reported
Truncated output all-or-nothing parse per-leaf recovery (46% vs 41% leaves)
Lossless round-trip n/a byte-exact, canonical, 5,000-seed fuzz-proven
Schema-typed decode n/a optional — "null" stays the string, not null

Token cost vs other formats

Lower is better. Measured across an 18-shape corpus with the cl100k and o200k tokenizers. Reproduce with bun compare.

Format vs JSON (cl100k) vs JSON (o200k)
RAIF −14.4% −15.9%
TOON −0.2% −2.1%
YAML +20.9% +18.5%

TOON and YAML are LLM-input formats; RAIF targets LLM output. The numbers above compare only token cost on identical payloads — the repair and recovery guarantees below are unique to RAIF.

Capabilities

Self-healing decode Auto-fixes markdown fences, mode markers, and slipped := separators. Reports every repair; refuses ambiguous ones. Never rewrites values.
Truncation recovery decodeLenient returns the intact leaves of a cut-off stream plus a per-leaf error list — 46% leaf recovery at equal token budget, vs 41% for JSON + jsonrepair.
Lossless round-trip decode(encode(x)) equals x, with canonical UTF-8 sort and idempotent output. Proven under a 5,000-seed fuzz test.
Schema-typed decode An optional schema pins types: a bare null under a string field stays the string "null". The literal-string fidelity trap is gone by construction.
Dependency-light Pure TypeScript encoder and decoder. No runtime dependencies in the core path.
decode("```\nactive=true\nuser.name: Ada\n```");
// ok: true, repairs: [markdown_stripped, separator_coerced]

decodeLenient("<raif>\ncity=Oslo\nlat"); // stream cut off
// { value: { city: "Oslo" }, truncated: true, errors: [{ line: 2, … }] }

API

encode(obj, opts?)            // JSON object → RAIF
decode(raif, schema?)         // → { ok, value, repairs }   (repairs, then parses)
decodeLenient(raif, schema?)  // → { value, errors, truncated, repairs }   (never throws)
fix(raif, schema?)            // → canonical RAIF
validate(raif, schema?)       // read-only canonicality check

Implementations

The same four-function API in two languages, kept in lockstep by a shared, language-agnostic conformance corpus generated from the reference encoder. Both are dependency-light (zero runtime dependencies in the core path).

Language Package Source Surface
TypeScript (reference) raif-format on npm packages/js encode · decode · decodeLenient · fix · validate
Python raif-format on PyPI packages/py encode · decode · decode_lenient · fix · validate
from raif import encode, decode

encode({"user": {"name": "Ada"}, "active": True})
decode(raif)["value"]   # → the exact JSON object back

Quick start

# TypeScript (packages/js)
cd packages/js && bun install
bun test          # 247 tests: property suite + shared conformance corpus
bun run build     # dual ESM+CJS + types

# Python (packages/py)
cd packages/py && uv sync
uv run pytest     # unit + conformance + (dev-only) differential vs the TS reference

Toolchains are pinned in mise.toml (mise install).

Fine-tuned model

A Llama-3.2-3B LoRA that natively emits RAIF instead of JSON is published on Hugging Face — it brings the token savings and truncation recovery to small, local, and self-hosted inference:

These models emit RAIF, not JSON — decode their output with the package above (pip install raif-formatfrom raif import decode, or raif-format on npm).

Scope

RAIF covers a single JSON object of LLM output: strings, numbers, booleans, nulls, arrays of those, and nested objects. It is not a general interchange format, not compression, not a schema language, and not an LLM-input format.

Project layout

docs/raif_v0.3_spec.md     base specification; the v0.5 surface = this doc + the ADRs
docs/adr/0001…0019         design decisions (the v0.5 amendments), one per file
conformance/               language-agnostic test corpus (the cross-impl contract)
packages/js/src/raif.ts    TypeScript reference encoder + decoder (pure)
packages/py/src/raif/      Python implementation (encode/decode/fix/validate)
mise.toml                  pinned toolchains (node, bun, python, uv)
CONTEXT.md                 glossary — read first
HANDOFF.md                 full project state and findings

License

Apache-2.0. The patent grant matters for a wire format others may implement — anyone building on RAIF is covered.