// edition · 2026-06-22

June 22, 2026

23 stories on AI dev tools, agents, and the coding stack, curated from the day's RSS haul by Agentic Dev's pipeline.

Top Signal · Agent Engineering

A public Sentry key is all it takes to hijack Claude Code, Cursor, and Codex

Tenet Security documented an attack called "agentjacking" on June 17, showing that a publicly visible Sentry DSN credential can be used to inject malicious instructions into AI coding agents including Claude Code, Cursor, and Codex via the Model Context Protocol. The attack works because AI agent...

The New Stack

Tool Updates

Claude Code in Scripts: Headless Mode and Automation (2026)

Claude Code supports a headless, non-interactive mode via the `-p` flag, which sends a prompt to the model and returns output to stdout, enabling use in bash pipelines, git hooks, cron jobs, and CI systems. The mode supports plain text and JSON output formats.

CLI Agents Dev.to - Claude

CLAUDE.md & Rules - Before Skills, Hooks, or Agents

Claude Code supports a CLAUDE.md file and a `.claude/rules/` directory to store persistent project context, allowing developers to avoid re-entering architecture and conventions at the start of each session. CLAUDE.md holds project overview and stack details, while the rules directory stores spec...

CLI Agents Dev.to - Claude

Recall boosts Claude Code with offline memory for smooth project continuity

Recall is a free, open-source plugin for Claude Code that stores session context locally using a classical Python summarization algorithm, generating summaries of roughly 1,000–2,000 tokens to carry project state between sessions. It requires no API keys or cloud services, keeping all session log...

CLI Agents Dev.to - Claude

What 60+ Claude Code memory entries taught me about solo ops

A solo infrastructure operator running a paid service with Claude Code accumulated 60+ persistent memory entries over roughly a year and documented five operational lessons, including writing rationale rather than actions, pruning stale entries on the spot, and logging negative findings to preven...

CLI Agents Dev.to - Claude

A Month With Claude Code: It's Really Not the Same Thing as ChatGPT

Claude Code is a command-line tool that reads and edits local files, runs tests, and iterates on errors autonomously, unlike ChatGPT's manual copy-paste workflow. It starts at $20/month and showed reduced build time on a Node.js/PostgreSQL backend project, but performed poorly on large monorepos ...

CLI Agents Dev.to - Claude

Moving Beyond a Single AI Provider in 2026: A Practical Guide

A guide on multi-provider AI strategies argues that routing API calls through a unified gateway can reduce costs by roughly 20% compared to direct billing, citing an example of $600 monthly savings on 100 million tokens, while also providing automatic failover across providers like OpenAI, Anthro...

Workflows & Tips Dev.to - Claude

Temporary Cloudflare Accounts for AI agents

Cloudflare launched a feature allowing Workers deployments without an account via `npx wrangler deploy --temporary`, creating ephemeral projects that remain live for 60 minutes. Users receive a claim link to take permanent ownership of the project before it expires.

Agent Engineering Simon Willison

KIMI + Agnes: A Real-World Test of Cross-Provider Agent Chain Correctover

A developer built NeuralBridge, an open-source SDK that adds semantic output validation to LLM pipeline failovers, testing it with Moonshot's KIMI and Agnes AI. The system uses DAG-based orchestration to verify that each LLM's output meets defined contracts before passing results downstream, rath...

Agent Engineering Dev.to - AI

Your agent wants to search like a 2010 quant

Perplexity announced a "search as code" approach that treats AI agent queries as programmable instructions rather than natural language approximations, representing a shift from earlier vector-only and hybrid search methods used in retrieval-augmented generation systems.

Agent Engineering The New Stack

Stop Reading PDFs: Architecting ArxivLens for High-Velocity Research

A developer published a technical blueprint for ArxivLens, a semantic search system for arXiv papers using vector embeddings and retrieval-augmented generation. The proposed stack includes Qdrant or Pinecone for vector storage, OpenAI's text-embedding-3-small or Sentence-Transformers for embeddin...

Agent Engineering Dev.to - AI

How to Implement Generative AI Regulatory Compliance in 5 Steps

A five-step framework for building regulatory compliance into generative AI applications covers data governance, model version control, lineage tracking, and ongoing monitoring. The approach focuses on documenting data sources, licensing, PII classification, and retention policies as foundational...

Agent Engineering Dev.to - AI

Generative AI Regulatory Compliance: A Developer's Starting Guide

Generative AI systems face compliance requirements under GDPR, CCPA, HIPAA, and the EU AI Act, depending on industry and geography. Developers are increasingly held accountable for model transparency, data governance, bias detection, and audit trails in AI applications.

Workflows & Tips Dev.to - AI

Ecosystem

MCP vs Skills: Why Skills Save Context Tokens

A developer post argues that "skill files" — lightweight instruction documents that load progressively — consume fewer context tokens than Model Context Protocol (MCP) servers, which load full tool schemas, argument definitions, and metadata into every AI agent session regardless of task relevance.

MCP & Integrations Dev.to - AI

Sakana Fugu Ultra now available on AI Gateway

Sakana AI's Fugu Ultra model is now available on Vercel's AI Gateway, accessible via the identifier `sakana/fugu-ultra` in Vercel's AI SDK. Fugu Ultra routes tasks to 1-3 agents drawn from publicly accessible frontier models and combines their outputs into a single response.

Model Releases Vercel Blog

4 Senior AI Engineer interviews (questions, answers, & thoughts)

A Solutions Architect shared their experience completing four Senior AI Engineer job interviews, covering the questions asked and how they responded. The account also includes observations on the AI engineer role and career path.

Opinion & Analysis Dev.to - Claude

sqlite-utils 4.0rc1 adds migrations and nested transactions

Simon Willison released sqlite-utils 4.0rc1, the first release candidate for version 4 of his Python library and CLI tool for SQLite databases. The release adds database migrations (ported from the sqlite-migrate package) and nested transactions, along with minor backwards-incompatible changes fr...

Open Source Tools Simon Willison