Sunday, April 19, 2026
Daily picks
17
articles scored
#1 GOLDGuideSimon Willison
Changes in the system prompt between Claude Opus 4.6 and 4.7
- Simon Willison diffed the official Claude.ai system prompts between Opus 4.6 and 4.7 — Anthropic publishes these, but the changes aren't highlighted in the launch blog post
- Newly added: "Claude in PowerPoint — a slides agent" is now listed as a tool Claude Cowork can use, alongside Claude in Chrome and Claude in Excel (not mentioned in 4.6)
- The child safety section was greatly expanded and now lives inside a `<critical_child_safety_instructions>` tag — once Claude refuses on child safety grounds, it must treat all subsequent messages in the same conversation with "extreme caution"
- A new `<acting_vs_clarifying>` section explicitly tells Claude: "the person typically wants Claude to make a reasonable attempt now, not to be interviewed first" — Claude should only ask clarifying questions when the request is literally unanswerable without the missing info
- Claude is now instructed not to keep users engaged when they signal they want to stop — "does not request that the user stay in the interaction or try to elicit another turn"
#2 SILVERTutorialDev.to Claude
Tired of Claude Code Ignoring Your CLAUDE.md? I Built claudemd-guard
- In long Claude Code sessions, CLAUDE.md rules get pushed out of the context window by context compression — the rules become invisible to the model and it starts violating them
- claudemd-guard is a PreToolUse hook that intercepts every Edit, Write, and Bash call before it runs, checks the operation against your CLAUDE.md rules using Claude itself, and blocks violations before they happen
- Install with two commands: `npm install -g claudemd-guard && claudemd-guard install` — then restart Claude Code. No extra API key needed (runs via your local Claude CLI). Fail-open design: if the guard itself errors, operations are allowed through
#3 BRONZEGuideDev.to Claude
dotclaude: The Open-Source Governance Layer for AI-Assisted Development
- dotclaude is an MIT-licensed monorepo with two uses: (1) personal — symlinks a portable skills + slash-commands library into `~/.claude/` so every Claude Code session on your laptop has the same tools, and (2) team — a governance CLI that enforces spec-backed PRs, skill-manifest integrity, and architectural drift detection in CI
- The personal bootstrap is three commands: `git clone https://github.com/kaiohenricunha/dotclaude.git ~/projects/dotclaude && cd ~/projects/dotclaude && ./bootstrap.sh` — after that, every repo automatically gets cloud/IaC specialist skills (AWS, GCP, Azure, Kubernetes, Terraform, Pulumi) that auto-trigger when you mention the relevant technology
