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

推荐订阅源

美团技术团队
博客园_首页
量子位
F
Fortinet All Blogs
L
LangChain Blog
The Cloudflare Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
V
Visual Studio Blog
Blog — PlanetScale
Blog — PlanetScale
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - Franky
G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
T
Tailwind CSS Blog
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
有赞技术团队
有赞技术团队
U
Unit 42
IT之家
IT之家

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
Give AI the Context It Should See, Not the Whole Repository
Xu Bian · 2026-05-12 · via DEV Community

Xu Bian

Many AI task failures do not happen because the model cannot modify code. They happen because the model reads the wrong context.

It may trust outdated docs, treat a roadmap as fact, read an AI-assistance note as a product rule, generalize from one failed sample, or find a similarly named implementation that is already obsolete.

That is why a project-specific AI delivery pipeline should not simply tell AI to "read the repository." It should prepare a context package for the task.

More context is not always better

It is tempting to give AI everything. In real projects, that often makes the result worse.

Too much context distracts the model. Messy documentation makes temporary decisions look permanent. Long chat history can revive decisions that were already rejected.

The project needs narrow context, not maximum context.

Narrow context means the task receives the facts it needs, and misleading material is not exposed by default.

Source of truth must be explicit

The most important field in a context package is the source of truth.

In a codebase, the current code and tests often outrank old docs. In a product project, public capability claims should be grounded in README, user docs, release artifacts, and runnable demos. In a knowledge publication system, public content must trace back to sources, not only to summaries.

Without an explicit source of truth, AI tends to treat available materials as if they are equally reliable.

That is dangerous because real project materials have hierarchy:

  • code and tests may outrank old documents;
  • current product docs may outrank early roadmaps;
  • project-local facts may outrank central methodology;
  • raw evidence may outrank AI summaries;
  • public claims must be more conservative than internal plans.

The context package should state these priorities.

What a context package contains

A useful package can be simple:

  • project rules relevant to the task;
  • source-of-truth files;
  • relevant specs, ADRs, issues, PRs, or runbooks;
  • relevant tests, fixtures, screenshots, or traces;
  • known failures;
  • validation commands;
  • files that may be changed;
  • files that must not be touched;
  • precedence rules when context conflicts.

This is more controlled than letting the agent search the whole repository on its own.

This is where project-specific value appears

General agent tools can provide strong models, shell access, file editing, MCP, subagents, and hooks. They cannot know your project's truth hierarchy by default.

For example, a TidalFi worker must know which paths involve money, trading, KYC, or production release. A SketchUp Agent Harness worker must know how the design model, source evidence, and SketchUp scene relate. A knowledge publication worker must know that the knowledge base owns bilingual candidates while the site owns rendering and deployment.

These are not generic tool facts. They are project context.

Context packages also prevent overgeneralization

AI easily turns one example into a general rule.

In a design tool, one floor plan repair should not become a universal product rule. In a trading system, one issue-specific fix should not redefine global business semantics. In a knowledge system, one project's directory habit should not be copied into every project.

A context package can label the material:

  • fact;
  • evidence;
  • inference;
  • project-local rule;
  • reusable method;
  • source-specific interpretation that must not be generalized.

That reduces the chance of local experience leaking into global rules.

Conclusion

Giving AI context does not mean dumping the whole repository into the conversation.

What works is a task-level context package: small, accurate, prioritized, source-grounded, and bounded.

Much of the value of a project-specific AI delivery pipeline comes from this. It does not make the model magically smarter. It makes the model work on the right layer of truth.


Originally published on my personal site:
https://marlinbian-site.pages.dev/writing/context-package-and-source-truth/

More links: GitHub · YouTube · LinkedIn · Bluesky · Mastodon · Discord