REDDIT SIGNAL
- Workflow — FAANG engineer breaks down their actual Claude setup: parallel worktree sessions, sandboxed tasks, skills for context, manual review on everything — 1,037 upvotes, 199 comments of community best-practice responses worth scanning | r/ClaudeAI | https://www.reddit.com/r/ClaudeAI/comments/1t9fyns/
GITHUB TRENDING
- rohitg00/agentmemory — 604★ today (4,545★ total) — persistent memory for AI coding agents, built on three primitives (Worker/Function/Trigger), so your Claude Code sessions actually remember what they learned last time |
npm install agentmemory| https://github.com/rohitg00/agentmemory
TODAY'S ITEMS
1. Claude Code v2.1.139: /goal Command + Agent View (Research Preview)
- Anthropic shipped v2.1.139 today with two standout features:
/goallets you set a completion condition and Claude keeps working across turns until it's met (interactive,-p, and Remote Control modes all supported, with a live elapsed/turns/tokens overlay);claude agentsopens a new agent view showing every running, blocked, or completed session in one list. - Also in this release:
continueOnBlockhook option feeds rejection reasons back to Claude instead of stopping the turn;/mcpReconnect now picks up.mcp.jsonedits without a restart; subagent API requests now carryagent_id/parent_agent_idheaders for observability. - Source: GitHub Releases (Verified)
- Why it matters: Run
npm update -g @anthropic-ai/claude-codeand try/goal "pass all tests and fix linting errors"— Claude will keep iterating without you babysitting the session. - Verified
2. Claude Code Has Crossed from Tool to Platform
- The Anthropic Stack newsletter ran its sharpest piece yet today, documenting how multiple GitHub trending repos this week aren't using Claude Code — they're building infrastructure on top of it: a skill manager that auto-detects which skills a project needs and disables the rest (cuts token costs and speeds streaming), a Laravel wrapper for PHP devs, persistent agent state via Cloudflare Durable Objects, and a multi-specialised agent orchestration system.
- The analogy they make is direct: this is the same adoption curve PostgreSQL and Git took — utility → abstraction layer → the way everyone interacts with the underlying technology.
- Source: The Anthropic Stack
- Why it matters: If you're building workflows on Claude Code now, you're building on infrastructure that's attracting a developer ecosystem — which means tooling, reduced friction, and compounding returns on your investment.
- Verified
3. Shopify's River: Public-Only AI Agent Designed to Create a Learning Flywheel
- Simon Willison flagged Shopify CEO Tobias Lütke's post describing River, their internal coding agent — it operates only in public Slack channels, never DMs, so every interaction is searchable and anyone at Shopify can observe, contribute, or pick up the thread. Lütke calls it a "Lehrwerkstatt" (teaching workshop) and draws an explicit parallel to how Midjourney's Discord-only launch forced users to learn from each other's prompts, which he argues was central to its early success.
- Source: simonwillison.net / Tobias Lütke
- Why it matters: If your team uses Claude Code, defaulting all sessions to a shared channel (even a Slack thread) rather than private DMs replicates this flywheel — workflow patterns surface organically rather than staying siloed with individual users.
- Verified
YOUR STACK — UPDATES
- Claude Code v2.1.139 released today (see item 1 above for key changes). Update:
npm update -g @anthropic-ai/claude-code| https://github.com/anthropics/claude-code/releases/tag/v2.1.139
PROMPT OF THE DAY
Review my project directory and list every Claude Code
skill currently enabled. For each skill:
- State what it does in one plain sentence
- State whether this project actually uses it
(yes / probably not / definitely not)
- Suggest disabling any skill not needed by this project
Output as a table with columns:
Skill | What it does | Needed? | Recommendation
Original — not community-sourced. Based on the skill-manager pattern surfaced by The Anthropic Stack today (mrdenox109-nyx/skill-manager) — run this in Claude Code to audit your own setup before installing the automation. Use in Claude Code with your project directory open.
LANDSCAPE NOTES
r/LocalLLaMA (450 upvotes): A post titled "Openclaw is trending down and will disappear soon" — crossposted from r/OpenAI, turned out to be about an unrelated product. The comments corrected the confusion but it's a reminder that "OpenClaw" is being used as a synonym for Claude Code in parts of the internet (matches our synonym map). https://www.reddit.com/r/LocalLLaMA/comments/1t9urup/
HN front page this week: "Local AI needs to be the norm" at 1,670+ points and 650+ comments — biggest AI thread on HN today, not Claude-specific but reflects the growing pressure on cloud-only AI tools. https://news.smol.ai/issues/26-05-08-not-much/ (context via AINews)
OpenAI Codex also shipped a
/goalcommand this week (per AINews) for indefinite task pursuit — Claude Code and Codex are converging on the same long-running agent UX patterns simultaneously.