Skip to main content

Quickstart

Get the most out of Vibe Coder Docs in under 5 minutes.
1

Browse by Topic

Use the sidebar to explore topics. Start with areas most relevant to what you’re building right now.
2

Search

Use the search bar (⌘K / Ctrl+K) to find specific topics, terms, or concepts.
3

Follow the Links

Pages link to related concepts. Follow these connections to build a complete mental model.

Where to Start

Not sure where to begin? Here’s a guide based on what you’re doing:
If you’re…Start with
Building your first appGeneral Programming
Deploying somethingGeneral IT
Worried about securitySecurity Overview
Working with a databaseDatabases & Storage
Building with AI APIsBuilding AI Applications
Handling user dataData Theory

Integrating with Your AI Coding Tool

These docs are designed to be consumed by both humans and AI agents. Here’s how to get the most out of them with your AI tool:

Point Your Agent Here

When starting a new project or encountering a topic covered in these docs, you can:
  1. Share a link — Copy the URL of a relevant page and paste it into your AI chat
  2. Reference concepts — Tell your AI assistant: “Follow the guidance from Vibe Coder Docs on [topic]”
  3. Use as a checklist — Before shipping, walk through the relevant sections with your AI to verify you haven’t missed anything

Add to Your Project Context

For tools that support project-level context (like Claude Code’s CLAUDE.md), you can reference these docs:
# References
- Security practices: https://vibecoderdocs.com/concepts/security/overview
- Database guidance: https://vibecoderdocs.com/concepts/databases-storage

Connect via MCP Server

This site automatically provides an MCP (Model Context Protocol) server that AI coding tools can connect to directly, giving your agent searchable access to all of our documentation.
claude mcp add --transport http vibe-coder-docs https://vibecoderdocs.com/mcp
Verify it’s connected:
claude mcp list
Open the command palette (Cmd+Shift+P / Ctrl+Shift+P), search “Open MCP settings”, and add:
{
  "mcpServers": {
    "vibe-coder-docs": {
      "url": "https://vibecoderdocs.com/mcp"
    }
  }
}
Create or edit .vscode/mcp.json in your project:
{
  "servers": {
    "vibe-coder-docs": {
      "type": "http",
      "url": "https://vibecoderdocs.com/mcp"
    }
  }
}

Use llms.txt for Direct Context

This site provides machine-readable documentation files that you can feed directly to any AI tool:
FileURLUse Case
llms.txt/llms.txtNavigation index — lets AI tools discover what topics are available
llms-full.txt/llms-full.txtFull content — all documentation in a single file for pasting into AI chats
These files are generated and updated automatically whenever the docs change.
The best time to consult these docs is before you start building, not after something breaks. Prevention is cheaper than debugging.