Aug 24
Implementation brief for OpenAI's August 21, 2026 API change: one key from a Global-geography project can now select the global, US, or EU domain per request. Covers account and retention-control prerequisites, why storage and processing remain separate support dimensions, the endpoint-model-feature tuple that must be allowlisted, current EU limitations such as Responses background mode, and negative tests that prevent a later feature or model change from bypassing the routing policy.
Aug 23
Migration brief for the Claude Platform release notes dated August 19, 2026, which took computer use out of beta as computer_toolset_20260801 and launched browser_toolset_20260801 the same day: the five parameters the GA entry now rejects with an invalid_request_error, why enable_zoom becomes a configs entry on a member that is enabled by default, how dropping display_width_px moves coordinate scaling into the screenshot you return, the batch-action rule to run blocks in order and stop at the first failure, the two different halt strings the two toolsets use, the supported-model and platform list that makes this a model migration for anyone pinned to Sonnet 4.6, and when read_page, find and element references beat clicking pixels.
Aug 22
Migration brief for v1.0.0 of the anthropic Python package, tagged August 20, 2026: the dependency order behind the five breaking changes, why the Python 3.10 floor ships as its own commit, what the httpx2 move does to OpenTelemetry, Sentry, respx, pytest-httpx and vcrpy and where httpx2.alias_httpx() has to be called, when to delete a sampling parameter versus route it through extra_body, the missing await on async raw-response reads that fails somewhere other than the call site, the ValueError AnthropicBedrock now raises without a region, and which parts /claude-api upgrade python handles versus which still need a decision.
Aug 21
Operations and security brief for the marketplace authentication seam added in Claude Code 2.1.238: choosing catalog-level versus entry-level helpers, minting read-only short-lived headers, preserving command disclosure and the default-no install/update confirmation, pinning archive bytes, and testing catalog add, plugin install, update, same-origin downloads, and authentication failure as separate paths.
Aug 20
News brief on the August 19, 2026 general-availability entries for the Files API, Agent Skills and the Skills API, and Claude Enterprise user management: which of the three beta headers changes the response when it is removed, the exact difference between the beta and GA list formats for GET /v1/files, why the SDK beta namespace means the header is not a string you can grep for, what the GA format adds in expires_in_seconds and ids[], and a six-step removal order that keeps the header usable as a rollback lever.
Aug 19
New article on making an interrupted autonomous run resumable: why a session transcript is not run state, the six-field checkpoint record, the three replay classes and why a model call is never re-derived, intent-before-effect commit ordering and the ambiguous crash window, history growth limits borrowed from Temporal and Step Functions, and a six-case kill test that asserts both the final result and the effect count.
Aug 18
Migration brief for the August 26, 2026 removal of the Assistants API: how to inventory by construct rather than by URL, the four-object mapping onto the Responses and Conversations APIs, why the recommended prompt-object step leads to a second migration before November 30, the retention asymmetry between responses and conversations, what changes for file search and code interpreter containers, and a reversible cutover order.
Aug 17
News brief on Claude Code 2.1.232 (August 13, 2026): a subagent_type "fork" subagent now inherits the full parent conversation and prompt cache by default. What a fork gets versus a non-fork subagent, where the cost assumption moved, where context can leak between subagents, and what to check in an existing subagent_type config.
Aug 16
New article on the provider-side prefix cache: the tools-system-messages render order and the 20-block lookback window, the silent invalidators in prompt assembly, the documented parameter changes that reach each cache level, breakpoints at stability boundaries, the non-monotonic per-model minimum prefix, and a two-call probe that reads the verdict out of the usage fields.
Aug 15
News brief on the three Compliance API endpoints added August 11, 2026, in beta for Claude Enterprise organizations: which configurations are in scope, what a local session transcript does and does not contain, the six-year default retention, and three habits to change in local agent sessions.
Aug 14
New migration brief for the three retiring Imagen 4 Gemini API endpoints: replace the request and response adapter, prove binary and storage behavior, evaluate a fixed prompt set, and canary the replacement before cutover.
Aug 13
New article on the application's own response cache: what belongs in the cache key, version-keyed invalidation instead of TTL, separate policies for errors and empty results, stampede control, what part of a streamed response is storable, and a runnable cross-identity isolation probe.
Aug 12
New article on span-per-operation instrumentation, trace propagation, provider request ids, cache-aware token accounting, and a four-question acceptance drill.
Aug 11
New article on MCP resource binding, audience validation, separate upstream credentials, per-client consent, and adversarial authorization tests.
Aug 10
New article on stable operation identities, persistent idempotency records, reconciliation after ambiguous timeouts, and failure tests that prove retries do not repeat an external side effect.
Aug 9
New article on securing autonomous AI agents by using isolated execution environments, strictly enforcing least privilege through scoped API keys, and requiring human-in-the-loop approval for destructive or high-risk operations.
Aug 8
New article on replacing cloud AI API calls in CI with open-weights models run on the runner itself: sizing a 7B-8B model against the RAM your repository visibility actually grants, starting Ollama as a background service in the pipeline, querying the local endpoint without API keys or egress, and proving isolation by cutting outbound internet access and re-running the review step.
Aug 7
New article on building a technical cost model for your AI architecture, covering vector databases, orchestration, and observability tracing before you launch.
Aug 6
New article on releasing AI-written changes safely: binding a change to a feature flag with a percentage rollout, a fast kill path that does not require a redeploy, per-side telemetry, and a mandatory expiry date so flags never become permanent technical debt.
Aug 4
Updated Queue migration intent split
Retitled and clarified the two queue migration articles: one creates a queue by extracting synchronous HTTP work; the other migrates an existing queue without losing stored work. Removed a duplicate Weekend Build Part 1 search record.
August 2026
Aug 3
New Production AI guide for turning model calls into bounded application workflows: one end-to-end deadline across queueing, attempts, and fallbacks; an application-owned error taxonomy; deadline-aware exponential backoff with jitter; separate limits for request rate, tokens, concurrency, queue size, and tenant fairness; durable operation IDs and reconciliation for unknown side-effect outcomes; scoped circuit breakers and contract-compatible degraded routes; end-to-end traces for logical operations; and deterministic failure tests for rate limits, server errors, stalled or interrupted streams, duplicates, overload, cancellation, and fallback behavior.
Aug 2
New article on moving synchronous HTTP workloads to asynchronous queues and background workers with AI: payload isolation with minimal metadata references, mandatory idempotency keys and state transition locks, distinguishing transient errors from fatal errors for dead-letter queue (DLQ) routing, frontend polling and state visibility rules, and verification runbooks for queue backpressure and cutover.
Aug 2
New vibe coding guide for the point where a personal app becomes shared: separating authentication from authorization; giving every shared record a workspace boundary; modeling memberships instead of a global admin switch; turning viewer, editor, admin, and owner roles into one explicit capability matrix; enforcing the workspace and permission check where data is accessed rather than through hidden buttons; handling expiring invitations, role changes, removal, and last-owner protection; asking AI for an enforcement map and staged backfill plan before it edits files; and proving isolation with direct API and data-layer tests across two workspaces.
Aug 5
New article on governing production AI agents with approval gates that bind a reviewer to one bounded action: establish the irreversible boundary, inspect a concrete preview, set evidence and expiry limits, verify the outcome, and prepare rollback or reconciliation before any side effect runs.
Aug 1
New vibe coding guide on the one thing AI cannot regenerate for you: rollback restores code, not data, so the three parts of an app — code, database rows, and uploaded files — each need their own copy; the two numbers to look up on your own plan today (how far back the platform's backups reach, and how much a gap between them would cost you); why paused free tiers put the backup inside the thing that disappears; a dated export stored outside the app's account, treated as production data rather than a file to paste into a chat; the routine before any AI-driven data change, including reading the WHERE clause and running the count first; and the restore drill into an empty project that reveals the empty export, the separately stored auth users, and the bucket nobody backed up.
July 2026
Jul 31
New article on performance work with AI, treating it as a measurement problem rather than a prompting problem: turning "it feels slow" into a reproducible baseline with percentiles, dataset, environment, and cache state; locating the bottleneck with a profiler, explain plan, or trace before accepting any suggestion; writing down the target number and the complexity, memory, staleness, or write cost you are willing to pay for it; pasting the profile instead of the file and asking for ranked hypotheses with the measurement that would refute each one; the optimizations that cost more than they save, from caches without invalidation to N+1 replaced by one enormous join; and a re-measurement procedure that makes before and after comparable.
Jul 29
New Production AI guide on treating memory as governed application data rather than magical model state: separate turn state, working context, thread summaries, and durable facts; preserve provenance and confirmation state; compact long conversations without inventing decisions; expose consent, correction, temporary mode, and deletion controls; enforce tenant isolation and purpose-bound retrieval; propagate deletion to embeddings and caches; and test recall, non-recall, conflict, expiry, forgetting, and stored prompt injection.
Jul 28
New Production AI security guide for systems that process untrusted prompts, retrieved documents, uploads, and tool results: why the system prompt is not an authorization layer; how to separate instructions, data, and authority; narrow least-privileged tools with strict argument and resource checks; output validation at deterministic boundaries; secret and exfiltration controls; approval bound to the exact consequential action; and adversarial tests that assert no unauthorized side effect occurred.
Jul 27
News: Anthropic released Claude Opus 5 on July 24, 2026 at $5/$25 per million tokens — Opus 4.8's exact list price. What actually changed for developers: adaptive thinking now runs by default on requests that omit the thinking field, so max_tokens and token spend both need revisiting; the five-level effort dial becomes the primary cost control and the recommended starting point moved down from xhigh to high; disabling thinking at xhigh or max now returns a 400; the minimum cacheable prompt drops from 1,024 to 512 tokens and mid-conversation tool changes no longer invalidate the cache, while changing effort mid-conversation does; fast mode buys about 2.5x speed at twice the base price; and the launch benchmarks moved to suites that make cross-vendor comparison harder.
Jul 26
New Production AI guide on retrieval-augmented generation, treating it as a search problem rather than a prompting problem: isolating whether a wrong answer came from a missing, unretrieved, badly ranked, or misused chunk; chunking on document structure with the heading path carried into the text; pgvector versus a dedicated vector database, and why an embedding-model swap is a full reindex; hybrid keyword plus vector search with reciprocal rank fusion and reranking; a gold set that measures recall@k and includes questions the corpus cannot answer; citations and a tested refusal path; and access control as a metadata filter in the retrieval query rather than a prompt instruction.
Jul 25
New Vibe Coding guide on adding form validation: client-side validation for fast feedback, server-side validation for security, common patterns (required, format, length, type, relationships, uniqueness), what to ask AI, clearing errors when fields are corrected, and a pre-launch checklist.
Jul 25
Expanded the new guide with consistent validation timing, current password-policy guidance, accessible field errors and focus handling, direct server-bypass testing, and protection against account enumeration in uniqueness checks.
Jul 25
Updated the Amazon SES comparison for the pricing plans introduced July 21: new accounts start on Essentials, can switch to à-la-carte pricing, and no longer receive the old SES-specific free message allowance.
Jul 24
New Vibe Coding guide on sending transactional email safely: a hosted email provider (Resend, Postmark, Amazon SES) instead of self-managed delivery, keeping the API key server-side, authenticating the sending domain with SPF, DKIM, and DMARC, deriving the final recipient from your own trusted data so a send endpoint can't be turned into a spam relay, and separating transactional from marketing email.
Jul 20
New Vibe Coding guide on adding uploads safely: a hosted storage service (Supabase Storage, Cloudinary, or UploadThing) instead of writing files to your own server, provider-enforced private access instead of an unguessable URL, validating what a file actually is rather than its claimed name or type, and cleaning up files when their owning record is deleted.
Jul 19
New article on safer AI-assisted storage moves: inventory bytes, keys, metadata, URLs, access rules, transforms, and deletes; copy in restartable batches; verify content and behavior independently; reconcile live mutations; and retire the old store only after measured proof.
Jul 18
New Vibe Coding guide on adding login safely: a hosted auth provider (Supabase Auth, Clerk, or Firebase Auth) instead of custom password storage, provider-enforced per-user data access rather than a hidden link, a two-account isolation test, password reset and email verification, and a pre-launch checklist.
Jul 17
New article on safer AI-assisted queue changes: inventory stored work, map old and new producer-worker compatibility, preserve side-effect idempotency across retries, drain every queue state, and define recovery and replay gates before retiring the old path.
Jul 15
New Vibe Coding guide on adding payments safely: hosted Stripe Checkout instead of a custom card form, the prompt to ask for it, why the webhook (not the success page) should unlock the paid feature, test mode before live mode, and a pre-launch checklist.
Jul 15
News: a July 2026 field study of Microsoft's early rollout of Claude Code and GitHub Copilot CLI found roughly 24% more merged PRs among adopters, while showing why teams should measure adoption, retention, review burden, cost, and quality before expanding CLI-agent access.
Jul 15
New guide on instrumenting AI features for production: structured logging without leaking prompt content or secrets, OpenTelemetry tracing across multi-step agent pipelines, cost and quality-drift metrics, and building an incident-response dashboard around prompt and model changes.
Jul 15
New article on safer AI-assisted auth changes: inventory the trust boundary, describe the security delta, map live credential compatibility, stage accept-issue-observe-retire, and prove login, refresh, revocation, recovery, rollout, and recovery behavior.
Jul 14
New article on safer AI-assisted API changes: inventory consumers, describe the behavioral delta, map old/new client-server compatibility, stage add-migrate-observe-remove, and define contract proof, rollout gates, and recovery per phase.
Jul 13
New article on safer AI-assisted schema changes: establish current-state evidence, map old/new code compatibility, stage expand-backfill-switch-contract, verify data invariants, and define rollout gates and recovery per phase.
Jul 12
New article on safer AI-assisted dependency upgrades: verify the resolved version delta, build a breaking-change ledger from official documentation, map affected code, keep the diff focused, and define tests and rollback before implementation.
Jul 11
News: OpenAI made GPT-5.6 Sol, Terra, and Luna generally available on July 9 after a 13-day limited preview. GA pricing, ultra mode with four parallel agents, programmatic tool calling in the Responses API — and what the delay means for model availability planning.
Jul 10
New article on budgeting AI features when model pricing is promotional: model unit economics at list price, tag price-expiry dates, alert on cost per request, and decide the downgrade path before the promo window closes. Also adds Claude Sonnet 5 pricing to the verified facts reference.
Jul 9
New article with a practical pre-merge gate for AI-assisted pull requests: ten concrete checks for scope, validation depth, blast radius, observability, rollout, and rollback.
Jul 5
New long-tail article with 25 copy-ready code review comments for AI-assisted diffs, grouped by correctness, security, tests, scope/readability, and observability/rollback.
Jul 4
New article with a copy-paste template for scoping regression tests around an AI-assisted change: what changed, what could break, automated coverage, manual checks, and sign-off.
Jul 4
New article on a practical confidence ladder for AI-generated code changes: five verification levels, when each level is needed, and a reusable prompt to set validation scope before implementation.
Jul 3
New article with a minute-by-minute incident runbook for the first 30 minutes of an AI provider outage: detect and confirm, activate fallback, verify against quality/latency/cost/safety gates, then communicate and stabilize.
Jul 2
New article with a copy-paste PR template for AI-assisted pull requests, covering acceptance criteria, non-goals, edge cases, blast radius, and rollback, plus a rollout plan for getting a team to actually adopt it.
Jul 2
New article on preventing repeated AI architecture debates across sessions: a lightweight decision log format (decision, rationale, constraints, verification), when to update it, and a reusable prompt to keep future AI changes aligned with prior team choices.
Jul 1
New article with a practical risk matrix for AI-generated code changes: classify low, medium, high, and critical changes by blast radius, reversibility, coupling, required tests, and rollback evidence before merge.
Jul 1
New article on drilling AI model fallback before incidents: clear trigger conditions, quality/latency/cost/safety gates, a 30-minute monthly runbook, and rollback criteria to avoid outage-time guesswork.
June 2026
Jun 30
New long-tail article with copy-ready acceptance criteria examples for UI changes, API filters, database columns, authorization, refactors, regression tests, feature flags, production bugs, prompt changes, model fallback, and AI review checks.
Jun 30
New article on writing an AI agent's context file well: what belongs in it (commands, architecture, conventions, boundaries) and what to keep out (secrets, the whole codebase, stale rules), why short beats complete, and how to maintain it like code so the agent stops repeating the same wrong assumptions.
Jun 29
New article on defining acceptance criteria before AI implementation: required outcome, non-goals, edge cases, verification steps, and explicit stop conditions so review quality is based on concrete pass/fail checks rather than opinion.
Jun 29
New news item: OpenAI previewed GPT-5.6 (Sol, Terra, Luna) on June 26, 2026. Sol is a new state of the art on Terminal-Bench 2.1 and adds an ultra mode that runs subagents, but access is limited to a small set of partners after the U.S. government reviewed the launch. Covers what it means for how you build — and why the most capable model isn't always the one you can build on.
Jun 28
New article on running two or three AI coding agents at once without losing control: isolate each task on its own branch or worktree, write a one-line brief per agent, keep a single human reviewer and one merge queue, and recognize when parallel work actually slows you down.
Jun 26
New news item: Cognition retired the Windsurf brand on June 2, 2026, relaunching it as Devin Desktop with an Agent Command Center and ACP support for Codex, Claude Agent, and OpenCode. Cascade, Windsurf's local agent, remains available through July 2026. Also corrects an outdated "acquired by OpenAI" claim in the AI Developer Tools guide and the team workflow guide.
Jun 25
New article on making AI coding sessions resumable: capture goal, current state, decisions, changed files, open risks, validation status, and the next prompt before handing off or stopping work.
Jun 24
New article on giving AI debugging tasks it can actually act on: observed behavior, expected behavior, reproduction path, evidence, constraints, diagnosis before patching, and smallest safe fix boundaries.
Jun 23
New Vibe Coding guide on why AI costs spike: the three billing models (free cap, metered subscription credits, pay-as-you-go API key), what drains usage fastest, current free-tier limits, and how to set a spending limit before connecting an API key. Cites GitHub's June 1, 2026 move to usage-based Copilot billing as a concrete example of the industry shift.
Jun 22
New news item: Fable 5's no-extra-cost subscription window ends June 22, but Anthropic still lists the model as unavailable after its June 12 suspension. If access returns after June 23, subscription use requires usage credits.
Jun 18
New article on AI model availability risk: why models get pulled, deprecated, or export-restricted, and how to build with a config-driven model choice, a validated fallback, and a multi-model eval suite.
Jun 17
New article on using a plan-before-code workflow with AI: clarify intent, likely files, non-goals, risks, validation, and rollback before accepting generated edits.
Jun 14
New news article on OpenCode's rapid release cadence, its provider-agnostic BYOK approach, and how it compares to Claude Code and Codex CLI using official Terminal-Bench data.
Jun 13
New article with a practical framework for deciding how much code to let AI edit at once, using reviewability, tests, rollback cost, and production risk as the budget.
Jun 7
New article on why narrow prompts, small diffs, and focused validation loops usually outperform broad rewrite requests in AI-assisted coding.
Jun 6
New article with a practical six-step merge checklist for AI-generated code: behavior, tests, contracts, edge cases, security, and observability.
Jun 4
New news article covering Claude Opus 4.8's achievement of scoring 88.6% on the SWE-bench Verified benchmark for autonomous bug-fixing.
Jun 2
New Vibe Coding guide on preparing a project snapshot, one-page brief, user-flow checklist, sensitive-area notes, and a stabilization-first developer handoff.
Jun 1
New article analyzing OpenAI's latest engineering case study on self-improving agents, practitioner feedback, and Codex-driven eval loops.
May 2026
May 30
How to build reliable agent pipelines: the tool use loop, orchestrator–subagent patterns, parallel execution with concurrency limits, loop termination guards, tool input validation, and error recovery strategies. Includes working TypeScript throughout.
May 29
New section covering AI tools, model releases, and platform updates — filtered for developers and vibe coders. Three launch articles: Claude Opus 4.8 (1M context, adaptive thinking, Dreaming), the multi-agent coding stack (Cursor, Claude Code, Codex, Zed), and Google I/O 2026 developer roundup (Gemini 3.5 Flash, Antigravity 2.0, Managed Agents API, WebMCP).
May 29
End-to-end streaming guide: Anthropic SDK stream events, proxying SSE through an Express backend, consuming streams in React, abort on disconnect, WebSockets vs SSE comparison, buffering and backpressure, and streaming with tool use mid-response.
May 28
When code genuinely can't leave your machine: Ollama, LM Studio, Jan, and which models (Qwen2.5-Coder, DeepSeek, Llama 3.3) are worth running on consumer hardware. Covers VS Code integration via the Continue extension and private cloud as a middle option.
May 27
How to estimate and control AI feature costs before they surprise you in production: Haiku/Sonnet/Opus selection heuristics, prompt caching break-even, max_tokens discipline, pre-ship cost estimation formula, usage logging per call, and spending alerts.
May 26
What to scrub before using cloud AI: hardcoded credentials, PII in logs, business logic IP, and customer data. Covers automated scanning with TruffleHog and Gitleaks, a sed-based log-redaction script, customer data anonymization patterns, and when to switch to a local model instead.
May 26
Site Social preview images for guides, manual, and vibe coding
Created representative SVG Open Graph images for the manual series, vibe coding series, Weekend Build series, and four priority guides (Claude API, AI Field Guide, Prompt Library, VS Code & Cursor). Pages in these sections now show a descriptive social card instead of the generic site image when shared. Also added a dedicated image for the auth refactoring case study.
May 26
Site Accessibility improvements — tables, copy buttons, focus
Added
scope="col" to all table header cells across seven pages for correct screen reader navigation. Prompt Library copy buttons now carry descriptive aria-label values and a document.execCommand fallback for environments where the Clipboard API is unavailable (HTTP, older browsers). Confirmed focus indicators, colour contrast, and code block overflow handling all meet accessibility standards.May 26
Site Search index expanded to 62 entries with section context
All 20 manual chapters and all 5 Weekend Build parts are now indexed and searchable. Search results show the content type and section in the result label — for example "Manual · Ch. 11" or "Weekend Build · Part 3". Key problem-oriented terms (auth, CORS, SQL injection, XSS, rollback, accessibility) now reliably surface the relevant chapters.
May 26
Site Homepage reading paths and filter labels
Added a "Where should I start?" block on the homepage with four reading paths for different goals: New to AI dev, Fix & review code, Build AI features, and Improve your workflow. Filter labels updated from "Tutorials" to "Projects" and "By Domain" to "By Stack" to better reflect how visitors think about the content.
May 26
Site QA path cross-links and manual companion notes
Testing, Code Review, and Debugging guides now carry a shared "quality assurance path" note and cross-link to each other so the three guides work as a cohesive sequence. Manual chapters that have a companion standalone guide (Chapter 5 → Debugging, Chapter 9 → Testing) now link to it with a short context note.
May 29
A practical guide for vibe coders who have a working app but need to understand what AI actually built. Covers mapping the project structure, finding entry points, tracing user flows, reviewing files one at a time, spotting risky shortcuts, and knowing when to ask a developer for help.
April 2026
Apr 25
A concrete guide for when an app almost works but AI has introduced bugs, strange state behavior, broken auth flows, or deploy issues. Covers diagnosis, targeted prompting, and when to start over.
Apr 25
A practical workflow for using AI at every stage of code review: self-review before the PR, catching regression risks and security issues, generating test ideas from a diff, and writing constructive review comments. Includes a 7-prompt copy-paste library.
Apr 25
A practical article about why AI-generated code feels fast early on but can become brittle when requirements, edge cases, tests, integration, and maintenance arrive.
Apr 25
Site Representative article social images
Added dedicated PNG social preview images for all article pages and updated article metadata so Open Graph, Twitter, and generated JSON-LD use page-specific visuals instead of the generic site image.
Apr 22
Site EU-standard cookie consent defaults
Updated the cookie banner to explicit opt-in defaults for non-essential cookies. Analytics and advertising are now off by default, with Accept all / Reject all / Customize choices and granular saved preferences.
Apr 22
Site Full-site review and refresh completed
Ran a full pass across the entire site: content quality fixes, consistency updates, link/SEO cleanup, mobile polish on high-risk pages, and process improvements including a pre-deploy check script and recurring review cycle.
Apr 22
A practical decision framework for when AI belongs in a product feature, when ordinary code is better, and how to keep probabilistic systems away from decisions that need deterministic control.
Apr 22
A practical comparison of Claude, Bolt, Lovable, Replit, and v0 — what each tool is optimized for, where each falls short, a decision framework for choosing, and guidance on when you've outgrown a tool.
Apr 22
A practical guide for production AI quality: golden datasets, prompt regression in CI, quality gates before release, observability metrics, and incident playbooks for fast rollback and recovery.
Apr 16
For developers building products on top of Claude. Covers system prompt design, context management, prompt caching, cost optimization by task type, streaming with Server-Sent Events, tool use / function calling, and production patterns including structured logging and truncation handling.
Apr 16
The investigation workflow for debugging — reading error messages and stack traces before prompting, establishing last working state with git diff, isolating failures, forming hypotheses. Covers async/race conditions, type errors, performance bugs, and environment bugs. Includes a 7-prompt copy-paste library.
Apr 16
The guide between "it's live" and "this approach has limits" — adding features safely to a live app, adding a database, handling user feedback, recovering when something breaks on live, and keeping things healthy over time.
Apr 16
Concrete AI prompts for Python development. Pydantic-first prompting, FastAPI endpoints, SQLAlchemy 2.x async patterns, pytest with AsyncMock, and Django ORM. Includes a copy-paste prompt library with 8 templates.
Apr 16
Update Homepage — guide card title and new guides added
"The Starting Point" renamed to "The Complete Guide to AI-Assisted Development" for clarity and searchability. New guides added to the homepage grid.
Apr 14
How to use AI to write GitHub Actions workflows, generate production Dockerfiles, automate code review in CI, and build deployment pipelines. Includes working examples for CI, staging deploy, production deploy with approval gates, and automated PR review.
Apr 14
New Guide filter bar on homepage
The "For Developers" tab now has a filter bar: All / Foundations / Workflow / Tutorials / By Domain / Team. Filters guide cards client-side with no page load.
Apr 14
Update AI Developer Tools
Updated model IDs to current versions, noted Windsurf's acquisition by OpenAI, replaced deprecated ChatGPT plugin references with GPTs, updated Cursor rules file guidance to the new .cursor/rules/ directory approach, and added Copilot agent mode.
Apr 14
Update Related guides cross-links added to all guides
Every guide now has a "Related Guides" section pointing to natural companion content. Sharpened the card descriptions for aiteamlead and aiteamwork to make their distinct audiences clear.
Apr 14
How to share prompt strategies, maintain shared context files, integrate AI into PR reviews, and onboard teammates in a codebase where AI is already part of how things get built.
Apr 12
Honest guide to recognizing when a project has outgrown AI-only building — and how to hire and communicate with a developer when you don't know code.
Apr 10
Code review in AI-first teams, standardizing team workflows, building an organizational prompt library, and using AI as a design partner for architecture decisions.
Apr 9
Step-by-step deployment guide for vibe coders: HTML files via Netlify Drop, plus Bolt, Replit, Lovable, and v0. Covers custom domains, browser storage vs. databases, and what surprises people after going live.
Apr 7
Practical workflow for schema design, migrations, query optimization, and safely evolving production databases with AI support.
Apr 6
New Testing with AI
Practical guide to writing better tests faster with AI assistance: unit tests, integration tests, TDD workflows, edge case generation, and mocking patterns.
March 2026
Mar 23
53 copy-paste prompts across 10 categories: debug, review, test, refactor, generate, explain, document, design, security, git. Searchable and filterable.
Mar 21
Case study article about building the entire site with Claude over 6 weeks. What worked, what went wrong, what to do differently.
Mar 20
New How AI APIs Work
Article explaining APIs, tokens, pricing, and the request-response pattern behind every AI tool.
Mar 20
Step-by-step walkthrough building a movie watchlist app in one afternoon. Every prompt, revision, and bug shown.
Mar 17
Perspective article on what's changing, what's not, and who benefits most from AI-assisted development.
Mar 16
Common traps for non-developers building with AI, with before/after prompt examples for each mistake.
Mar 15
7-step learning path from first AI conversation to building real apps. No coding experience required.
Mar 15
Plain-language explanation of the training process — why AI hallucinates, writes outdated code, and why context matters.
Mar 14
Comprehensive guide for non-developers building software with AI. Tools, techniques, limits, and a starter project.
Mar 14
Deterministic vs probabilistic systems, rules vs data, and why debugging changes completely.
Mar 14
Site Vibe Coding tab and Articles tab added
Homepage restructured from a single list to three tabs: For Developers, Vibe Coding, and Articles.
Mar 13
Tutorial building a complete bookmark manager API — from OpenAPI spec through Express, TypeScript, testing, Docker, and deployment.
Mar 11
Type-first prompting, component patterns, state management prompts, and 8 copy-paste prompt templates.
Mar 10
Editor configuration, keyboard shortcuts, project rules files, and the editing habits that matter.
Mar 9
Five-phase approach: comprehension, test scaffolding, incremental transformation, pattern modernization, validation.
February 2026
Feb 24
Claude Code, Aider, shell patterns, tmux workflows, and automation scripts for terminal-native developers.
Feb 22
Eight resistances addressed with concrete solutions. Pragmatic 4-week adoption path.
Feb 22
Site About, Contact, and Privacy pages expanded
Pages rewritten with more substantive content for E-E-A-T and AdSense readiness.
Feb 20
Nine failure modes with real examples, fixes, and a printable detection checklist.
Feb 9
5-part tutorial series. Build Taskflow (React + TypeScript + Express + SQLite) with 10 milestones.
Feb 4
Chat interfaces, editor integrations, CLI tools, APIs. Setup, comparison, and recommendations.
Feb 1
The complete manual. Prompting, pair programming, system design, testing, security, cognitive workflows, and meta-methodology. Four tiers from foundations to mastery.
Feb 1
Site AI Programming Manual launches
Site goes live with the 20-chapter manual, dark editorial design system, and startpage.