Skip to content
· 9 min read

Claude Fable 5 Opens a Short Codebase Audit Window

Claude Fable 5 is available in Claude plans until June 22. webvise used the window for security and architecture audits across active client projects.

Topics
AI AgentsAIAutomationSecurity
Share

Claude Fable 5 is most useful right now as a codebase audit model. On June 10, 2026, webvise used it in read-only review loops across every active client project with repository access: security exposure, architecture drift, missing tests, and scoped remediation plans.

The launch story is bigger than model intelligence. The useful thing is the temporary access window.

Fable 5 is available in Claude plans until June 22, then usage credits start on June 23 unless Anthropic extends capacity. This article shows the audit shape webvise ran, where the model fits, and how teams can use the same window without handing an agent write access to production code.

  • Fable 5 is an audit and planning model first. Anthropic lists a 1M-token context window, 128k max output, and use cases around days-long coding and knowledge work.

  • webvise used the June 10 window across active client projects. The pass stayed read-only and produced findings, risk tables, and task plans before any source change.

  • The strongest-model pattern is planner first. The open-source `/improve` pattern spends the most capable model on repo comprehension, findings, prioritization, and self-contained plans for cheaper executors.

  • The June 22 deadline matters. Claude plan access creates a short audit sprint before Fable moves to usage credits on June 23.

  • Retention changes routing. Fable requires 30-day data retention for safety monitoring, so secrets, production data, and private customer records stay out of context.

If your team wants the same audit shape before the access window changes, webvise's AI consulting service can turn one repo and one workflow into a reviewed remediation plan.

The useful window closes on June 22

Anthropic launched Claude Fable 5 on June 9, 2026 as its most capable widely released model. The public Fable page frames it around days-long, complex, asynchronous work, with Claude Code and managed-agent use cases called out directly.

That makes the next 12 days unusually practical. Teams with Claude plan access can spend the window on inventory, audit, and planning work that produces reviewable artifacts: findings, task plans, migration maps, and risk registers.

FactCurrent detailOperational consequence
Claude plan windowAvailable until June 22Run audits now, before usage credits start on June 23
Model ID`claude-fable-5`API teams can test the same model in controlled harnesses
Context1M tokensLarge repos and source packets can be reviewed in fewer passes
Max output128k tokensThe model can return long plans, risk tables, and file-level notes
Price$10 input and $50 output per million tokensMulti-hour runs need cost caps and logs
Data retention30-day retention for safety monitoringSensitive client material needs routing rules before upload

What webvise ran on June 10

The audit pass had one rule: read, reason, write findings, and leave source untouched. Each project got the same review packet so results could be compared without turning the day into a pile of unrelated model transcripts.

  • Repo map: apps, packages, route handlers, auth boundaries, data models, deployment scripts, and test commands.

  • Security pass: auth checks, role boundaries, environment handling, uploads, webhooks, rate limits, forms, and third-party API usage.

  • Architecture pass: duplicated domain logic, unclear package boundaries, cache invalidation, stale TODOs, brittle integrations, and migrations without ownership.

  • Delivery pass: missing tests, slow scripts, docs drift, localization gaps, visual QA risk, and deployment steps that rely on memory.

  • Plan output: file paths, current behavior, proposed change, validation command, reviewer, and stop condition.

A multilingual marketing codebase produced a typical finding: route and sitemap coverage were weaker than the localized page structure. Fable did not patch it. The useful output was a small test plan with exact route families to cover.

A workflow application produced a different finding: notification logic needed duplicate-submit and idempotency tests before any agent touched the surrounding queue code. That is the kind of result a senior engineer can accept, reject, or turn into a ticket in minutes.

The `/improve` pattern is the right mental model

The most useful public pattern for Fable is the one behind `shadcn/improve`: use the most capable model to study a codebase, audit it across correctness, security, performance, tests, technical debt, dependencies, developer experience, docs, and product direction, then write plans that cheaper agents or humans can execute later.

That shape matters because the plan is the expensive artifact. Good plans include file paths, current-state excerpts, repo conventions, verification commands, expected outputs, out-of-scope boundaries, and stop conditions for anything that does not match the audit.

