Tags: coding* + agents*

0 bookmark(s) - Sort by: Date ↓ / Title /

  1. Frederic Lardinois writes that Harness field CTO Martin Reynolds is addressing the surge in pull requests caused by coding agents, which can increase new code volume from 1.5x to as much as 50x. To manage this "review bottleneck," Harness has launched a rebuilt Code Repository and an AI Code Review product designed specifically for high-frequency agent traffic rather than just human teams. The company's approach focuses on using a software delivery knowledge graph to provide reviewers with context quickly, helping them distinguish critical code changes from routine dependency updates.

    - Coding agents can increase the volume of pull requests by 10x to 50x compared to traditional developer workflows.
    - Harness rebuilt its repository service as an "AI-first" platform that is Kubernetes-based and runs across multiple clouds.
    - The new AI Code Review tool integrates with existing GitHub repositories, allowing teams to use it without migrating their entire codebase.
  2. Pushpak Chhajed writes about the evolution of project rule systems for AI coding agents, explaining why Laravel Boost moved away from complex semantic search layers in favor of a simple markdown-based approach. To prevent instruction files like `CLAUDE.md` from becoming bloated and consuming excessive context, the team implemented a system using `.ai/rules` containing specific Markdown files linked by a generated two-column index. This "progressive disclosure" method allows agents to efficiently locate relevant project conventions without overwhelming their prompt window or requiring complex vector databases for small rule sets.

    - The system uses an automatically updated `index.md` file to help agents map current file paths to specific rule files.
    - Agents are encouraged to use a combination of index matching and `grep -rin` to find rules that span multiple directories.
    - This approach aligns with advice from the Anthropic Claude Code team regarding progressive disclosure in agentic workflows.
    - The solution avoids "staleness" risks associated with maintaining separate vector embeddings for small collections of files.
  3. Leela Kumili writes about DoorDash's Flux platform, which moved LLM-based coding agent workloads from developer laptops to cloud infrastructure, automating 130,000 engineering tasks in a single month and supporting over 25,000 automated code reviews per week. The platform was built after local execution hit limits on power, uptime, and security, and is organized around four primitives: Firecracker microVM sandboxes, an in-house MCP gateway, YAML-defined playbooks, and multiple invocation surfaces (Slack, GitHub, cron, CLI, conversational interfaces).
    - Sandboxes achieve a 95th percentile SLO under 5 seconds for full setup, including microVM start, repo clone, build tool install, and agent harness configuration.
    - Playbooks can mix agent-driven steps with deterministic code where predictable execution or validation is required.
    - The Agent Gateway enforces scoped permissions and logs all agent activity for auditing and policy enforcement.
    - DoorDash switched Slack integration from private channels to public threads so engineers could observe agent executions and see how other teams delegated work.
  4. Mashrul Haque writes about using git worktrees to run multiple LLM coding agents in parallel, each on its own branch and isolated directory, eliminating the bottleneck of sequential agent sessions. He demonstrates a 5-agent workflow with Claude Code on a .NET/Blazor project, reporting roughly 5x throughput gains over single-agent sequential work.

    - Boris Cherny, Creator and Head of Claude Code at Anthropic, calls worktrees his number one productivity tip and runs 3'' 5 simultaneously
    - Claude Code ships a built-in `--worktree` (`-w`) flag that auto-creates an isolated worktree per session
  5. SWE-bench Verified is a human-filtered subset of 500 instances from SWE-bench created in collaboration with OpenAI to provide a reliable evaluation set for coding agents and language models. Human annotators reviewed each instance to ensure problem descriptions are clear, test patches are correct, and tasks are solvable with available information. The Verified leaderboard shows results from a wide variety of AI coding systems, and a Bash Only view isolates language model performance using mini-SWE-agent in a minimal bash environment.

    - Human validation ensures clarity, correctness of test patches, and solvability
    - Bash-only comparison uses mini-SWE-agent with ReAct loop, no tools or scaffold
    - Leaderboard distinguishes mini-SWE-agent LM results from full agent systems via Agent dropdown
    - Release 2.x uses tool calling vs 1.x parses actions from output strings, making releases not directly comparable
  6. MindMux presents brain.md, an open-source toolkit that provides a persistent memory layer for coding agents by storing project knowledge as plain Markdown files within a repository. This system ensures that critical decisions and constraints are durable across different LLM sessions and machines via version control. A zero-dependency CLI manages the reading and writing of these files to maintain data integrity through an append-only timeline.

    - Uses Markdown instead of databases like SQLite to facilitate easier diffing in git history.
    - Features a "correct by construction" design that prevents malformed edits by making the CLI the exclusive writer.
    - Supports integration with several agents including Claude Code, Codex, Cursor, and Pi.
  7. The author explains how enabling the built-in sandbox feature in Claude Code has transformed their productivity by allowing for an autonomous workflow. By activating auto-allow mode via the /sandbox command, users can permit AI agents to execute repetitive tasks like running tests or installing dependencies without needing constant manual approval for every individual command, which reduces mental overhead and time spent waiting on prompts.


    - Claude Code provides a built-in sandbox that uses macOS Seatbelt on Mac and Bubblewrap on Linux/WSL2.
    - The environment restricts file writing primarily to the current project directory and temporary session files.
    - Network access is controlled, requiring manual approval when the agent attempts to connect to a new domain.
    - For maximum security and complete isolation from a system, using Docker containers or virtual machines remains more robust than the built-in sandbox features.
  8. This article explores the concept of harness engineering, arguing that a functional AI agent is defined not just by its underlying model, but by the scaffolding built around it—including prompts, tools, sandboxes, and feedback loops. The author suggests shifting focus from picking the smartest model to designing robust systems that turn raw models into reliable agents. By treating mistakes as signals for new constraints rather than simple failures, engineers can create a ratchet effect that continuously improves agent performance through better configuration.

    Main topics:
    - Defining an agent as the combination of a model and its harness
    - Reframing model errors as configuration or skill issues
    - Using failure history to implement permanent rules via hooks and documentation
    - Core primitives including filesystems, bash execution, sandboxes, and memory management
    - Managing context rot through compaction and tool offloading
    - Achieving long-horizon work through planning, verification, and agent splits
  9. Simon Willison details creating a custom macOS presentation app, "Present," in just 45 minutes using Swift and SwiftUI. Frustrated with the risk of browser crashes when presenting a series of web pages, he built an app that displays URLs as slides, offering features like full-screen mode, keyboard navigation, and automatic URL saving. He even added remote control functionality via a web server and Tailscale.
    The project highlights the power of AI-assisted coding and expands his skillset, demonstrating how experienced software engineers can quickly learn new languages and tools to solve personal problems. The resulting app is a simple, effective solution tailored to his specific needs.
  10. Goose is a free, open‑source AI agent that runs locally and can autonomously plan, code, test, debug, and execute full development workflows—making it especially useful for data scientists who need to automate repetitive, multi‑step tasks. It supports any LLM, interfaces with file systems and APIs, and can extend its capabilities via the Model Context Protocol (MCP) to connect with databases, Git, Slack, and more.

    - Autonomous task execution from high‑level instructions.
    - Local execution preserves data privacy and control.
    - LLM‑agnostic: works with GPT‑4, Claude, or local models.
    - Two interfaces: desktop GUI and CLI.
    - Extensible through MCP for external tools and services.
    - Ideal for rapid prototyping, data pipeline automation, MLOps, and environment setup.
    2026-03-21 Tags: , , , , by klotz

Top of the page

First / Previous / Next / Last / Page 1 of 0 SemanticScuttle - klotz.me: tagged with "coding+agents"

About - Propulsed by SemanticScuttle