← Back to all entries
2026-06-12 🧭 Daily News

Claude Corps Fellowship, Tokyo Workshop Repo & Safe-Mode Debugging

Claude Corps Fellowship, Tokyo Workshop Repo & Safe-Mode Debugging — visual for 2026-06-12

🧭 Anthropic Launches $150M Claude Corps Fellowship to Embed AI in US Nonprofits

Anthropic has committed $150 million to launch Claude Corps, a national fellowship that will place 1,000 early-career professionals inside U.S. nonprofits for 12-month paid placements starting October 2026. Led by President Daniela Amodei, the programme is structured around three partners: Anthropic funds and designs the curriculum, CodePath recruits, trains, and employs the fellows, and Social Finance handles measurement and administers $10,000 host grants. Announced publicly on June 11 with broad press coverage today, Claude Corps represents Anthropic's most tangible acknowledgement yet that AI-driven labour displacement is real — and that it has a direct responsibility to respond.

Who can apply and what fellows do

What fellows actually build

Fellows are not generic "AI helpers" — each placement has a defined scope. Published examples from early host partners include: building a multilingual case-intake Claude workflow for a legal-aid organisation; creating a grant-writing assistant for a community-health network; and automating donor-reporting pipelines for a conservation nonprofit. CodePath's training curriculum covers prompt engineering, CLAUDE.md configuration, MCP connector setup, and basic agentic workflow design — exactly the skills a non-technical nonprofit staffer needs to become a competent Claude deployer.

The subtext in the programme design

Dario Amodei's "Policy on the AI Exponential" paper (published June 11 alongside this announcement) explicitly describes a 5% labour-displacement tier that triggers "expanded worker retraining grants." Claude Corps is, in effect, Anthropic voluntarily running that programme before any government requires it — and building the operational muscle for a response that scales. For developers thinking about the long arc of where Anthropic is headed, the combination of the policy paper and Claude Corps on the same day is not a coincidence.

Claude Corps fellowship nonprofits Daniela Amodei CodePath labour displacement AI policy

🧭 Code with Claude Tokyo Workshop Materials Now Open-Source at anthropics/cwc-workshops

As promised during the Tokyo closing keynote, Anthropic has published all Code with Claude 2026 workshop materials in the anthropics/cwc-workshops GitHub repository under an Apache 2.0 licence. The repo covers every hands-on session from the San Francisco, London, and Tokyo stops of the conference — five complete workshop packages, each with a problem statement, starter code, worked solution, and a skill or MCP server you can drop straight into your own Claude Code setup.

What's in the repository

The most copy-pasteable artefact: rightmodel/

The rightmodel workshop ships a complete SKILL file that you can add to any Claude Code project in under five minutes. Running /rightmodel against your eval suite gives you a CSV with per-task costs, latency percentiles, and pass rates across every model you specify. Teams that have been manually checking "is Opus really worth it for this task?" now have an automatable answer.

The repository also includes the slide decks (PDF) and speaker notes for each session. All workshop code targets Claude Code v2.1.170+ and the Managed Agents API as of June 2026; both the CLAUDE.md in each sub-directory and the top-level README flag any version dependencies.

cwc-workshops Code with Claude Tokyo open source Apache 2.0 Claude Code skills Managed Agents workshop materials

🧭 Claude Code Gets Safe Mode and Fallback Model Chains — Two Features Every Production Team Needs

Claude Code versions 2.1.166–2.1.169 (shipped June 6–8) introduced two features that quietly solve the most common pain points teams hit when running Claude Code unattended: a --safe-mode flag that isolates configuration problems during debugging, and fallback model chains that keep a production pipeline alive through a transient model overload. Neither feature was headlined at the Tokyo conference, but both are worth understanding before you deploy agents into CI or background worker contexts.

Safe mode — turning "is it my config?" into a one-flag answer

Starting a Claude Code session with claude --safe-mode (or setting CLAUDE_CODE_SAFE_MODE=1) launches a completely clean session: no CLAUDE.md files are loaded, no plugins or skills activate, no hooks fire, and no MCP servers connect. The environment variable alternative is useful for injecting safe mode into background workers without changing your invocation script.

# One-off troubleshooting session
claude --safe-mode

# Or permanently in a test environment
export CLAUDE_CODE_SAFE_MODE=1
claude

# Partial safe mode — disable only hooks and MCP, keep CLAUDE.md
claude --safe-mode=hooks,mcp

The last form (comma-separated component list) is new in 2.1.169. Supported tokens are claude-md, plugins, hooks, mcp, and skills — useful for cases where you want to rule out a specific subsystem without going fully clean-slate.

Fallback model chains — surviving a transient overload

Claude Code 2.1.167 introduced a fallbackModel setting (in settings.json or per-session via --fallback-model) that specifies up to three backup models. If the primary model returns an overload error, Claude Code silently retries the current turn on the first backup. The session reverts to the primary model on the next turn — the fallback is scoped to a single turn, not the entire session.

// settings.json
{
  "model": "claude-fable-5-20261009",
  "fallbackModel": [
    "claude-opus-4-8-20260530",
    "claude-sonnet-4-6-20251022"
  ]
}
Two separate fallback systems — don't confuse them

fallbackModel handles availability errors (503 overloads). It is distinct from the safety classifier fallback introduced with Fable 5, which silently reroutes requests that trigger Fable 5's safety classifiers to Claude Opus 4.8. Safety classifier fallback is automatic and not configurable; fallbackModel is explicit and user-controlled. Both can fire in the same session without interfering with each other.

Also in this release window

Claude Code safe mode fallback model chains production resilience v2.1.169 debugging MCP
Source trust ratings ⭐⭐⭐ Official Anthropic  ·  ⭐⭐ Established press  ·  Community / research