Claude Code Playbooks.
Skills, hooks, multi-agent pipelines, production security, and the second-brain vault. Replace 2-3 hours of daily busywork.
6 titles · 35 free guides
Cut Your Claude Code Token Bill in Half
Your Claude Code bill is mostly overhead, not features. Cut your token cost with six fixes plus the one effort setting that quietly drains your account.
from: Claude Code for Beginners
5 Claude Code Power Features Beginners Aren't Using
Remote control, background agents, MCP, LSP, and voice mode: five Claude Code power features beginners skip, with the exact current commands that work.
from: Claude Code for Beginners
Fix Ugly UIs in Claude Code With the Screenshot Loop
Your Claude Code UI looks wrong but the code is fine? The screenshot loop fixes it in three quick rounds, because Claude has no eyes to see what you see.
from: Claude Code for Beginners
Security-Audit Your Claude Code App Before Launch
Your Claude Code app works but has holes a pen tester would laugh at. The 5 places AI code leaks data, plus the audit you run before real users log in.
from: Claude Code for Beginners
Add Stripe Payments to Your Claude Code App
Take your Claude Code app from free to first payment. Wire Stripe Checkout and a webhook, run the 5-gate launch checklist, and ship something people pay for.
from: Claude Code for Beginners
How to Give an Agentic Loop an Exit Condition
An agentic loop exit condition has two halves: a measurable pass criterion and a hard cap. Wire both in Claude Code so a runaway loop stops in 1-4 turns.
from: Claude Code Loop Engineering
How to Cap a Claude Code Loop's Spend
Set a Claude Code budget limit per run so an unattended loop can't burn $200 overnight: a hard --max-budget-usd cap, a model router, and context trimming.
from: Claude Code Loop Engineering
/loop vs /goal in Claude Code: The Real Difference
Claude Code /loop vs /goal confuses everyone. /goal is the self-correcting loop that fixes code; /loop is a scheduler that polls. Here's each in its place.
from: Claude Code Loop Engineering
Build a Self-Correcting Loop in Claude Code
A Claude Code self-correcting loop fixes a failing test and stops on green by itself. Build one in 10 minutes with /goal, a turn cap, and the test as oracle.
from: Claude Code Loop Engineering
Agent Loop vs Single Prompt vs Fan-Out: When to Use Each
When to use an agent loop vs a single prompt vs fan-out comes down to task shape. A 3-question test routes any coding task to the cheapest tool that fits.
from: Claude Code Loop Engineering
Claude Code Hooks: Wire a SubagentStop Hook
Wire a Claude Code SubagentStop hook to a log file and tail it live, so you catch hung, runaway, and suspiciously-fast subagents before they ship bad code.
from: Claude Code Subagents and Hooks
Run Claude Code Subagents in Parallel Without Clobbering
Multi-agent development with Claude Code clobbers files when workers share a checkout. Use git worktree isolation and claude --bg to fan out workers safely.
from: Claude Code Subagents and Hooks
Set Up Claude Code Subagents: Three, Not Forty-Seven
Install Claude Code subagents the right way: three scoped agents (planner, coder, reviewer) wired to a main-thread planner, running end-to-end on your repo.
from: Claude Code Subagents and Hooks
Why Claude Code Subagents Burn So Many Tokens
Claude code subagents cost up to 85% of a heavy session. Route workers to cheaper models, audit the env var that undoes it, and cut the subagent bill 30%.
from: Claude Code Subagents and Hooks
Tool, Skill, or Subagent? The Claude Code Decision
Stop defaulting to a subagent. A four-axis Claude Code framework routes logic to an inline prompt, a tool call, a skill, or a subagent by cold-start cost.
from: Claude Code Subagents and Hooks
Claude Code Browser Automation Beyond Code
Claude Code browser automation with Playwright MCP: drive dashboards, scrape data, and monitor pages using the accessibility tree, not brittle screenshots.
from: Master Claude Code: 60 Tools You're Not Using
Stop Claude Code From Nuking Production
Claude Code production safety in 5 layers: permission deny rules, CLAUDE.md guardrails, a credential-scanning hook, a review gate, and the OS sandbox.
from: Master Claude Code: 60 Tools You're Not Using
Claude Code for Teams: Share One Config
Claude Code team setup: commit a shared .claude/ directory so every developer inherits your rules, safety boundaries, and MCP servers from one git clone.
from: Master Claude Code: 60 Tools You're Not Using
How Claude Code Actually Works: The Tool System
Claude Code architecture and tools, explained: every prompt fires a named tool call. Map Read, Edit, Grep, Bash, Agent, and MCP, then prompt to hit first try.
from: Master Claude Code: 60 Tools You're Not Using
How to Make Money with Claude Code: 4 Real Paths
How to make money with Claude Code: four income paths with real rate ranges, the deliverable each buyer pays for, and the first move to make this week.
from: Master Claude Code: 60 Tools You're Not Using
Build a Web App With Claude Code (No Hand-Coding)
Go from empty folder to a deployed live-data dashboard in nine prompts and zero hand-written code. The Claude Code build, with times and the bugs to expect.
from: Claude Code: Ship 12 Real Projects in 30 Days
How to Block Claude Code From Reading Your Secrets
The .claudeignore file is a myth that leaves your secrets exposed. Block Claude Code from reading .env, SSH keys, and cloud creds with permissions.deny rules.
from: Claude Code: Ship 12 Real Projects in 30 Days
Claude Code vs Claude Chat vs the API: Which to Use
Three products, one name, totally different jobs. When to use Claude Code, Claude Chat, the API, and Cursor, with current per-token pricing for each model.
from: Claude Code: Ship 12 Real Projects in 30 Days
What Claude Cowork Is, and How to Run Parallel Sessions
Claude Cowork is not how you run multiple Claude Code sessions. Here's what Cowork actually is, plus the 3-agent parallel pipeline that ships working code.
from: Claude Code: Ship 12 Real Projects in 30 Days
Install Claude Code on Windows Without WSL
You do not need WSL to run Claude Code on Windows. Here's the native PowerShell install, the paid plan you actually need, and your first session step by step.
from: Claude Code: Ship 12 Real Projects in 30 Days
The 5 Best Claude Code Skills Every Developer Builds
The 5 best Claude Code skills for developers: Stop Slop, Testing, Documentation, Git Commits, Code Review. Copy-paste SKILL.md files and the trigger for each.
from: Claude Code Skills
Claude Code Hooks Tutorial: Automate Code Review
A Claude Code hooks tutorial using the real settings.json schema: wire a PostToolUse hook to a review skill. No fictional git-event or blocking fields.
from: Claude Code Skills
How to Build a Self-Improving Claude Code Skill
Build a self-improving Claude Code skill the honest way: a human-gated workflow where Claude proposes diffs you approve, plus the $40 runaway to avoid.
from: Claude Code Skills
Claude Code Skills Not Working? 7 Fixes
Claude Code skills not working? Seven failure modes with the exact fix command for each, built on the real directory + SKILL.md spec. ~70% resolve at step 1.
from: Claude Code Skills
How to Build a Micro-SaaS with Claude Code in a Weekend
Go from idea validation to live Stripe payments in 10 hours using Claude Code. Exact prompts, real API costs ($15-30), and the honest revenue timeline.
from: Claude Code: Ship 12 Real Projects in 30 Days
How to Set Up CLAUDE.md for Production Projects
The 4-layer CLAUDE.md configuration system that cut feature build time from 34 to 16 minutes. Templates, hooks, custom skills, and the 5 mistakes to avoid.
from: Claude Code: Ship 12 Real Projects in 30 Days
How to Connect Claude Code to Databases and APIs with MCP
Wire 3 MCP servers to Claude Code and trigger a cross-service workflow in one prompt. Full GitHub, SQLite, and Fetch setup with a debugging checklist.
from: Claude Code: Ship 12 Real Projects in 30 Days
How to Cut Claude Code Costs by 50% with Context Management
Real Claude Code spend data from 30 days of building a SaaS app ($98.20 total). 5 context tricks that halve your token bill plus a .claudeignore template.
from: Claude Code: Ship 12 Real Projects in 30 Days
How to Make Vibe-Coded Projects Production Ready
The 6-round workflow that turns a Claude Code prototype into a deployed production app with tests, CI/CD, and error handling. Copy-paste prompts included.
from: Claude Code: Ship 12 Real Projects in 30 Days