Agentic Coding
Top tech stories today across software, hardware, AI, and product launches. Senior engineer audience — skip rumour churn and pre-announcement leaks. Lead with shipping-now stories and what changed for builders.
Matt Pocock's skills tackle agent drift, Supabase ships plug-and-play, fast mode trades cost for speed
1 min read
Matt Pocock's skills collection
Your agent's biggest problem isn't capability—it's alignment.
Matt Pocock released a skills collection targeting the four ways agents go sideways: misaligned intent (fixed by /grill-me sessions that nail requirements upfront), excessive verbosity (solved by building shared glossaries in CONTEXT.md), code quality decay (addressed through /tdd red-green-refactor loops), and architecture rot (/improve-codebase-architecture prevents entropy) [Source: GitHub]. The skills are composable and model-agnostic, so they work whether you're in Claude Code or Cursor. The core philosophy: small deliberate steps with rapid feedback beats velocity without guardrails.
Steal the /grill-me pattern first—it's where most sessions go wrong.
Supabase agent skills
Supabase just made your database prompts obsolete.
Their new agent-skills repo provides ready-to-install instruction folders for Claude Code, Cursor, and Cline that teach agents Supabase best practices automatically [Source: GitHub]. One skill covers database, auth, edge functions, and client libraries end-to-end. The other delivers Postgres performance optimization across eight categories—query tuning, connection management, schema design—prioritized by impact. Install once and your agent stops asking basic questions about Row Level Security.
If you're building on Supabase, this is the shortcut you didn't know you needed.
Fast mode and permissions
You can now buy your way out of latency.
Claude Code's fast mode delivers 2.5x faster Opus 4.6 responses by prioritizing your requests at the infrastructure level—same reasoning depth, higher cost per token [Source: ClaudeFast]. Toggle /fast during pair programming or live debugging when waiting breaks your flow. For permissions, the same guide recommends Auto-Accept mode with pre-approved commands like npm and git during large refactors, while keeping prompts active for system operations [Source: ClaudeFast]. The combination lets you stay in creative mode without constant approval clicks.
Reserve fast mode for interactive work—autonomous background tasks don't care about latency.
mattpocock/skills: Skills for Real Engineers. Straight from ... - GitHub17 hours ago ... I built these skills as a way to fix common failure modes I see with Claude Code, Codex, and other coding agents. ... General workflow tools, not code-specific.github.com
Matt Pocock's agent skills collection addresses key failure modes in AI-assisted coding through structured workflows. The core approach centers on four problems: misalignment between developer intent and agent output (fixed via /grill-me and /grill-with-docs skills that establish detailed requirements upfront), agent verbosity (solved by building a shared domain language documented in CONTEXT.md and ADRs to reduce token usage and improve codebase navigation), code quality issues (addressed through feedback loops including test-driven development with /tdd and systematic debugging via /diagnosing-bugs), and architectural degradation (tackled with /improve-codebase-architecture to prevent code entropy). The skills are composable, model-agnostic, and emphasize small deliberate steps with rapid feedback cycles. Key techniques include grilling sessions to align on domain terminology, using shared language glossaries to enable concise agent-developer communication, and red-green-refactor loops for consistent code quality. These practices prioritize software engineering fundamentals over rapid iteration, targeting developers using Claude Code and similar agents daily.
Agent Skills to help developers using AI agents with Supabase17 hours ago ... Compatible with 18+ AI agents including Claude Code, GitHub Copilot, Cursor, Cline, and many others. ... Postgres performance optimization guidelines from ...github.com
Agent Skills are structured instruction folders that help AI agents like Claude Code, Cursor, and Cline work more efficiently with specific frameworks and tools. Supabase's Agent Skills repository provides ready-to-use skills covering Supabase development and Postgres best practices that can be installed as Claude Code plugins or integrated with other compatible AI agents. The Supabase skill offers comprehensive guidance on database, auth, edge functions, and client library integration, while the postgres-best-practices skill provides performance optimization guidelines across eight categories prioritized by impact, including query performance, connection management, and schema design—all automatically available to agents once installed to help with common development tasks.
Claude Code Permissions: Safe vs Fast Development Modes23 hours ago ... Master your development workflow by learning complementary techniques: ... Five permission modes for five development scenarios. default for safety, acceptEdits ...claudefa.st

This content provides comprehensive guidance on Claude Code permission management and workflow optimization. It covers five permission modes (Normal, Auto-Accept, Plan, Don't Ask, and Bypass) designed for different development scenarios. For efficient workflow, users can press Shift+Tab to cycle through modes instantly or set a persistent default mode in settings.json. The Auto-Accept mode eliminates permission prompts during file edits, ideal for large refactoring sessions and following well-defined implementation plans. The guide also explains how to use the /permissions command to pre-approve specific tools and patterns, set granular permission rules (allow, ask, deny), and combine permissions with sandboxing for defense-in-depth security. For active development workflows, the recommendation is to use Auto-Accept mode with pre-approved common commands like npm and git while maintaining prompts for system operations, avoiding constant manual approval clicks that defeat productivity purposes.
Claude Code Fast Mode: Speed Up Opus 4.6 Responses22 hours ago ... Cost Optimization Tips · Enable at session start. Switching to fast mode mid-conversation forces a full-context re-price at the uncached input rate. · Pair with ...claudefa.st

Claude Code fast mode delivers 2.5x faster Opus 4.6 responses through infrastructure-level priority without sacrificing model quality or reasoning depth. Activated with the /fast command, fast mode maintains identical output quality compared to standard Opus 4.6 but costs more per token. The feature excels during interactive pair programming sessions, rapid iteration cycles, and live debugging where latency directly impacts productivity and focus, though it's less valuable for autonomous background tasks. Fast mode can be combined independently with effort levels and model selection to optimize for specific task requirements—high effort with fast mode for complex architectural work, or fast mode with reduced effort for straightforward refactoring and boilerplate generation.