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!
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.
// 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 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();
}
}
React hooks that worked in 17.0 but throw errors in 18.2
Django patterns that were best practice in 4.2 but deprecated in 5.0
Spring Boot configurations that are entirely restructured between versions
AI generates Rails 6 code while your project uses Rails 7
AI provides .NET 6 examples when you're building with .NET 8
Every programming ecosystem faces this version blindness problem
ODocs is an open-source registry that connects AI coding assistants with version-specific documentation, ensuring they generate compatible code on the first try.
nextjs:latest
,nextjs:15.2
, django:5.0
)"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."
# 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
Automatically scans your project files to identify which frameworks and versions you're using or provides latest version suggestions.
Pulls the relevant documentation from the registry and embeds it in a local vector database.
Your AI assistant connects to ODocs through MCP, API, or IDE plugins.
When you ask your AI assistant to generate code, it uses version-specific documentation instead of outdated patterns.
Zero-configuration command that automatically detects framework versions and starts a local server.
odocs serve
One-click installation with automatic detection of frameworks and seamless AI integration within your IDE.
Companion functionality that enhances Copilot suggestions with framework-specific context for accurate code generation.
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:
We're especially looking for framework maintainers to help us expand beyond our initial Hono implementation.
Help build the core ODocs infrastructure that will make version-aware AI coding possible across all ecosystems.
Your involvement is crucial to expanding ODocs to support all major frameworks across programming languages!