Friday, 22 May
4 min read · 716 words

  • Workflow — Senior dev's 15-step safe vibe coding system from a phone: plan mode before any code, git commit after each plan completes, spin 3 parallel subagents (architecture critic, security scanner, test auditor) before touching files — 1,444 upvotes, 109 comments | r/ClaudeAI | https://www.reddit.com/r/ClaudeAI/comments/1tj2i90/

1. Claude Code v2.1.146 — <code>/simplify</code> is now <code>/code-review</code>, MCP pagination fixed

  • Released overnight: /simplify is renamed /code-review with an optional effort level (/code-review high for a thorough pass), and a silent data-loss bug fixed — paginated MCP resources/list, resources/templates/list, and prompts/list were silently dropping all items past page 1.
  • Also: CLAUDE_CODE_SUBAGENT_MODEL now forwards to child processes in multi-agent sessions, Windows PowerShell regression from v2.1.124 fixed, and backgrounded sessions no longer re-prompt for tool permissions you already granted.
  • Source: Claude Code Releases
  • Why it matters: If you use MCP servers with paginated resource or prompt lists, update now — you've been silently missing everything past page 1 in every previous version.
  • Verified

2. Show HN: Forge — Guardrails Take an 8B Model from 53% to 99% on Agentic Tasks

  • Python framework for self-hosted LLM tool-calling and multi-step agentic workflows — the headline claim is that adding Forge's guardrail layer takes a small 8B model from 53% to 99% task completion on their agentic benchmark, built with Claude.
  • Hit HN front page today at 666 points; 449★ today on GitHub Trending; Python, MIT licensed — pip install forge (confirm from repo README).
  • Source: Hacker News + GitHub
  • Why it matters: If the benchmark holds, you can run a fast cheap local model with Forge guardrails instead of paying frontier pricing for agentic workflows.
  • Emerging

3. Anthropic Is Paying xAI $1.25B Per Month for COLOSSUS Compute

  • SpaceX's IPO S-1 filing, published yesterday, reveals Anthropic signed Cloud Services Agreements with xAI for access to COLOSSUS and COLOSSUS II compute — $1.25B/month through May 2029, with a discounted ramp in May–June 2026.
  • The deal totals over $40B if it runs to term; either party can terminate on 90 days' notice.
  • Source: TechCrunch (via SpaceX S-1)
  • Why it matters: Anthropic's infrastructure is now deeply tied to Elon's COLOSSUS cluster, which shapes the compute capacity — and risk profile — behind every Claude API call your project makes.
  • Verified

  • anthropics/claude-plugins-official21,990★ — Anthropic's official, curated directory of high-quality Claude Code plugins; the canonical source for vetted plugins covering commands, agents, skills, hooks, and MCP/LSP servers. claude /plugin browse in-app, or browse at https://github.com/anthropics/claude-plugins-official

Before writing any code, run three parallel subagents to
stress-test this plan:

Subagent 1 — Architecture critic: What is the weakest
part of this design? Name the top two risks and one
stronger alternative approach.

Subagent 2 — Security scanner: What could a malicious
user exploit? Focus on auth, input validation, and
data exposure.

Subagent 3 — Test auditor: What failure modes does this
plan leave untested? List the three highest-risk scenarios
with no test coverage.

Plan: Add a CSV export endpoint — POST /api/export with
the user's email as confirmation, writes to S3, sends
a download link within 60 seconds.

Three-subagent plan review before touching any file — swap out the example plan for yours. Community source: https://www.reddit.com/r/ClaudeAI/comments/1tj2i90/ (tip #10, 1,444 upvotes)