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

推荐订阅源

C
Check Point Blog
aimingoo的专栏
aimingoo的专栏
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
V
Visual Studio Blog
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 聂微东
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
大猫的无限游戏
大猫的无限游戏
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
D
Docker
MyScale Blog
MyScale Blog
小众软件
小众软件
云风的 BLOG
云风的 BLOG
美团技术团队
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 【当耐特】

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 Is Not the Process: What a Project-Specific AI Deliver...
Xu Bian · 2026-05-12 · via DEV Community

Xu Bian

Many people use AI for coding by placing the whole workflow inside one chat: describe the task, ask the agent to read the repository, edit files, run tests, and summarize the result.

That works for small experiments. It becomes fragile in long-running projects, shared repositories, production systems, or professional software automation. The problem is not only whether the model is smart enough. The problem is that the model is being asked to own too much of the delivery process.

The better pattern is to place AI capability inside a project-specific delivery pipeline.

AI is the worker. The project pipeline constrains, validates, records, and escalates.

Why project-specific matters

A general AI tool cannot know a project's real risk boundaries by default.

In a trading system, payout, KYC, funded accounts, order states, and production release are hard boundaries. In a SketchUp modeling tool, the real boundaries are the structured design model, source evidence, bridge trace, SketchUp execution, and visual review. In a personal knowledge publishing system, the boundaries become source traceability, bilingual publication candidates, site rendering, and deployment ownership.

These constraints do not come from a generic model. They come from project truth.

So the goal is not to build a more general replacement for Codex or Claude Code. The goal is to build a stable AI delivery pipeline inside a real project.

What the pipeline owns

A useful project-specific AI delivery pipeline must answer questions like these:

  • Is this request mature enough to execute?
  • Should AI run automatically, analyze only, move fast under guardrails, or only run a spike?
  • What context should AI receive before execution?
  • What can AI change, and what is out of bounds?
  • When must the AI stop and ask for a human?
  • What evidence proves the work is complete?
  • Should the result become a PR, a release candidate, a knowledge note, or only an experiment record?

If the project does not answer these questions through its own mechanisms, the AI is still improvising inside a chat.

A minimal structure

I break the pipeline into a few parts.

Task Intake turns discussion into an executable task contract.

Execution Mode Router decides how much autonomy AI gets.

Context Package gives the AI the narrow context it should see.

Work Isolation keeps AI execution inside a branch, worktree, slot workspace, or sandbox.

Stage-Gated Worker separates triage, analysis, implementation, validation, evidence packaging, and handoff.

Evidence Contract requires tests, screenshots, API output, logs, traces, or other reviewable proof.

Human Gate puts humans at real risk boundaries.

Feedback Capture turns repeated failures into rules, tests, skills, templates, or knowledge base entries.

Together, these parts are what I mean by a harness. It is not a prompt. It is not a single tool. It is the project control layer that lets AI participate in delivery.

Where TDD fits

TDD is useful, but it is not the whole answer.

When a behavior is clear and testable, writing tests before implementation is a strong pattern. But many real tasks are not function-level exercises. Frontend changes need screenshots. Data-link changes need API or log proof. SketchUp modeling needs structured model diffs and visual review. Knowledge publication needs source trace and bilingual route validation.

So the better rule is not "everything must be TDD." The better rule is "every delivery must have an evidence contract."

Tests are one kind of evidence. They are not the only kind.

Why this is more stable than vibe coding

Vibe coding is fast. Its weakness is that boundaries and evidence are often too weak.

A project-specific AI delivery pipeline does not reject speed. It puts speed on rails.

Low-risk tasks can auto-run. Complex but bounded tasks can run in guarded full-speed mode. High-risk tasks should stop at analysis or human confirmation. Exploratory work can be a spike, but it should not be treated as production-ready delivery.

AI can still move quickly. It just does not get to mix immature requirements, high-risk actions, and unverified completion into one vague "done."

The core idea

The future value is not just making AI more impressive inside a chat window. The value is making projects better at using AI inside their delivery systems.

Models will change. CLI tools will change. MCP, hooks, skills, and subagents will change.

The durable asset is the project mechanism: how tasks are defined, how context is provided, how execution is constrained, how evidence is collected, how humans intervene, and how failures improve the next run.

That is the value of a project-specific AI delivery pipeline.


Originally published on my personal site:
https://marlinbian-site.pages.dev/writing/project-specific-ai-delivery-pipeline/

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