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
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
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 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 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
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
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
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
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
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
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
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
A developer discovered that Rails' `counter_cache: true` option uses `update_all` internally, which bypasses all ActiveRecord callback hooks including `after_save` and `after_commit`. The finding emerged during a bulk-delete rake task for LineItem records requiring careful callback management to ...
Workflows & Tips
Dev.to - Claude
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 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
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
Prismix launched a free dashboard that aggregates status and latency data from 77 AI APIs, including OpenAI, Anthropic, and Replicate, with a public REST API and embeddable badges. Six weeks of monitoring found that official status pages typically lag real incidents by 10–30 minutes, and OpenAI o...
Open Source Tools
Dev.to - AI
A June 2026 AI model ranking places Claude Fable 5 first with an 80.3% SWE-bench Pro score, followed by GPT-5.5 (58.6%) and open-source models DeepSeek V4-Pro, Kimi K2.7, and GLM-5.2, with DeepSeek priced at $0.28/million input tokens versus Claude's $10.
Model Releases
Dev.to - Claude
Anthropic reported elevated error rates affecting Claude Opus 4.8, 4.7, 4.6, and Sonnet 4.6 starting at 00:37 UTC on June 22, 2026, with the Claude API, Claude Code, claude.ai, and Claude Cowork listed in partial outage. No root cause or estimated recovery time had been published as of the report.
Industry & Funding
Dev.to - Claude
OpenMontage is an open-source agentic video production system with 9,000+ GitHub stars that uses AI coding assistants such as Claude Code or Cursor to run 12 production pipelines covering research, scripting, storyboarding, asset generation, and editing. It includes 52 tools and 500+ agent skills...
Open Source Tools
Dev.to - Claude
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
Nader Khalil, Nvidia's Director of Developer Technologies, described an AI agent as "an LLM and a harness" in an interview, and outlined Nvidia's strategy of embedding GPU-accelerated skills via its CUDA X library into products targeting the agentic AI market.
Opinion & Analysis
The New Stack
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
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