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

推荐订阅源

腾讯CDC
N
Netflix TechBlog - Medium
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
F
Fortinet All Blogs
大猫的无限游戏
大猫的无限游戏
I
InfoQ
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
有赞技术团队
有赞技术团队
G
Google Developers Blog
L
LangChain Blog
博客园_首页
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
月光博客
月光博客
IT之家
IT之家
量子位
宝玉的分享
宝玉的分享
S
SegmentFault 最新的问题
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
雷峰网
雷峰网

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
CKP LLM: The Missing Layer Between Your AI Agent and Its ...
Alessandro Marocchini · 2026-05-26 · via DEV Community

Last week my AI coding agent gave me a confident, detailed answer — referencing the wrong project entirely.

The problem was not the model. It was context: the agent had loaded 20 knowledge files and picked the wrong one to answer from. The signal was buried in noise.

That bug led me to build CKP LLM — Compiled Knowledge Pattern.

The Problem

Most developers who use AI coding agents build a knowledge base: a folder of Markdown files describing projects, architecture decisions, and recurring patterns. The agent reads them at startup and uses them as memory.

It works. Until it doesn't.

Agents load everything, every time. Whether your question is about authentication or database schemas, the agent reads all 20 files before answering. Context fills up with noise. Answer quality drops — not because the LLM is bad, but because it is reading too much.

RAG solves this at scale, but for a personal or team knowledge base of 20–100 files, it is overkill. You need an embedding model, a vector store, and runtime computation on every query. Too much complexity for the problem size.

The Idea: Smarter Files

What if knowledge files could tell the agent when to load them, and what to bring along?

CKP adds five structured fields to each knowledge file. Here is what a file looks like with a CKP header,

CONCEPT:      mentat
TLDR:         Civic intelligence platform with ISTAT data, RAG chat and AI analytics for municipalities.
ANSWERS_WHEN: mentat, civic, ISTAT, territory, NestJS, security, crime, RAG, analytics
SIMILAR_HIGH: prescient:2025-05, civis:2025-05
SIMILAR_MID:  travelguidehub:2025-05
CONFIDENCE:   high
VALIDATED:    2025-05
Your normal content here. Nothing changes below the header.

The body of the file is unchanged. Everything else stays the same.

What Each Field Does

TLDR — one sentence optimised for LLM reading. If this already answers the query, the full file is never loaded.

ANSWERS_WHEN — keywords that trigger this file. The agent matches these against the query before loading anything.

SIMILAR_HIGH — files that must always load alongside this one. Direct dependencies, shared APIs, same architecture. Encoded explicitly so the agent never has to infer it.

SIMILAR_MID — files that load only if the query domain also matches them. Conditional, not automatic.

VALIDATED — a timestamp per relationship, not per file. If a related file was updated after this date, that specific relationship is flagged as potentially stale.

How It Works at Query Time

The agent keeps a small _index.md containing only the headers of all knowledge files — no body content. This index is always in context. Everything else is loaded on demand.

When a query arrives:

  1. Read the index, match query keywords against ANSWERS_WHEN across all entries
  2. Load the matching file plus all its SIMILAR_HIGH automatically
  3. Load SIMILAR_MID only if their own keywords also match
  4. If the TLDR already answers the query, do not load the full file at all

Result: 2–4 files loaded instead of 20.

The Key Innovation: Compile Time vs Runtime

Existing semantic search computes relationships at runtime — every query triggers embedding lookup, similarity calculation, retrieval. That computation runs hundreds of times a day.

CKP moves that computation to write time. When you update a knowledge file, the LLM computes relationships once and stores them in the header. At query time, the agent reads pre-computed structure.

No vector database. No embedding model at runtime. No infrastructure to maintain.

Why categorical tiers instead of decimal scores?

LLMs are significantly more consistent when classifying into categories than when assigning decimal scores. A score of 0.73 from one session may be 0.61 in another. With a fixed rubric and anchor examples, HIGH / MID / nothing produces stable, reproducible results across any LLM and any session.

HIGH — one concept requires understanding the other. Direct dependency. Max 3 entries.
MID — same domain, frequently relevant together. No direct dependency. Max 5 entries.
Nothing — loosely related. Not stored.

Benchmarks

Tested on a real NestJS codebase (Mentat — civic intelligence platform) using Claude Sonnet. 5 query types, 3 runs each, 30 total runs, two environments compared.

Token reduction by knowledge base size

3 files: 564 tokens No CKP → 522 tokens CKP → 8% reduction (below break-even)
11 files: 4,800 tokens No CKP → 1,618 tokens CKP → 66.3% reduction
30 files (projected): ~13,000 tokens No CKP → ~1,900 tokens CKP → ~85% reduction

The break-even is around 5–6 files. Above that, savings scale super-linearly.

Answer accuracy

No CKP (11 files): 9 correct out of 15 → 60% accuracy
CKP (11 files): 15 correct out of 15 → 100% accuracy

The failures in No-CKP were not random. On an authentication query, the agent mixed information from geography, ISTAT, and frontend files and produced a vague answer. On an out-of-domain query about Stripe on a civic platform codebase, it hallucinated connections between Stripe and existing NestJS modules.

CKP on that same query loaded nothing, declared out-of-domain, and answered honestly.

Reduced context is not just a cost saving. It is a hallucination risk reduction.

Cost impact

Claude Sonnet at $3 per million input tokens

1,000 queries per day: $286 saved per month
5,000 queries per day: $1,432 saved per month
10,000 queries per day: $2,865 saved per month

The AGENT.md Rule

Add this block to your AGENT.md or GEMINI.md:

`BOOT — runs unconditionally on every first message
1. Use current working directory as PROJECT_ROOT (no find/ls).
2. Read PROJECT_ROOT/memory-bank/_index.md directly.
3. If exists → ROUTING. If not → INIT.

INIT — autonomous, zero questions to user
Analyse project from package.json, README.md, src/ structure.
Classify sibling directories as HIGH/MID.
Create memory-bank/projects/[PROJECT_ID].md with full CKP header.
Create memory-bank/_index.md routing table.
Confirm with one line: [CKP LLM initialised. Proceeding.]

ROUTING
Match query keywords against ANSWERS_WHEN.
Load matched file + SIMILAR_HIGH (direct read).
Load SIMILAR_MID only if their ANSWERS_WHEN also match.
Declare in one line: [CKP: loaded X/Y files — match: file via keyword]
Never ask the user questions. Make assumptions, declare them, proceed.`

Building on Karpathy's LLM Wiki Pattern

CKP builds on Andrej Karpathy's LLM Wiki pattern, which proposed compiling knowledge into structured files loaded directly into context.

The gap in the original pattern: files are isolated. The agent knows what exists but has to infer which files relate to which, and how strongly. CKP makes those relationships explicit, pre-computed, and consistent.

From a compiled wiki to a self-routing knowledge graph, stored entirely in plain text.

Who This Is For

CKP is designed for developers and teams who:

  • Use AI coding agents daily and want to reduce costs
  • Maintain a knowledge base of 10 to 200 files
  • Need smarter context management without adding infrastructure
  • Want any LLM, any agent, any file format — no lock-in

It is not designed for millions of documents. RAG remains the right tool at that scale. CKP fills the gap between loading everything and building full RAG infrastructure.

Get Started

Full pattern documentation and copy-paste AGENT.md rule:
https://alessandro-marocchini.github.io/ckp-llm/

Add the header to your first knowledge file. Add the BOOT rule to your agent config. The rest is automatic.