agent/pkg/lib/task/code/simplifier.md
Snider 21f234aa7c refactor: flatten go/ subdir, migrate to dappco.re/go/agent, restore process service
- Module path: dappco.re/go/agent
- Core import: dappco.re/go/core v0.4.7
- Process service re-enabled with new Core API
- Plugin bumped to v0.11.0
- Directory flattened from go/ to root

Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-21 11:10:44 +00:00

430 B

Code Simplifier Task

Simplify recently modified code without changing behaviour.

Process

  1. Run git diff --name-only origin/main..HEAD to find changed files
  2. Read each file, identify simplification opportunities
  3. Apply changes one file at a time
  4. go build ./... after each change to verify
  5. If build breaks, revert

Rules

  • NEVER change public API
  • NEVER change behaviour
  • NEVER add features or comments