Model jobBetter use of Fable 5Review gate
Large repo understandingMap the system and rank the highest-risk areasEngineer checks cited files before planning work
Security reviewFind exposure patterns and missing testsHuman triage decides which findings become tasks
Architecture reviewExplain coupling, duplication, and migration riskOwner accepts the target shape before edits
Execution planningWrite self-contained task files for smaller modelsEach task has commands and expected output
Branch reviewAudit only the changed surface before mergeReviewer compares findings against the diff

webvise adopted that shape for the June 10 audit day. Fable spent most of its budget on comprehension, edge cases, and plan quality. Execution stays bounded, reviewed, and cheaper.

What the audits actually look for

Security here means exposure inventory: where data enters, where permissions are checked, where external systems write back, and where a missing test could let a broken assumption ship.

AreaWhat Fable reviewsUseful output
Auth and permissionsMiddleware, route handlers, server actions, role checks, admin pathsPaths that need negative tests or stricter guards
Secrets and data flowEnv reads, logging, analytics, uploads, webhook payloadsPlaces where data could leave the intended system
ArchitectureDomain duplication, package boundaries, async jobs, cache invalidationRefactor plan with file evidence and a small first step
ReliabilityTests, build scripts, queues, deployment paths, monitoringCommands that prove the fix worked
UX riskForms, empty states, localized routes, mobile breakpoints, screenshot driftQA checklist and screenshots to capture before release

This is also where webvise's AI automation service connects. A finding that appears in 3 projects is usually a workflow problem, not a one-off bug: recurring report generation, repeated QA checks, stale handoff docs, or manual release review.

Privacy and review gates decide the route

Fable's 30-day retention requirement changes the default route for client work. A useful audit can still happen, but the packet needs hard boundaries before it reaches the model.

  • Keep secrets out. Credentials, private customer records, production exports, and raw analytics stay outside the model context.

  • Use read-only checkouts. The first pass produces findings and plans, not commits.

  • Log the run. Record model, date, token budget, files inspected, commands run, and findings accepted.

  • Gate sensitive actions. Permission changes, billing actions, email sends, production writes, and data deletion stay human-approved.

  • Keep rejected findings. False positives are useful if the reason is recorded and the next audit can skip them.

The goal is evidence, not autonomy theater. A good audit leaves behind a short list of issues with enough file-level proof for an engineer to move quickly.

A client-project audit template

Use the June window for one day of concentrated review. The template below works for a Next.js app, a WordPress migration, an internal tool, or an AI workflow.

StageInputOutput
Repo mapREADME, package scripts, app tree, env schema, deployment notesSystem map and unknowns list
Security passAuth paths, API routes, forms, uploads, webhooksFindings ranked by impact and evidence
Architecture passPackages, shared utilities, data models, integrationsCoupling and migration risks with file paths
Test passUnit, integration, e2e, lint, typecheck commandsMissing coverage and failing verification paths
Plan writingAccepted findingsSelf-contained tasks with commands, expected output, and stop conditions
Human triagePlans and evidenceApproved, rejected, or parked remediation list

This is why agent instructions matter. The better the repo contract, the better the audit. The production version is covered in the AGENTS.md template article, which shows what should live in the file before agents touch a serious codebase.

What this means for webvise projects

The June 10 audit changed prioritization more than code. Some projects need security hardening tasks, some need architecture cleanup, and some only need better tests around the pieces that already work.

Fable 5 is valuable when a team already has repos, tests, scopes, and review habits. The model gets weaker when the surrounding process cannot prove anything.

webvise is using the Fable window to turn client-project audits into scoped remediation plans, then into reviewed fixes. For a codebase, website, or AI workflow that needs the same treatment, book a project call with one repo and one workflow that feels expensive to maintain.

Sources

SourceURL
Claude Fable pagehttps://www.anthropic.com/claude/fable
Claude model docshttps://platform.claude.com/docs/en/about-claude/models/overview
Availability reporthttps://www.businessinsider.com/anthropic-claude-fable-5-mythos-class-model-release-2026-6
shadcn/improvehttps://github.com/shadcn/improve

Webvise practices are aligned with ISO 27001 and ISO 42001 standards.