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

推荐订阅源

WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
月光博客
月光博客
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
IT之家
IT之家
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
博客园 - 司徒正美
爱范儿
爱范儿

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
Stop Drowning in Docs: Build a Smart Document Pipeline
Learn AI Resource · 2026-06-04 · via DEV Community

Stop Drowning in Docs: Build a Smart Document Pipeline

You know that feeling when you have 15 Notion pages, 8 Markdown files, a Google Doc folder you forgot about, and three Slacks full of decisions that are apparently "documented somewhere"? Yeah.

I spent last month building a simple document pipeline for my team using Claude API + some basic tooling, and it's weirdly transformed how we ship. So here's what actually works.

The Problem Nobody Wants to Say Out Loud

Documentation isn't the problem. The problem is finding it and keeping it current. By the time someone's written that beautiful architecture doc, the code's changed three times. Your design decisions live in old Slack threads. API changes get buried in PRs nobody's reading.

We were losing velocity just digging for context.

What I Actually Built

It's simpler than it sounds:

  1. One source of truth — everything lands in a single folder (we use GitHub + Markdown, but Notion works too)
  2. AI-powered search — Claude indexes your docs and answers questions
  3. Auto-generated summaries — keep key docs updated without manual work
  4. Smart linking — AI suggests connections between related docs you probably forgot existed

No fancy infrastructure. No ML training. Just smart APIs doing smart things.

How It Works In Practice

Let's say I'm onboarding a new dev. Old way: 45 minutes of me explaining stuff that's theoretically written down somewhere.

New way: They ask our doc bot "How do we handle async tasks in the queue?" Claude searches our doc folder, finds three relevant files, combines the context, and gives them a 2-minute answer that actually makes sense.

Same thing with architecture decisions. Instead of digging through GitHub issues, you ask: "Why did we choose DynamoDB over Postgres for the session store?" It finds the ADR (decision record), the relevant PRs, and the trade-offs we accepted.

The Real Implementation

Here's what I'm actually running:

import os
import json
from pathlib import Path
import anthropic

client = anthropic.Anthropic(api_key=os.getenv("ANTHROPIC_API_KEY"))

def load_docs(doc_folder):
    """Load all markdown files into a dict"""
    docs = {}
    for file in Path(doc_folder).glob("**/*.md"):
        with open(file, 'r') as f:
            docs[str(file)] = f.read()
    return docs

def search_docs(query, docs):
    """Use Claude to search and synthesize docs"""
    docs_text = "\n---\n".join([
        f"FILE: {path}\n{content}" 
        for path, content in docs.items()
    ])

    message = client.messages.create(
        model="claude-3-5-sonnet-20241022",
        max_tokens=1024,
        messages=[
            {
                "role": "user",
                "content": f"""Search these docs and answer the question. 
Be specific and reference which docs you found it in.

QUESTION: {query}

DOCS:
{docs_text}"""
            }
        ]
    )

    return message.content[0].text

# Usage
docs = load_docs("./docs")
answer = search_docs("How do we handle payment webhooks?", docs)
print(answer)

Enter fullscreen mode Exit fullscreen mode

Dead simple. No vector databases, no fancy embeddings (yet). Just Claude reading your actual docs and answering questions.

Why This Works When Traditional Docs Don't

Real talk: developers don't read documentation. We read answers to specific problems. This flips that. Instead of maintaining perfect docs (impossible), you maintain searchable docs. The AI does the work of connecting the dots.

Your docs can be rougher, more conversational, less polished. Because they're not meant for humans to read linearly anymore—they're a knowledge base for an AI to synthesize.

We've cut onboarding time from 2 weeks to 3 days. Not because our docs got better, but because information's actually findable now.

The Stuff That Actually Matters

What I'd do differently:

  • Namespace your docs (we use folders: /architecture, /api, /runbooks, /decisions)
  • Keep ADRs (Architecture Decision Records) small and current—these are gold for context
  • Don't delete old docs, just mark them deprecated—AI's better with full context
  • Run summaries monthly, not daily (the API costs add up)

Cost reality:
This runs us about $40/month on Claude API. That's insanely cheap compared to the time saved.

One warning:
Claude's good at synthesis, not perfect. Always verify critical information. But for "remind me how this works?" it's bulletproof.

What's Next

We're about to add:

  • Automated doc generation from code comments
  • Smart alerts when docs drift from actual behavior
  • A Slack bot so people can ask without context-switching

But honestly? This basic setup is already solving 80% of our documentation problem.

Try It Yourself

You need:

  1. Your docs (even rough ones) in one place
  2. Anthropic API key
  3. 30 minutes to adapt the script above

Throw it at your documentation mess and see what happens. I think you'll be surprised how much better information becomes when it's actually findable.

Your future self (and your next hire) will thank you.


Want more on building smart workflows with AI? Check out LearnAI Weekly for practical patterns that actually work in production.