Open Documentation Registry for AI Code Generation

Stop debugging AI-generated code. Get version-aware suggestions that work with frameworks in your repository the first time.

Initial proof of concept for Hono 4.7.5 now available!

The Problem: Version-Blind AI

Every AI coding assistant faces the same critical limitation: version blindness. They cannot detect which version of a framework you're using, nor access the correct documentation for that version.

Without Version-Aware AI

// AI suggests outdated dependency versions
// package.json created by AI
{
  "dependencies": {
    "next": "^13.0.0",
    "react": "^17.0.2"
  }
}

// Developer runs npm install and gets outdated 
// versions missing years of improvements
// AI then generates code for older patterns:

import { useState, useEffect } from 'react';
import { useRouter } from 'next/router';

export default function Product() {
  const router = useRouter();
  const { id } = router.query;
  const [product, setProduct] = useState(null);
  
  // Client-side fetching pattern from older Next.js
  useEffect(() => {
    if (id) {
      fetch(`/api/products/${id}`)
        .then(res => res.json())
        .then(data => setProduct(data));
    }
  }, [id]);

  if (!product) return <div>Loading...</div>;
}

With Version-Aware AI

// With ODocs Version Registry:
// package.json created by AI 
{
  "dependencies": {
    "next": "^15.0.0",
    "react": "^18.2.0"
  }
}

// Developer runs npm install
// With version-specific knowledge, 
// AI generates modern App Router code:

import { notFound } from 'next/navigation';

// Server component with built-in data fetching
async function getProduct(id) {
  const res = await fetch(
    `https://api.example.com/products/${id}`
  );
  if (!res.ok) return undefined;
  return res.json();
}

export default async function ProductPage({ params }) {
  const product = await getProduct(params.id);
  
  if (!product) {
    notFound();
  }
}

This affects every ecosystem:

JavaScript/TypeScript

React hooks that worked in 17.0 but throw errors in 18.2

Python

Django patterns that were best practice in 4.2 but deprecated in 5.0

Java

Spring Boot configurations that are entirely restructured between versions

Ruby

AI generates Rails 6 code while your project uses Rails 7

.NET

AI provides .NET 6 examples when you're building with .NET 8

And many more...

Every programming ecosystem faces this version blindness problem

The Solution: ODocs

ODocs is an open-source registry that connects AI coding assistants with version-specific documentation, ensuring they generate compatible code on the first try.

Our Approach:

  1. Documentation Registry: A central, open-source registry where framework maintainers publish LLM-optimized documentation with specific version tags (e.g., nextjs:latest,nextjs:15.2, django:5.0)
  2. Framework Detection: Tools that automatically scan your project files to identify which frameworks and versions you're using
  3. Vector Database: Local embedding of documentation for efficient retrieval, reducing token usage and enabling precise search
  4. AI Integration Layer: Open APIs that connect with any AI coding assistant

"Even the latest AI models suffer from version blindness – they cannot detect which framework version you're using or access the right documentation for it."

How ODocs Works

# Start the ODocs server (auto-detects frameworks)
$ odocs serve

→ Scanning package.json...
→ Detected frameworks:
  - nextjs:15.2.1
  - react:18.2.0
  - tailwindcss:3.3.0

→ Pulling documentation for detected frameworks...
→ Documentation pulled successfully

→ Embedding documentations for detected frameworks...
→ Documentation embedded successfully

→ API server running at http://localhost:2803/api
→ MCP server running at http://localhost:2803/mcp
  1. 1

    Framework Detection

    Automatically scans your project files to identify which frameworks and versions you're using or provides latest version suggestions.

  2. 2

    Documentation Serving

    Pulls the relevant documentation from the registry and embeds it in a local vector database.

  3. 3

    AI Integration

    Your AI assistant connects to ODocs through MCP, API, or IDE plugins.

  4. 4

    Contextual Code Generation

    When you ask your AI assistant to generate code, it uses version-specific documentation instead of outdated patterns.

Integration Options

CLI Tools

Zero-configuration command that automatically detects framework versions and starts a local server.

$odocs serve

VS Code Extension

One-click installation with automatic detection of frameworks and seamless AI integration within your IDE.

  • Automatic framework detection
  • Integrated AI context injection

GitHub Copilot

Companion functionality that enhances Copilot suggestions with framework-specific context for accurate code generation.

  • Version-aware code suggestions
  • Background framework detection

Current Development Status

Initial Proof of Concept Available!

We've completed an initial working prototype of ODocs! While limited in scope, this proof of concept successfully demonstrates the core value proposition of solving version blindness in AI code generation.

Our current implementation focuses specifically on Hono 4.7.5, which already offers LLM-optimized documentation ready for AI consumption. This targeted prototype:

  • Uses a documentation repository with version-specific Hono documentation
  • Includes a CLI tool that successfully detects Hono in your projects
  • Provides a local API server that connects with AI assistants
  • Demonstrates how version-specific documentation improves code generation

Join the ODocs Community

For Framework Maintainers

We're especially looking for framework maintainers to help us expand beyond our initial Hono implementation.

  • Contribute LLM-optimized documentation for your framework
  • Help define standards for AI-friendly documentation
  • Provide insights on version compatibility challenges
  • Integrate documentation publishing into your release workflows

For Developers

Help build the core ODocs infrastructure that will make version-aware AI coding possible across all ecosystems.

  • Test our Hono prototype and provide feedback
  • Contribute to the core ODocs infrastructure
  • Help build IDE extensions and integrations
  • Share your experiences with version mismatch issues

Your involvement is crucial to expanding ODocs to support all major frameworks across programming languages!