AI Guides

Master AI tools with step-by-step guides. From beginner to advanced.

GUIDE · CLAUDE CODE ROUTINES Put your AI agent on a schedule A saved prompt that runs itself in the cloud — on a timer, an API call, or a GitHub event. TRIGGERS Schedule (cron) API call GitHub event ROUTINE A saved prompt + repositories + allowed tools CLOUD RUN Full Claude Code session, then posts output Create it with /schedule in the CLI, or at claude.ai/code/routines. BITSMINDS.COM Source: Anthropic
CodeIntermediateFeatured
Claude Code

How to Use Claude Code Routines: Schedule an AI Agent to Run in the Cloud

A practical, illustrated walkthrough of Claude Code routines — saved prompts that run themselves in Anthropic’s cloud on a schedule, an API call, or a GitHub event. How to create one with /schedule or the web UI, write a prompt that behaves, pick a cadence, and worked examples you can copy.

CLAUDE FABLE 5MYTHOS-CLASS, NOW PUBLICBITSMINDS.COMSource: Anthropic
CodeIntermediateFeatured
Claude

How to Use Claude Fable 5: Access, Costs, and When to Choose It

A practical guide to Anthropic’s Claude Fable 5: how to get access, call it from the API, decide between Fable 5 and Opus 4.8, manage the premium pricing, and work with its safety guardrails.

Claude Code The terminal-native agentic coding tool You ask: Add a feature, run the tests, and commit. Claude Code api.ts + new route handler auth.ts ~ updated logic api.test.ts + 2 tests added ✓ tests passing BITSMINDS.COM
CodeIntermediate
Claude Code

Claude Code: A Guide to the Terminal-Native AI Coding Agent

Claude Code is Anthropic's agentic coding tool that reads your whole project, edits files, runs tests, and iterates from the terminal. A hands-on guide to installing it, how a session works, memory and customization, and where it runs.

Ollama Run open-source LLMs on your own machine — private and offline $ ollama run llama3.2 >>> Ready. Everything runs here. Llama Mistral Qwen Gemma BITSMINDS.COM
CodeIntermediate
Ollama

Ollama: How to Run Open-Source LLMs Locally on Your Own Machine

Ollama is the free, open-source tool for running Llama, Mistral, Qwen and more directly on your computer — private, offline, and free. A hands-on guide to how it works, picking a model for your hardware, and calling it from your own code.

Model Context Protocol One open standard connecting AI apps to your tools and data MCP the connector Claude apps IDEs Chatbots Databases APIs Files BITSMINDS.COM
CodeIntermediate
MCP

MCP Explained: How to Connect Claude and Any AI to Your Tools, Data, and APIs

The Model Context Protocol is the open standard that lets AI apps plug into your tools and data — like a USB-C port for AI. A hands-on guide to the architecture, the three server primitives, and connecting (or building) your first MCP server.

ANTHROPIC · AGENT SKILLS · EXPLAINERBUILD ONCE · RUN EVERYWHEREWhat areAgentSkills?Folders of instructions, scripts and resourcesthat Claude loads on demand to specialize.SKILL.mdprogressive disclosureopen standardSKILL.md---name: processing-pdfsdescription: what it does + when to use it---# Processing PDFs## Instructions ...BITSMINDS.COMSource: Anthropic
CodeIntermediateFeatured
Claude

Agent Skills: What They Are and How to Build One

Agent Skills are folders of instructions, scripts, and resources that Claude loads on demand to specialize at a task. Here’s how they work, how to build one, and why they’ve become a cross-vendor open standard.

The Agent Loop Each tool call returns to Claude until stop_reason equals end_turn. User request messages array Claude API claude-opus-4-7 + web_search + tools Tool handler validate + write prompt + tools stop_reason: tool_use tool_result returns as next user message BITSMINDS.COM
CodeAdvancedFeatured
Claude API

How We Built Our First AI Agent: A Production Guide to Claude API Agents

