<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Claude API Code Examples</title>
    <link>https://claude-code-examples.vercel.app/</link>
    <description>Working 2026 code examples for the Anthropic API — Python, Node.js, TypeScript, Go. 147 working examples covering Python, Node.js, TypeScript, Go, streaming, tool use, vision, batch API, and more.</description>
    <language>en-us</language>
    <lastBuildDate>Thu, 14 May 2026 04:00:00 +0000</lastBuildDate>
    <atom:link href="https://claude-code-examples.vercel.app/rss.xml" rel="self" type="application/rss+xml"/>
    <image>
      <url>https://claude-code-examples.vercel.app/favicon.svg</url>
      <title>Claude API Code Examples</title>
      <link>https://claude-code-examples.vercel.app/</link>
    </image>
    <item>
      <title><![CDATA[Claude API Python Quickstart (2026 Working Example)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-python-quickstart/</link>
      <description><![CDATA[Working Python code to call the Claude API in 2026. Install the Anthropic SDK, set your API key, and send your first message in under 10 lines.]]></description>
      <pubDate>Thu, 14 May 2026 08:00:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-python-quickstart/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Node.js Quickstart (2026 Working Example)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-nodejs-quickstart/</link>
      <description><![CDATA[Working Node.js code to call the Claude API in 2026. Install @anthropic-ai/sdk, set your API key, and get a response in under 10 lines.]]></description>
      <pubDate>Thu, 14 May 2026 08:08:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-nodejs-quickstart/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Streaming Python Example (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-streaming-python/</link>
      <description><![CDATA[How to stream Claude API responses in Python using the Anthropic SDK. Print tokens as they arrive instead of waiting for the full response.]]></description>
      <pubDate>Thu, 14 May 2026 08:16:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-streaming-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Streaming Node.js Example (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-streaming-nodejs/</link>
      <description><![CDATA[Stream Claude API responses in Node.js using @anthropic-ai/sdk. Print tokens as they arrive with the streaming helper or raw event stream.]]></description>
      <pubDate>Thu, 14 May 2026 08:24:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-streaming-nodejs/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Tool Use (Function Calling) Python Example]]></title>
      <link>https://claude-code-examples.vercel.app/claude-tool-use-python/</link>
      <description><![CDATA[How to use Claude's tool_use (function calling) feature in Python. Define tools, let Claude decide when to call them, and handle results.]]></description>
      <pubDate>Thu, 14 May 2026 08:32:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-tool-use-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Tool Use (Function Calling) Node.js Example]]></title>
      <link>https://claude-code-examples.vercel.app/claude-tool-use-nodejs/</link>
      <description><![CDATA[Function calling with Claude in Node.js. Define tools in JSON Schema, handle tool_use blocks, and return results for multi-step agent loops.]]></description>
      <pubDate>Thu, 14 May 2026 08:40:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-tool-use-nodejs/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Prompt Caching Python Example (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-prompt-caching-python/</link>
      <description><![CDATA[How to use Claude's prompt caching feature in Python. Cache large system prompts or documents and save up to 90% on repeated input tokens.]]></description>
      <pubDate>Thu, 14 May 2026 08:48:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-prompt-caching-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Vision API Python Example — Analyze Images (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-vision-api-python/</link>
      <description><![CDATA[Analyze images with Claude in Python. Pass base64 images or URLs, extract text, describe scenes, and process PDFs with the Anthropic vision API.]]></description>
      <pubDate>Thu, 14 May 2026 08:56:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-vision-api-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API JSON Output Example — Structured Data Extraction]]></title>
      <link>https://claude-code-examples.vercel.app/claude-json-output-example/</link>
      <description><![CDATA[Get structured JSON from Claude without tool use. Use system prompts + temperature=0 to extract entities, classify text, and parse structured data.]]></description>
      <pubDate>Thu, 14 May 2026 09:04:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-json-output-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Multi-Turn Conversation in Python (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-conversation-history-python/</link>
      <description><![CDATA[Build multi-turn chat with Claude in Python. Manage conversation history, control context length, and implement memory patterns with the Anthropic SDK.]]></description>
      <pubDate>Thu, 14 May 2026 09:12:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-conversation-history-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API TypeScript Quickstart with Full Type Safety (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-typescript-quickstart/</link>
      <description><![CDATA[Type-safe Claude API calls in TypeScript. Use @anthropic-ai/sdk with full type inference for messages, tool use, streaming, and response handling.]]></description>
      <pubDate>Thu, 14 May 2026 09:20:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-typescript-quickstart/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Error Handling and Retry Logic in Python]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-error-handling-python/</link>
      <description><![CDATA[Handle rate limits, overloads, and API errors from the Anthropic SDK in Python. Implement exponential backoff, retries, and graceful degradation.]]></description>
      <pubDate>Thu, 14 May 2026 09:28:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-error-handling-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Batch API Python Example — 50% Cost Savings]]></title>
      <link>https://claude-code-examples.vercel.app/claude-batch-api-python/</link>
      <description><![CDATA[Use the Anthropic Batch API in Python to process thousands of requests at 50% off standard pricing. Poll for results and handle partial failures.]]></description>
      <pubDate>Thu, 14 May 2026 09:36:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-batch-api-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Extended Thinking API Python Example (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-extended-thinking-python/</link>
      <description><![CDATA[Enable extended thinking for Claude Opus in Python. Get step-by-step reasoning traces before the final answer on complex reasoning tasks.]]></description>
      <pubDate>Thu, 14 May 2026 09:44:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-extended-thinking-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude System Prompt Examples — Personas, Formats, Constraints]]></title>
      <link>https://claude-code-examples.vercel.app/claude-system-prompt-examples/</link>
      <description><![CDATA[Effective system prompt patterns for Claude. Role personas, output format enforcement, constraint setting, and safety instructions with working examples.]]></description>
      <pubDate>Thu, 14 May 2026 09:52:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-system-prompt-examples/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Async Claude API in Python — asyncio + aiohttp Patterns]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-async-python/</link>
      <description><![CDATA[Run multiple Claude API calls concurrently with asyncio in Python. Use AsyncAnthropic, gather parallel requests, and handle rate limits in async code.]]></description>
      <pubDate>Thu, 14 May 2026 10:00:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-async-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude PDF Analysis API Python Example (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-pdf-analysis-python/</link>
      <description><![CDATA[Extract text, summarize, and analyze PDFs with the Claude API in Python. Pass PDFs as base64 documents or URLs and ask questions about the content.]]></description>
      <pubDate>Thu, 14 May 2026 10:08:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-pdf-analysis-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude MCP Server Python Example — Build a Model Context Protocol Server]]></title>
      <link>https://claude-code-examples.vercel.app/claude-mcp-server-python/</link>
      <description><![CDATA[Create a Model Context Protocol (MCP) server in Python that Claude can use as a tool. Expose custom functions, databases, and APIs to Claude Code and Claude Desktop.]]></description>
      <pubDate>Thu, 14 May 2026 10:16:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-mcp-server-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Environment Setup — API Keys, .env, and Best Practices]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-environment-setup/</link>
      <description><![CDATA[Set up your Anthropic API key securely. Store it in .env files, environment variables, and secrets managers. Avoid hardcoding keys in source code.]]></description>
      <pubDate>Thu, 14 May 2026 10:24:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-environment-setup/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Go Example — Official SDK Quickstart (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-go-example/</link>
      <description><![CDATA[Call the Claude API from Go using the official Anthropic Go SDK. Install the package, create a client, and send your first message with full type safety.]]></description>
      <pubDate>Thu, 14 May 2026 10:32:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-go-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Rate Limits Explained — Tiers, Headers, and Retry Strategies]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-rate-limits-guide/</link>
      <description><![CDATA[Understand Anthropic API rate limits: RPM, TPM, and tier thresholds. How to read rate limit headers, request tier upgrades, and implement retry logic.]]></description>
      <pubDate>Thu, 14 May 2026 10:40:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-rate-limits-guide/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API vs OpenAI API — 2026 Developer Comparison]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-vs-openai/</link>
      <description><![CDATA[Side-by-side comparison of the Claude API (Anthropic) vs OpenAI API: pricing, context window, tool use, streaming, and migration. With Python code examples.]]></description>
      <pubDate>Thu, 14 May 2026 10:48:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-vs-openai/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Haiku API Example — Fast, Cheap Claude API Calls (Python)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-haiku-api-example/</link>
      <description><![CDATA[How to use claude-haiku-4-5 via the Anthropic Python SDK. Working code for classification, tagging, extraction, and high-volume tasks where Haiku's low cost matters.]]></description>
      <pubDate>Thu, 14 May 2026 10:56:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-haiku-api-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Agents Python — Agentic Loop with Tool Use (2026 Guide)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-agents-python/</link>
      <description><![CDATA[Build an autonomous Claude agent in Python using the Anthropic SDK. Agentic loop pattern: Claude calls tools, you execute them, Claude continues until done. Working code examples.]]></description>
      <pubDate>Thu, 14 May 2026 11:04:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-agents-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Structured Output Python — Pydantic, JSON Schema & TypedDict (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-structured-output-python/</link>
      <description><![CDATA[Extract structured data from Claude in Python using Pydantic models, JSON schema via tool_use, and TypedDict. Working code examples with validation. Updated for Claude Sonnet 4.6 and claude-haiku-4-5.]]></description>
      <pubDate>Thu, 14 May 2026 11:12:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-structured-output-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Function Calling Python — How Tool Use Replaces OpenAI Function Calling]]></title>
      <link>https://claude-code-examples.vercel.app/claude-function-calling-python/</link>
      <description><![CDATA[Claude uses 'tool use' instead of 'function calling'. This guide shows how Claude tool_use maps to OpenAI function calling and how to migrate your existing code. Working examples for 2026.]]></description>
      <pubDate>Thu, 14 May 2026 11:20:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-function-calling-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Opus 4 API Example — When to Use claude-opus-4-7 (2026 Guide)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-opus-api-example/</link>
      <description><![CDATA[Working Python examples for Claude Opus 4 (claude-opus-4-7), Anthropic's most capable model. Learn when Opus beats Sonnet, how to use extended thinking with Opus, and how to manage cost at Opus pricin]]></description>
      <pubDate>Thu, 14 May 2026 11:28:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-opus-api-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Java Example — Call Anthropic from Java (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-java-example/</link>
      <description><![CDATA[Call the Anthropic Claude API from Java using the official SDK or the Java HttpClient. Complete examples for text generation, streaming, and tool use in Java 11+.]]></description>
      <pubDate>Thu, 14 May 2026 11:36:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-java-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Next.js Example — Streaming Chatbot with App Router (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-nextjs-example/</link>
      <description><![CDATA[Build a streaming Claude AI chatbot in Next.js using the App Router. Route handler, useChat hook, and full TypeScript example with Anthropic SDK.]]></description>
      <pubDate>Thu, 14 May 2026 11:44:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-nextjs-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Computer Use API Example — Screenshot + Action Loop (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-computer-use-example/</link>
      <description><![CDATA[Call the Claude computer use API to let Claude control a desktop. Full Python example: screenshot, send to Claude, execute mouse/keyboard actions, loop.]]></description>
      <pubDate>Thu, 14 May 2026 11:52:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-computer-use-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API LangChain Example — Anthropic + LangChain Integration (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-langchain-example/</link>
      <description><![CDATA[Use Claude with LangChain in Python. Install langchain-anthropic, build chains, use LCEL, add memory, and stream responses — working 2026 examples.]]></description>
      <pubDate>Thu, 14 May 2026 12:00:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-langchain-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API curl Example — Test the Anthropic API from the Command Line (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-curl-example/</link>
      <description><![CDATA[Call the Claude API with curl. Complete 2026 examples: basic message, streaming, tool use, system prompt, and JSON extraction — no SDK required.]]></description>
      <pubDate>Thu, 14 May 2026 12:08:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-curl-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API FastAPI Example — Streaming Claude Chatbot with FastAPI (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-fastapi-example/</link>
      <description><![CDATA[Build a streaming Claude chatbot backend with FastAPI and the Anthropic SDK. Includes SSE streaming, async endpoints, CORS, and a minimal frontend.]]></description>
      <pubDate>Thu, 14 May 2026 12:16:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-fastapi-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Flask Example — Streaming Claude Chatbot with Flask (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-flask-example/</link>
      <description><![CDATA[Build a Claude chatbot backend with Flask in Python. Includes streaming with SSE using stream_with_context, conversation history endpoint, and CORS setup.]]></description>
      <pubDate>Thu, 14 May 2026 12:24:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-flask-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API C# Example — Call Anthropic from C# and .NET (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-csharp-example/</link>
      <description><![CDATA[Call the Claude API from C# using HttpClient. Complete working example with async/await, system prompt, streaming SSE, and exponential-backoff retry — no official .NET SDK required.]]></description>
      <pubDate>Thu, 14 May 2026 12:32:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-csharp-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Files API Python Example — Upload and Reuse Files (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-files-api-python/</link>
      <description><![CDATA[Use the Anthropic Files API in Python to upload documents once and reference them in multiple Claude requests. Reduces costs by avoiding repeated base64 encoding of large files.]]></description>
      <pubDate>Thu, 14 May 2026 12:40:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-files-api-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Ruby Example — Anthropic Ruby Integration (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-ruby-example/</link>
      <description><![CDATA[Working Ruby code for the Claude API using net/http. No official Ruby gem needed — call Claude from Rails, Sinatra, or plain Ruby scripts with these copy-paste examples.]]></description>
      <pubDate>Thu, 14 May 2026 12:48:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-ruby-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API PHP Example — Anthropic API PHP Integration (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-php-example/</link>
      <description><![CDATA[Working PHP code for calling the Claude API using cURL and Guzzle. No official PHP SDK needed — these copy-paste examples work with Laravel, WordPress, and plain PHP scripts.]]></description>
      <pubDate>Thu, 14 May 2026 12:56:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-php-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API React Chatbot — Build a React Chat UI with Claude (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-react-chatbot-example/</link>
      <description><![CDATA[Build a working Claude chatbot in React using the Anthropic SDK via a backend proxy. Full source for the React chat UI, streaming hooks, and a minimal Express or Next.js API route.]]></description>
      <pubDate>Thu, 14 May 2026 13:04:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-react-chatbot-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Kotlin Example — Android & JVM (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-kotlin-example/</link>
      <description><![CDATA[Working Kotlin code to call the Claude API in 2026. No official SDK — use OkHttp or Ktor. Covers streaming SSE, suspend functions, Android integration, and Spring Boot backend.]]></description>
      <pubDate>Thu, 14 May 2026 13:12:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-kotlin-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[RAG with Claude API — Retrieval Augmented Generation Python (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-rag-python/</link>
      <description><![CDATA[Build a RAG pipeline with the Claude API in Python. Embed documents, store in a vector database, retrieve relevant chunks, and pass them to Claude as context. Working code for 2026.]]></description>
      <pubDate>Thu, 14 May 2026 13:20:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-rag-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Text Summarization Python (2026 Working Examples)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-summarization-python/</link>
      <description><![CDATA[Working Python code to summarize text, documents, and URLs with the Claude API in 2026. Covers bullet-point summaries, extractive key points, long-document chunking, and structured JSON output.]]></description>
      <pubDate>Thu, 14 May 2026 13:28:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-summarization-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Rust Example (2026 Working Code)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-rust-example/</link>
      <description><![CDATA[Call the Anthropic Claude API from Rust using reqwest and tokio. Complete working examples: minimal request, system prompt, streaming SSE, retry logic, and async patterns.]]></description>
      <pubDate>Thu, 14 May 2026 13:36:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-rust-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Text Classification with Claude API in Python (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-classification-python/</link>
      <description><![CDATA[Classify text with Claude in Python: single-label, multi-label, zero-shot, and batch classification. Working code examples with structured JSON output and accuracy tips.]]></description>
      <pubDate>Thu, 14 May 2026 13:44:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-classification-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API in AWS Lambda (Python, 2026 Working Example)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-aws-lambda/</link>
      <description><![CDATA[Deploy Claude API calls in AWS Lambda with Python. Working handler pattern, streaming response, timeout configuration, environment variable setup, and API Gateway wiring.]]></description>
      <pubDate>Thu, 14 May 2026 13:52:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-aws-lambda/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Django Integration (2026 Working Example)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-django-example/</link>
      <description><![CDATA[Working Django code to integrate the Claude API in 2026. View-based chat handler, streaming responses, session conversation history, and Django REST framework API endpoint patterns.]]></description>
      <pubDate>Thu, 14 May 2026 14:00:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-django-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Sentiment Analysis Python (2026 Working Example)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-sentiment-analysis-python/</link>
      <description><![CDATA[Working Python code to run sentiment analysis with the Claude API in 2026. Zero-shot classifier, custom sentiment scales, aspect-based analysis, and batch processing patterns.]]></description>
      <pubDate>Thu, 14 May 2026 14:08:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-sentiment-analysis-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Structured Data Extraction Python (2026 Working Example)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-data-extraction-python/</link>
      <description><![CDATA[Working Python code to extract structured data from unstructured text using the Claude API in 2026. Extract entities, invoice fields, contract terms, and custom schemas to JSON.]]></description>
      <pubDate>Thu, 14 May 2026 14:16:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-data-extraction-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API with Express.js — Working Example (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-express-example/</link>
      <description><![CDATA[How to call the Claude API from an Express.js backend in 2026. Covers minimal handler, streaming SSE to browser, conversation history with sessions, and rate-limit middleware.]]></description>
      <pubDate>Thu, 14 May 2026 14:24:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-express-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Translate Text with Claude API (Python, 2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-translation-python/</link>
      <description><![CDATA[How to translate text between 100+ languages using the Claude API in Python. Covers single-string translation, batch translation, language detection, and quality-controlled output with Pydantic.]]></description>
      <pubDate>Thu, 14 May 2026 14:32:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-translation-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Generate Code with Claude API — Python (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-generation-python/</link>
      <description><![CDATA[How to generate, explain, refactor, and review code using the Claude API in Python. Covers function generation, docstring writing, unit test generation, and code review with structured feedback.]]></description>
      <pubDate>Thu, 14 May 2026 14:40:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-generation-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Swift Example — iOS & macOS Integration (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-swift-example/</link>
      <description><![CDATA[Call the Anthropic Claude API from Swift using URLSession. Complete working examples for iOS and macOS: minimal request, streaming, async/await, and SwiftUI chat view.]]></description>
      <pubDate>Thu, 14 May 2026 14:48:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-swift-example/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Content Moderation API — Python Guide (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-content-moderation-python/</link>
      <description><![CDATA[Build content moderation systems with the Claude API in Python. Zero-shot moderation, multi-category classifiers, explanation generation, bulk moderation via Batch API, and policy customization.]]></description>
      <pubDate>Thu, 14 May 2026 14:56:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-content-moderation-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Question Answering API — Python Guide (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-question-answering-python/</link>
      <description><![CDATA[Build Q&A systems with the Claude API in Python. FAQ bots, document Q&A, context-grounded answering, confidence scoring, and unanswerable detection — complete working examples.]]></description>
      <pubDate>Thu, 14 May 2026 15:04:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-question-answering-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Build a Chatbot with Claude API in Python (2026 Guide)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-chatbot-python/</link>
      <description><![CDATA[Step-by-step guide to building a Python chatbot with the Claude API. Terminal chatbot, Flask web chatbot, streaming, multi-persona, and context window management — all with working code.]]></description>
      <pubDate>Thu, 14 May 2026 15:12:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-chatbot-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Text-to-SQL Python: Natural Language to SQL Queries]]></title>
      <link>https://claude-code-examples.vercel.app/claude-text-to-sql-python/</link>
      <description><![CDATA[Convert natural language questions to SQL queries using Claude API. Schema injection, safety guardrails, multi-table joins, self-healing queries, and BigQuery support — all with Python code examples.]]></description>
      <pubDate>Thu, 14 May 2026 15:20:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-text-to-sql-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Build a Claude Slack Bot in Python (Bolt SDK + Anthropic)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-slack-bot-python/</link>
      <description><![CDATA[Build a Slack bot powered by Claude using Python Bolt SDK. Mentions, DMs, thread-aware conversation history, slash commands, and streaming message updates — all with working code.]]></description>
      <pubDate>Thu, 14 May 2026 15:28:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-slack-bot-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Discord Bot Python — Build an AI Discord Bot with Anthropic]]></title>
      <link>https://claude-code-examples.vercel.app/claude-discord-bot-python/</link>
      <description><![CDATA[Step-by-step guide to building a Claude-powered Discord bot in Python using discord.py. Covers slash commands, thread-aware conversation history, streaming, and rate limiting.]]></description>
      <pubDate>Thu, 14 May 2026 15:36:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-discord-bot-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Email Automation Python — AI Email Drafting, Classification & Replies]]></title>
      <link>https://claude-code-examples.vercel.app/claude-email-automation-python/</link>
      <description><![CDATA[Build email automation with Claude and Python. Covers drafting replies, classifying inbound email, extracting action items, bulk processing with Batch API, and Gmail/SMTP integration.]]></description>
      <pubDate>Thu, 14 May 2026 15:44:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-email-automation-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Cost Optimization — Reduce Anthropic API Bills by 50–90%]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-cost-optimization/</link>
      <description><![CDATA[Practical strategies to cut Claude API costs: model selection, prompt caching (90% savings on repeated context), Batch API (50% discount), token counting, max_tokens tuning, and request batching.]]></description>
      <pubDate>Thu, 14 May 2026 15:52:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-cost-optimization/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API in GitHub Actions: Automated Code Review CI/CD (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-github-actions/</link>
      <description><![CDATA[Run Claude API calls inside GitHub Actions workflows. Automate code review, PR summarization, and test-failure triage with the Anthropic SDK in CI/CD pipelines.]]></description>
      <pubDate>Thu, 14 May 2026 16:00:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-github-actions/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Testing Claude API Applications in Python: Mocking & Integration Tests (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-testing-python/</link>
      <description><![CDATA[How to unit test and integration test Python apps that call the Claude API. Mock the Anthropic client with unittest.mock, write deterministic tests, and add CI test coverage.]]></description>
      <pubDate>Thu, 14 May 2026 16:08:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-testing-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Deploy Claude API App to Google Cloud Run: Complete Guide (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-google-cloud-run/</link>
      <description><![CDATA[Deploy a Python Flask app that calls the Claude API to Google Cloud Run. Store the Anthropic API key in Secret Manager, containerize with Docker, and deploy serverless.]]></description>
      <pubDate>Thu, 14 May 2026 16:16:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-google-cloud-run/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Rate Limits: Handle 429 Errors in Python (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-rate-limits-python/</link>
      <description><![CDATA[Fix Anthropic API rate limit errors (429, overloaded_error) in Python. Working retry logic with exponential backoff, token-per-minute tracking, and concurrency controls.]]></description>
      <pubDate>Thu, 14 May 2026 16:24:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-rate-limits-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Authentication: API Keys & Best Practices (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-authentication/</link>
      <description><![CDATA[How to authenticate with the Anthropic Claude API. Set API keys securely in Python, Node.js, and shell. Rotate keys, use environment variables, and avoid common mistakes.]]></description>
      <pubDate>Thu, 14 May 2026 16:32:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-authentication/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Timeout & Retry Handling in Python (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-timeout-retry-python/</link>
      <description><![CDATA[Fix Claude API timeout errors in Python. Set request timeouts, implement retry logic for network errors and 500s, and handle streaming timeouts correctly.]]></description>
      <pubDate>Thu, 14 May 2026 16:40:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-timeout-retry-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API via AWS Bedrock Python: boto3 Complete Guide (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-aws-bedrock-python/</link>
      <description><![CDATA[Call Claude via AWS Bedrock in Python using boto3. Covers bedrock-runtime invoke_model, streaming, IAM setup, and cost comparison vs direct Anthropic API.]]></description>
      <pubDate>Thu, 14 May 2026 16:48:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-aws-bedrock-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Migrate from OpenAI to Claude API in Python: Drop-in Replacement Guide (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/openai-to-claude-migration-python/</link>
      <description><![CDATA[Step-by-step guide to switching from OpenAI GPT to Anthropic Claude in Python. Side-by-side API differences, model mapping, and a drop-in wrapper class.]]></description>
      <pubDate>Thu, 14 May 2026 16:56:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/openai-to-claude-migration-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Monitoring the Claude API in Python: Logging, Metrics & Observability (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-monitoring-python/</link>
      <description><![CDATA[Log every Claude API call, track token usage and latency, set cost alerts, and integrate with Datadog, Prometheus, or custom dashboards. Production-ready Python patterns.]]></description>
      <pubDate>Thu, 14 May 2026 17:04:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-monitoring-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Dockerize Claude API Python App: Production Dockerfile (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-docker-python/</link>
      <description><![CDATA[Step-by-step Dockerfile and Docker Compose setup for containerizing Claude API Python applications in 2026. Covers secret injection, multi-stage builds, and health checks.]]></description>
      <pubDate>Thu, 14 May 2026 17:12:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-docker-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API WebSocket Streaming Python: Real-Time Chat (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-websocket-python/</link>
      <description><![CDATA[Build real-time Claude API streaming over WebSocket in Python (2026). Uses FastAPI WebSockets + AsyncAnthropic to push tokens to the browser as they arrive.]]></description>
      <pubDate>Thu, 14 May 2026 17:20:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-websocket-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Build a Claude API Chatbot with Streamlit Python (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-streamlit-python/</link>
      <description><![CDATA[Build a streaming Claude API chatbot with Streamlit in Python (2026). Uses st.session_state for conversation history and st.write_stream for real-time token display.]]></description>
      <pubDate>Thu, 14 May 2026 17:28:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-streamlit-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code vs GitHub Copilot (2026): Which AI Coding Assistant Wins?]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-vs-github-copilot/</link>
      <description><![CDATA[Detailed comparison of Claude Code vs GitHub Copilot in 2026. Context window, agentic tasks, code review, pricing, IDE support, and when to choose each.]]></description>
      <pubDate>Thu, 14 May 2026 17:36:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-vs-github-copilot/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API with LlamaIndex in Python (2026 Working Example)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-llamaindex-python/</link>
      <description><![CDATA[Use the Claude API with LlamaIndex in Python 2026. Build RAG pipelines, query engines, and LlamaIndex agents backed by Claude Sonnet. Working code examples.]]></description>
      <pubDate>Thu, 14 May 2026 17:44:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-llamaindex-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API with Gradio in Python (2026 Working Example)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-gradio-python/</link>
      <description><![CDATA[Use the Claude API with Gradio in Python 2026. Build a streaming chatbot, image analysis app, and multi-modal demo with gr.ChatInterface and gr.Blocks. Working code.]]></description>
      <pubDate>Thu, 14 May 2026 17:52:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-gradio-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API vs Google Gemini API — 2026 Developer Comparison]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-vs-gemini/</link>
      <description><![CDATA[Side-by-side comparison of Anthropic Claude API vs Google Gemini API: pricing, context window, Python SDK, tool use, and migration code. With working examples.]]></description>
      <pubDate>Thu, 14 May 2026 18:00:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-vs-gemini/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Sonnet 4.6 vs GPT-4o — 2026 Model Comparison]]></title>
      <link>https://claude-code-examples.vercel.app/claude-sonnet-vs-gpt4/</link>
      <description><![CDATA[Practical comparison of Claude Sonnet 4.6 vs GPT-4o for developers: pricing, context window, coding, tool use, and when to use each. With Python examples.]]></description>
      <pubDate>Thu, 14 May 2026 18:08:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-sonnet-vs-gpt4/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API Pricing 2026 — Complete Developer Guide]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-pricing-2026/</link>
      <description><![CDATA[Complete Claude API pricing guide for 2026: all model prices, prompt caching savings, batch API discount, context window costs, and how to estimate your bill. With Python examples.]]></description>
      <pubDate>Thu, 14 May 2026 18:16:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-pricing-2026/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Haiku vs GPT-3.5-Turbo — 2026 Budget LLM API Comparison]]></title>
      <link>https://claude-code-examples.vercel.app/claude-haiku-vs-gpt35/</link>
      <description><![CDATA[Claude Haiku vs GPT-3.5-Turbo: price, speed, context window, and code examples in 2026. Which budget LLM API is faster and cheaper for production?]]></description>
      <pubDate>Thu, 14 May 2026 18:24:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-haiku-vs-gpt35/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude API vs Azure OpenAI — 2026 Enterprise LLM Comparison]]></title>
      <link>https://claude-code-examples.vercel.app/claude-api-vs-azure-openai/</link>
      <description><![CDATA[Claude API vs Azure OpenAI: enterprise pricing, compliance, latency, Python examples, and deployment comparison. Which LLM platform wins for enterprise 2026?]]></description>
      <pubDate>Thu, 14 May 2026 18:32:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-api-vs-azure-openai/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Best LLM API 2026 — Claude, GPT-4o, Gemini, Mistral Compared]]></title>
      <link>https://claude-code-examples.vercel.app/best-llm-api-2026/</link>
      <description><![CDATA[Comprehensive 2026 guide to the best LLM APIs: Claude, GPT-4o, Gemini, Mistral. Pricing, context windows, speed, and Python code examples to help you choose.]]></description>
      <pubDate>Thu, 14 May 2026 18:40:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/best-llm-api-2026/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Summarize Git Diffs with Claude AI (Python Code)]]></title>
      <link>https://claude-code-examples.vercel.app/git-diff-summarize-python/</link>
      <description><![CDATA[Use the Claude API to auto-generate pull request summaries from git diffs. Working Python code plus an instant no-code tool.]]></description>
      <pubDate>Thu, 14 May 2026 18:48:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/git-diff-summarize-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[LLM Pricing Calculator in Python (Claude, OpenAI, Gemini)]]></title>
      <link>https://claude-code-examples.vercel.app/llm-pricing-calculator-python/</link>
      <description><![CDATA[Python code to calculate and compare API costs across Claude, GPT-4o, and Gemini for any prompt or workload. Includes a free interactive tool.]]></description>
      <pubDate>Thu, 14 May 2026 18:56:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/llm-pricing-calculator-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Extended Thinking API Python Examples (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-extended-thinking-python/</link>
      <description><![CDATA[How to use Claude's extended thinking mode in Python. Working code for streaming and non-streaming extended thinking with token budgets and cost estimates.]]></description>
      <pubDate>Thu, 14 May 2026 19:04:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-extended-thinking-python/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code vs Cursor: Which AI Coding Tool Wins in 2026?]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-vs-cursor/</link>
      <description><![CDATA[Detailed comparison of Claude Code and Cursor AI in 2026. Covers pricing, context window, codebase indexing, terminal access, CI/CD support, and which tool wins for each use case.]]></description>
      <pubDate>Thu, 14 May 2026 19:12:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-vs-cursor/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Hooks: Automate Pre/Post Actions (2026 Guide)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-hooks-tutorial/</link>
      <description><![CDATA[How to configure Claude Code hooks to run shell commands before or after tool calls. Automate linting, testing, notifications, and logging on every Claude Code action.]]></description>
      <pubDate>Thu, 14 May 2026 19:20:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-hooks-tutorial/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Slash Commands: Complete Reference (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-slash-commands/</link>
      <description><![CDATA[Complete list of Claude Code slash commands (/help, /clear, /compact, /review, /init, /memory) with usage examples, keyboard shortcuts, and when to use each command.]]></description>
      <pubDate>Thu, 14 May 2026 19:28:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-slash-commands/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Memory & CLAUDE.md: Complete Guide (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-memory-guide/</link>
      <description><![CDATA[How to use CLAUDE.md files and the /memory command in Claude Code to give Claude persistent context about your project, team conventions, and architecture.]]></description>
      <pubDate>Thu, 14 May 2026 19:36:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-memory-guide/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Permissions & Allowed Tools Guide (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-permissions-guide/</link>
      <description><![CDATA[Configure what Claude Code is allowed to do: restrict shell commands, limit file access, set up per-project permissions, and use allowedTools in CLI mode.]]></description>
      <pubDate>Thu, 14 May 2026 19:44:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-permissions-guide/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code MCP Server Setup: Step-by-Step Guide (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-mcp-setup/</link>
      <description><![CDATA[How to configure MCP (Model Context Protocol) servers in Claude Code — add filesystem, database, GitHub, and custom MCP tools using settings.json.]]></description>
      <pubDate>Thu, 14 May 2026 19:52:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-mcp-setup/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Git Workflow: Commits, PRs & Diffs (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-git-workflow/</link>
      <description><![CDATA[Use Claude Code for git operations: generate commit messages, review diffs, write PR descriptions, resolve merge conflicts, and automate git workflows.]]></description>
      <pubDate>Thu, 14 May 2026 20:00:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-git-workflow/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Context Window: /compact and Long Sessions (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-context-window-guide/</link>
      <description><![CDATA[How Claude Code's context window works, when to use /compact vs /clear, how to structure long sessions, and how to avoid losing work when context fills up.]]></description>
      <pubDate>Thu, 14 May 2026 20:08:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-context-window-guide/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Multi-Agent & Parallel Tasks (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-multi-agent-patterns/</link>
      <description><![CDATA[How to use Claude Code's multi-agent capabilities: spawn subagents for parallel work, use the Agent tool, run background tasks, and coordinate multiple Claude instances.]]></description>
      <pubDate>Thu, 14 May 2026 20:16:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-multi-agent-patterns/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code for Code Review: PR Review Workflow (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-review-workflow/</link>
      <description><![CDATA[Automate PR review, diff analysis, and pre-commit checks with Claude Code. Includes workflow examples for solo developers and teams.]]></description>
      <pubDate>Thu, 14 May 2026 20:24:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-review-workflow/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code settings.json: Complete Reference (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-settings-json-reference/</link>
      <description><![CDATA[Complete reference for Claude Code's settings.json configuration file: all keys, values, and examples for permissions, hooks, MCP servers, model selection, and more.]]></description>
      <pubDate>Thu, 14 May 2026 20:32:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-settings-json-reference/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Installation & Setup: Mac, Windows, Linux (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-installation-setup/</link>
      <description><![CDATA[Step-by-step guide to installing Claude Code on Mac, Windows, and Linux. Includes API key setup, first run, and common installation problems with fixes.]]></description>
      <pubDate>Thu, 14 May 2026 20:40:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-installation-setup/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Projects: Organize Sessions & Share Context (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-projects-feature/</link>
      <description><![CDATA[How to use Claude Code's Projects feature to organize sessions, share context across conversations, and manage team context for different codebases.]]></description>
      <pubDate>Thu, 14 May 2026 20:48:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-projects-feature/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Debugging: Errors, Stack Traces & Bugs (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-debugging-workflow/</link>
      <description><![CDATA[Use Claude Code to debug errors, analyze stack traces, find root causes, and fix bugs. Includes workflows for Python, JavaScript/Node.js, and general debugging patterns.]]></description>
      <pubDate>Thu, 14 May 2026 20:56:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-debugging-workflow/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Refactoring: Large-Scale Code Changes (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-refactoring-guide/</link>
      <description><![CDATA[How to use Claude Code for large-scale refactoring: rename symbols across a codebase, extract modules, migrate frameworks, and restructure code safely.]]></description>
      <pubDate>Thu, 14 May 2026 21:04:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-refactoring-guide/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code vs Aider: Which AI Coding CLI Wins in 2026?]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-vs-aider/</link>
      <description><![CDATA[Detailed comparison of Claude Code vs Aider: features, pricing, model support, git workflow, context handling, and when to choose each AI coding CLI.]]></description>
      <pubDate>Thu, 14 May 2026 21:12:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-vs-aider/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Headless Mode: Non-Interactive & CI Usage (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-headless-mode/</link>
      <description><![CDATA[How to run Claude Code non-interactively: --print flag, piping input, CI/CD automation, scripting, and batch processing with Claude Code in headless mode.]]></description>
      <pubDate>Thu, 14 May 2026 21:20:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-headless-mode/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Cost & Pricing Guide 2026: Plans, API, and Usage]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-cost-pricing/</link>
      <description><![CDATA[Complete guide to Claude Code pricing in 2026: Pro vs Max plan, API billing, cost per session, how to estimate usage, and tips to reduce Claude Code costs.]]></description>
      <pubDate>Thu, 14 May 2026 21:28:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-cost-pricing/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code vs Windsurf (2026 Comparison)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-vs-windsurf/</link>
      <description><![CDATA[Detailed comparison of Claude Code and Windsurf (Codeium). Feature table, pricing breakdown, and use-case verdicts to help you pick the right AI coding tool.]]></description>
      <pubDate>Thu, 14 May 2026 21:36:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-vs-windsurf/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Subagents: Parallel AI Tasks (2026 Guide)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-subagents/</link>
      <description><![CDATA[How to use Claude Code subagents to run parallel AI tasks. Complete guide with examples for spawning subagents, passing context, and aggregating results.]]></description>
      <pubDate>Thu, 14 May 2026 21:44:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-subagents/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code IDE Extensions: VS Code & JetBrains Setup (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-ide-extensions/</link>
      <description><![CDATA[How to install and use Claude Code extensions for VS Code and JetBrains IDEs. Step-by-step setup, keyboard shortcuts, and tips for getting the most out of Claude Code inside your editor.]]></description>
      <pubDate>Thu, 14 May 2026 21:52:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-ide-extensions/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code vs Devin AI: 2026 Comparison for Developers]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-vs-devin/</link>
      <description><![CDATA[Side-by-side comparison of Claude Code and Devin AI in 2026. Compare autonomy, pricing, IDE integration, CI support, and which tasks each agent handles best.]]></description>
      <pubDate>Thu, 14 May 2026 22:00:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-vs-devin/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code vs Cline: 2026 Comparison (VS Code AI Agent)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-vs-cline/</link>
      <description><![CDATA[Claude Code vs Cline (formerly Claude-Dev) — detailed 2026 comparison. Both use Claude models. See how they differ on IDE integration, autonomy, pricing, CLAUDE.md support, and best use cases.]]></description>
      <pubDate>Thu, 14 May 2026 22:08:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-vs-cline/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Custom Slash Commands: Complete 2026 Guide]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-custom-commands/</link>
      <description><![CDATA[How to create custom slash commands in Claude Code using CLAUDE.md and the .claude/commands/ directory. Covers command syntax, arguments, template variables, and real-world examples.]]></description>
      <pubDate>Thu, 14 May 2026 22:16:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-custom-commands/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code vs Amazon Q Developer (2026 Comparison)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-vs-amazon-q/</link>
      <description><![CDATA[Detailed comparison of Claude Code vs Amazon Q Developer in 2026. Feature table, pricing, AWS integration depth, IDE support, and when each tool is the right choice.]]></description>
      <pubDate>Thu, 14 May 2026 22:24:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-vs-amazon-q/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code vs Gemini Code Assist (2026 Comparison)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-vs-gemini-code-assist/</link>
      <description><![CDATA[Claude Code vs Google Gemini Code Assist 2026: feature table, context window, pricing, Google Workspace integration, and which tool wins for different teams.]]></description>
      <pubDate>Thu, 14 May 2026 22:32:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-vs-gemini-code-assist/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Pricing Plans 2026 — Pro vs Max vs Team vs Enterprise]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-plan-pricing/</link>
      <description><![CDATA[Full breakdown of Claude Code subscription plans in 2026: Pro ($20/mo), Max ($100/mo, $200/mo), Team, and Enterprise. What's included, usage limits, and how to pick the right plan.]]></description>
      <pubDate>Thu, 14 May 2026 22:40:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-plan-pricing/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Best Prompts for Claude Code (2026 — 12 Battle-Tested Examples)]]></title>
      <link>https://claude-code-examples.vercel.app/best-prompts-for-claude-code/</link>
      <description><![CDATA[Twelve specific, reusable Claude Code prompts that consistently outperform vague requests. Copy-paste templates for code review, debugging, testing, refactoring, and documentation.]]></description>
      <pubDate>Thu, 14 May 2026 22:48:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/best-prompts-for-claude-code/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompt Template for Code Review (Copy-Paste, 2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-code-review/</link>
      <description><![CDATA[Specific Claude Code prompt templates for reviewing pull requests, finding security issues, ranking severity, and producing minimal-diff fixes. Copy, fill the brackets, paste.]]></description>
      <pubDate>Thu, 14 May 2026 22:56:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-code-review/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompt for Refactoring (Copy-Paste Templates, 2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-refactoring/</link>
      <description><![CDATA[Refactor with Claude Code without surprise scope creep. Copy-paste prompts for safe rename refactors, extract-function, dead-code removal, and large-scale migrations.]]></description>
      <pubDate>Thu, 14 May 2026 23:04:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-refactoring/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code System Prompt for Testing (Templates That Work, 2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-testing/</link>
      <description><![CDATA[Concrete Claude Code prompts to generate unit tests, find missing test coverage, write property-based tests, and diagnose flaky tests. Copy, fill, paste.]]></description>
      <pubDate>Thu, 14 May 2026 23:12:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-testing/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompt Cheatsheet (Quick-Reference, 2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-cheatsheet/</link>
      <description><![CDATA[One-page cheatsheet of Claude Code prompt patterns: role + constraints + output shape + budget. Plus 10 fill-in-the-bracket templates you can use immediately.]]></description>
      <pubDate>Thu, 14 May 2026 23:20:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-cheatsheet/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[CLAUDE.md Examples & Template (2026 Working Reference)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-md-examples-template/</link>
      <description><![CDATA[Working CLAUDE.md examples for Python, Node.js, monorepo, and team projects. Copy the template, fill in the brackets, drop into your repo root.]]></description>
      <pubDate>Thu, 14 May 2026 23:28:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-md-examples-template/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[How to Write Claude Code Prompts (2026 Guide)]]></title>
      <link>https://claude-code-examples.vercel.app/how-to-write-claude-code-prompts/</link>
      <description><![CDATA[Step-by-step guide to writing Claude Code prompts that produce specific, actionable output. Pattern + worked examples + common mistakes + how to debug a bad response.]]></description>
      <pubDate>Thu, 14 May 2026 23:36:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/how-to-write-claude-code-prompts/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompt Library (Curated 2026 Collection)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-library/</link>
      <description><![CDATA[A curated library of Claude Code prompts organised by workflow: review, debug, test, refactor, document, deploy. Open-source examples, plus the 30-prompt premium PDF.]]></description>
      <pubDate>Thu, 14 May 2026 23:44:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-library/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for Debugging (10 Specific Templates, 2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompts-debugging/</link>
      <description><![CDATA[Ten Claude Code prompt templates for debugging: stack-trace autopsy, flaky tests, memory leaks, performance regressions, and the bisect-without-bisect prompt. Copy and paste.]]></description>
      <pubDate>Thu, 14 May 2026 23:52:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompts-debugging/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompt for Documentation (Templates That Don't Read Like AI Slop, 2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-documentation/</link>
      <description><![CDATA[Claude Code prompt templates for READMEs, changelogs, API reference, runbooks, and PR descriptions — without the marketing-speak that makes AI-written docs obvious.]]></description>
      <pubDate>Fri, 15 May 2026 00:00:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-documentation/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Plan Mode: How /plan Works (2026 Guide)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-plan-mode/</link>
      <description><![CDATA[How to use Claude Code's /plan command to get a full implementation plan before any code is written. Covers plan review, approval, iteration, and when to use plan mode vs direct execution.]]></description>
      <pubDate>Fri, 15 May 2026 00:08:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-plan-mode/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Context Compaction: How Auto-Compact Works (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-context-compaction/</link>
      <description><![CDATA[How Claude Code's automatic context compaction works, when it triggers, what it keeps, and how to control it. Covers the /compact command, compact hooks, and strategies for very long sessions.]]></description>
      <pubDate>Fri, 15 May 2026 00:16:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-context-compaction/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Git Worktrees: Run Parallel Sessions (2026 Guide)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-worktrees/</link>
      <description><![CDATA[How to use git worktrees with Claude Code to run multiple parallel, isolated coding sessions on different branches simultaneously. Setup, patterns, and best practices for parallel AI-assisted developm]]></description>
      <pubDate>Fri, 15 May 2026 00:24:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-worktrees/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Enterprise: Team Plans, SSO & Admin Controls (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-enterprise/</link>
      <description><![CDATA[How Claude Code Enterprise works for teams: SSO/SAML setup, usage policies, admin controls, audit logs, and how it differs from individual Pro and Max plans.]]></description>
      <pubDate>Fri, 15 May 2026 00:32:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-enterprise/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code on AWS Bedrock: Setup & Configuration (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-bedrock/</link>
      <description><![CDATA[How to run Claude Code via AWS Bedrock instead of Anthropic's direct API. Covers IAM setup, environment variables, model IDs, and when to use Bedrock vs the Anthropic API.]]></description>
      <pubDate>Fri, 15 May 2026 00:40:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-bedrock/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code in Docker: Container & Remote Setup (2026)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-docker/</link>
      <description><![CDATA[How to run Claude Code inside Docker containers — for reproducible dev environments, remote servers, CI pipelines, and sandboxed agentic workloads. Full Dockerfile and docker-compose examples.]]></description>
      <pubDate>Fri, 15 May 2026 00:48:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-docker/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for Django (Models, Migrations, DRF) 2026]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-django/</link>
      <description><![CDATA[Copy-paste Claude Code prompts for Django 5 models, safe migrations, DRF serializers, N+1 query fixes, and select_related optimisation. Battle-tested 2026.]]></description>
      <pubDate>Fri, 15 May 2026 00:56:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-django/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for FastAPI (Routes, Pydantic, Async) 2026]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-fastapi/</link>
      <description><![CDATA[Battle-tested Claude Code prompts for FastAPI routes, Pydantic v2 models, dependency injection, and async SQLAlchemy. Copy, fill brackets, paste.]]></description>
      <pubDate>Fri, 15 May 2026 01:04:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-fastapi/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for Rails (Models, Migrations, Jobs) 2026]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-rails/</link>
      <description><![CDATA[Copy-paste Claude Code prompts for Rails 7.1 + Hotwire — models, strong_params controllers, ActiveJob workers, RSpec specs. Matches modern Rails idioms.]]></description>
      <pubDate>Fri, 15 May 2026 01:12:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-rails/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for Laravel 11 (Eloquent, Jobs, Tests)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-laravel/</link>
      <description><![CDATA[Copy-paste Claude Code prompts for Laravel 11 — Eloquent models, FormRequests, queued jobs, Pest tests, and Filament admin. Matches Laravel conventions out of the box.]]></description>
      <pubDate>Fri, 15 May 2026 01:20:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-laravel/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for Spring Boot 3 (Java 21, JPA, Tests)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-spring-boot/</link>
      <description><![CDATA[Copy-paste Claude Code prompts for Spring Boot 3 — JPA entities, controllers, Liquibase migrations, Testcontainers tests. Java 21 + records-first.]]></description>
      <pubDate>Fri, 15 May 2026 01:28:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-spring-boot/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for Gin (Go Web Framework) 2026]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-gin/</link>
      <description><![CDATA[Copy-paste Claude Code prompts for Gin handlers, middleware, sqlc queries, and table-driven tests. Go 1.22 idioms with context-first error handling.]]></description>
      <pubDate>Fri, 15 May 2026 01:36:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-gin/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for SvelteKit 2 (Load, Actions, Forms)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-sveltekit/</link>
      <description><![CDATA[Copy-paste Claude Code prompts for SvelteKit 2 — +page.server.ts loaders, form actions, hooks, and Svelte 5 runes. Plus Drizzle and Lucia patterns.]]></description>
      <pubDate>Fri, 15 May 2026 01:44:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-sveltekit/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for Nuxt 3 (Server Routes, Composables)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-nuxt/</link>
      <description><![CDATA[Copy-paste Claude Code prompts for Nuxt 3 — server routes, composables, useFetch vs $fetch, Pinia stores, and Nitro middleware. Vue 3 + script setup.]]></description>
      <pubDate>Fri, 15 May 2026 01:52:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-nuxt/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for Astro 4 (Content, Islands, Endpoints)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-astro/</link>
      <description><![CDATA[Copy-paste Claude Code prompts for Astro 4 — content collections, framework islands, server endpoints, MDX. Hybrid rendering with React/Svelte islands.]]></description>
      <pubDate>Fri, 15 May 2026 02:00:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-astro/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for Remix (Loaders, Actions, Forms) 2026]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-remix/</link>
      <description><![CDATA[Copy-paste Claude Code prompts for Remix — loaders, actions, nested routes, Conform forms, and pessimistic vs optimistic UI patterns. React Router 7 ready.]]></description>
      <pubDate>Fri, 15 May 2026 02:08:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-remix/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for Vue 3 (Composition API, Pinia, Vitest)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-vue/</link>
      <description><![CDATA[Copy-paste Claude Code prompts for Vue 3 — script setup, composables, Pinia, Vitest with @vue/test-utils. Avoids Options API drift and props/emit gotchas.]]></description>
      <pubDate>Fri, 15 May 2026 02:16:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-vue/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for Angular 18 (Signals, Standalone, Jest)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-angular/</link>
      <description><![CDATA[Copy-paste Claude Code prompts for Angular 18 — signals, standalone components, the new control flow, inject(), and Jest tests. No NgModules.]]></description>
      <pubDate>Fri, 15 May 2026 02:24:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-angular/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for Prisma (Schema, Migrations, Seed)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-prisma/</link>
      <description><![CDATA[Copy-paste Claude Code prompts for Prisma — schema design, safe migrations, seed scripts, and avoiding the N+1 trap with include vs select.]]></description>
      <pubDate>Fri, 15 May 2026 02:32:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-prisma/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for Drizzle ORM (Schema, Migrations, RLS)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-drizzle/</link>
      <description><![CDATA[Copy-paste Claude Code prompts for Drizzle ORM — schema definitions, migrations with drizzle-kit, relational queries, and Postgres RLS. Type-safe end-to-end.]]></description>
      <pubDate>Fri, 15 May 2026 02:40:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-drizzle/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for SQLAlchemy 2.0 (Async, Alembic, N+1)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-sqlalchemy/</link>
      <description><![CDATA[Copy-paste Claude Code prompts for SQLAlchemy 2.0 async — declarative models with Mapped types, Alembic migrations, and selectinload N+1 fixes.]]></description>
      <pubDate>Fri, 15 May 2026 02:48:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-sqlalchemy/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for Supabase (RLS, Edge Functions, Auth)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-supabase/</link>
      <description><![CDATA[Copy-paste Claude Code prompts for Supabase — RLS policies, edge functions, Auth helpers, and Postgres functions. Avoids the common 'auth.uid() returns null' trap.]]></description>
      <pubDate>Fri, 15 May 2026 02:56:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-supabase/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for Tailwind v4 (Migration, Linting, Design)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-tailwind/</link>
      <description><![CDATA[Copy-paste Claude Code prompts for Tailwind v4 — config migration, custom utilities, dark-mode, design-token discipline, and finding ad-hoc colour drift.]]></description>
      <pubDate>Fri, 15 May 2026 03:04:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-tailwind/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for shadcn/ui (CLI, Customizing, Updates)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-shadcn/</link>
      <description><![CDATA[Copy-paste Claude Code prompts for shadcn/ui — installing components, customizing without losing upgrade path, theme overrides, and Radix accessibility checks.]]></description>
      <pubDate>Fri, 15 May 2026 03:12:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-shadcn/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for Playwright (Stable Selectors, Flake Hunt)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-playwright/</link>
      <description><![CDATA[Copy-paste Claude Code prompts for Playwright — writing stable role-based selectors, killing flaky tests, network-mocking, and visual-regression baselines.]]></description>
      <pubDate>Fri, 15 May 2026 03:20:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-playwright/</guid>
      <category>Claude API</category>
    </item>
    <item>
      <title><![CDATA[Claude Code Prompts for pytest (Fixtures, Parametrize, Mocks)]]></title>
      <link>https://claude-code-examples.vercel.app/claude-code-prompt-pytest/</link>
      <description><![CDATA[Copy-paste Claude Code prompts for pytest — fixture design, parametrize, factory-boy, async tests, and avoiding test interdependence. Python 3.12 ready.]]></description>
      <pubDate>Fri, 15 May 2026 03:28:00 +0000</pubDate>
      <guid isPermaLink="true">https://claude-code-examples.vercel.app/claude-code-prompt-pytest/</guid>
      <category>Claude API</category>
    </item>
  </channel>
</rss>