From a9e706cf7006bd01e1524f8e279b01c313a75dcb Mon Sep 17 00:00:00 2001 From: Nelson Osacky Date: Thu, 30 Jul 2026 11:29:10 +0200 Subject: [PATCH] docs: Remove build command from agent instructions Drop the "Build entire project" command from AGENTS.md Essential Commands so agents aren't instructed to run a full ./gradlew build, which is an expensive step not needed for the documented workflow. Co-Authored-By: Claude Opus 4.8 --- AGENTS.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index de4e29376a..4f938ceff2 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -34,9 +34,6 @@ The project uses **Gradle** with Kotlin DSL. Key build files: # Run all tests and linter ./gradlew check -# Build entire project -./gradlew build - # Generate documentation ./gradlew aggregateJavadocs ```