A deep dive into the agent that writes our daily AI news — the loop, the prompt, the tools, the validation, the caching, and the five lessons that took us months to learn.

Lovable — no-code full-stack apps One sentence in. Frontend, API, database, and live URL out. PROMPT A habit tracker with accounts, streaks, and a weekly chart. Mobile-friendly. LOVABLE BUILDS Pages & components Auth & users table Supabase schema + RLS Deploying preview...
CodeBeginner
Lovable

Lovable: Building Full Apps Without Writing Code in 2026

Lovable reached 8M users and $206M ARR by late 2025 as the leading no-code AI app builder. This guide walks through what it generates, when to use it instead of v0/Cursor, and how to ship a real product.

v0 — prompt to production UI Describe what you want. Get a working React + Tailwind component back. YOUR PROMPT A pricing card for "Pro" — $29/mo, 5 bullet features, a primary CTA, subtle "Most popular" badge. Use shadcn/ui + Tailwind. Match brand purple. ~12 sec to first render RENDERED COMPONENT MOST POPULAR Pro $29 /mo
CodeBeginner
v0

v0 by Vercel: Prompt-to-React UI With Real Components You Can Ship

v0 has become the dominant prompt-to-UI tool for React developers — generating shadcn/Tailwind components from natural language and shipping straight to Vercel. This guide covers v0 vs Cursor, prompting patterns, and the new v1 model.

OpenClaw — your personal agent Open-source. Runs locally. Brings its own tools — or yours. OpenClaw local agent Terminal bash + scripts Browser scrape, login Files read · edit · move Code edit + run Calendar book · check Email draft · send Notes Obsidian / Notion Custom your MCP servers
CodeAdvanced
OpenClaw

OpenClaw: The Open-Source AI Agent That Lives on Your Machine

OpenClaw is the viral 2026 open-source personal AI agent — 250K+ GitHub stars in 60 days. It runs locally, talks through Telegram/Signal/Discord/WhatsApp, executes shell commands, and uses Claude or GPT under the hood.

Cursor — the AI-native IDE Inline completion, chat with the codebase, agent that edits across files. my-app — Cursor EXPLORER ▾ src/ ▾ components/ Auth.tsx Nav.tsx ▾ lib/ db.ts auth.ts package.json tsconfig.json Auth.tsx 12 13 14 15 16 17 18 export async function signIn (email) { const user = await db.users . findUnique ({ where: { email } }) if (!user) throw new Error("not found"); const session = await createSession(user.id); return { user, session }; } Tab CMD-L · CHAT Add session creation + return shape after the lookup. Claude Found Auth.tsx. Drafted 3 lines at the cursor — press Tab to accept. Also created session.ts in /lib with createSession(). View 2 edits
CodeIntermediate
Cursor

Cursor: The AI-Native IDE That Changes Development

Cursor 3 with Composer agent — the AI-native IDE that's reshaping development. Learn the new agent-first interface, Composer model, async subagents, Cursor SDK, and how to 10x your productivity.

GitHub Copilot in your editor Ghost-text suggestions inline, Chat in the side panel, Agent for whole tasks. checkout.py — Visual Studio Code checkout.py 8 9 10 11 12 13 14 15 16 def calculate_total (cart, tax_rate): subtotal = sum (item.price * item.qty for item in cart) tax = subtotal * tax_rate discount = apply_discount(cart, subtotal) total = subtotal + tax - discount return round(total, 2) Copilot · press Tab COPILOT CHAT @workspace why is the cart total off by one cent sometimes? Copilot Float rounding in sum(). Use Decimal or round at the item level, then sum. I can refactor — say "go".
CodeBeginner
GitHub Copilot

GitHub Copilot: The Complete Developer Guide

GitHub Copilot in 2026 — agent mode across VS Code and JetBrains, multi-model selection (Claude + Codex + Gemini), Next Edit Suggestions, and how to autonomously assign issues.