← All posts

AI + Dev Digest — July 3, 2026

AI agents that find your security holes, a DevTools MCP server from the Chrome team, a token-slashing Claude Code skill, and a formal software methodology built around subagents — today's most interesting repos are the plumbing that makes AI dev work.

If yesterday's theme was what AI agents can build, today's is what makes them worth trusting. The projects surging on GitHub right now are less about generating new things and more about giving agents better tools: sharper browser control, cheaper token budgets, security validation that actually runs code, and a disciplined workflow that keeps humans in the loop without slowing everything down. The meta-layer of AI development tooling is maturing fast.

Strix: An AI Pen Tester That Produces Working Exploits, Not Warnings

Most security scanners hand you a list of potential issues and leave the rest to you. Strix takes a different approach — it deploys teams of specialized AI agents that act like an actual penetration testing crew, coordinating reconnaissance, exploitation, and remediation in sequence. The key differentiator is that it validates every finding by executing a working proof-of-concept rather than flagging a theoretical risk, which means far fewer false positives and a much shorter path from "found something" to "here's the patch." It covers the OWASP Top 10, supports local codebase scans and black-box web assessments, and can hook into GitHub Actions to block vulnerable PRs before they merge.

github.com/usestrix/strix

Chrome DevTools MCP: The Chrome Team Ships a Browser Interface for Coding Agents

The Chrome DevTools team published an official MCP server that gives AI coding agents direct access to a live browser — not just the ability to click and type, but the full DevTools stack. Over 40 exposed tools span input automation, network inspection, performance tracing, heap snapshots, console log capture with source-mapped stack traces, and screenshot/screencast output. It connects to an existing Chrome instance or launches a fresh one, works with 20+ agents and IDEs (Claude Code, Cursor, VS Code, JetBrains, Copilot CLI, Gemini), and is already used by 200+ downstream projects. Having this come from the DevTools team itself rather than a third party matters — the APIs are stable and the debugging fidelity is genuine.

github.com/ChromeDevTools/chrome-devtools-mcp

Caveman: Cut Your Claude Code Token Bill by 65%

Caveman is a Claude Code skill with one job: make the agent talk less. It installs a compression layer that strips filler words and verbose explanations from responses while maintaining full technical accuracy, with tiered modes ranging from "lite" (remove padding) to "ultra" (telegraphic) to an unusual "wenyan" mode that formats output in classical Chinese. Benchmarks across ten test tasks show a 65% average reduction in output tokens and roughly 3x faster interactions, with savings varying from 22 to 87% depending on task type. A companion command rewrites project memory files to shrink input tokens too. With API costs directly tied to token volume, a skill that demonstrably cuts two-thirds of output without touching accuracy is a straightforward win for anyone running long agent sessions.

github.com/JuliusBrussee/caveman

Superpowers: Treating Agent-Driven Development as a Real Methodology

Rather than a collection of prompting tips, Superpowers is a structured framework that imposes a complete software development lifecycle on coding agents. Before touching code, the agent must ask clarifying questions, refine specs through dialogue, and get explicit human sign-off on a design. Then it breaks work into 2–5 minute tasks with exact file paths and verification steps, dispatches subagents to execute them, and runs two-stage code reviews — first for spec compliance, then for quality. It enforces test-driven development, YAGNI, and DRY as non-negotiable process steps rather than suggestions, and it works across Claude Code, Cursor, GitHub Copilot, and others. It's a bet that disciplined methodology matters as much for agents as it does for human engineering teams.

github.com/obra/superpowers