Skip to content

Claude Resources

Official docs and guides for vibecoders — organized by skill level with TLDRs so you know exactly what to read and when.

🌱

Beginner

Just getting started? Start here.

Intermediate

You've got the basics. Now make Claude actually do what you want.

Prompt Engineering Overview
Prompting

Official guide on how to write prompts that actually work. Covers system prompts, examples, formatting, and common patterns. This is where 80% of your "why isn't it doing what I want" problems get solved.

Claude gives you bad outputs and you want to know why.

Claude Code — Overview
Claude Code

Claude Code is an AI coding agent that lives in your terminal. Not just autocomplete — it reads files, edits code, runs tests, and ships. This page explains what it is and what it can do.

You want to understand what Claude Code is and whether it's for you.

Claude Code — Quickstart
Claude Code

How to install and run Claude Code in under 10 minutes. Covers npm install, first run, and the slash commands you'll use daily.

You want to get Claude Code running on your machine right now.

Tool Use (Function Calling)
API

Teach Claude to use tools — web search, database queries, API calls. You define the tool schema, Claude decides when to call it. This is the foundation of any serious Claude app.

You want Claude to do things beyond text — call APIs, query DBs, take actions.

Vision — Image Inputs
API

Pass images to Claude and it understands them. Covers supported formats, base64 vs URL, and practical examples like UI screenshots and diagrams.

You need Claude to analyze images, screenshots, or documents.

System Prompts — Best Practices
Prompting

System prompts set Claude's persona, constraints, and context. This guide covers how to structure them for consistent behavior across conversations.

You're building an app and need Claude to behave consistently every time.

🚀

Advanced

Building real products with Claude? Here's what you need.

Building Agents
Agents

How to build autonomous Claude agents that plan, act, and loop. Covers the agent loop pattern, tool selection, and stopping conditions. The most important read if you're building anything serious.

You want Claude to complete multi-step tasks autonomously — not just respond once.

Model Context Protocol (MCP)
MCP

MCP is an open standard for connecting Claude to external tools, data sources, and services. Think of it as a plugin system — build once, works with any MCP-compatible AI. This is the future of Claude integrations.

You want Claude to connect to databases, APIs, or local tools in a standardized way.

Claude Code — Hooks
Claude Code

Hooks let you run shell commands automatically at Claude Code lifecycle events (before/after edits, on commit, etc). Powerful for enforcing workflows, auto-formatting, or blocking bad actions.

You want Claude Code to automatically do things like lint, test, or notify on specific events.

Claude Code — Settings & Permissions
Claude Code

Full reference for settings.json — permission modes, allowed tools, env vars, and project-level vs global config. Read this before granting Claude Code any dangerous permissions.

You want fine-grained control over what Claude Code can and can't do.

Streaming Responses
API

Stream Claude's response token-by-token instead of waiting for the full reply. Required for any chat-like UX. Covers SSE format, error handling in streams, and the Python/JS SDK helpers.

You're building a UI that shows Claude's response as it types.

Prompt Caching
API

Cache parts of your prompt that don't change (system prompts, large docs) and save up to 90% on token costs. Huge for apps that send the same context every request.

You're burning API credits and the same context is sent on every request.

Multi-Agent Orchestration
Agents

How to design systems with multiple Claude agents working together — orchestrators, subagents, tool sharing, and communication patterns. Covers parallelization and the tradeoffs of complex agent networks.

You're building a team of agents and need them to coordinate.

📚

Reference

Bookmarks you'll return to constantly.

Made with passive-aggressive love by manoga.digital. Powered by Claude.