From e3e03a11ea91dc8cd3a3d376b89dcb8043b891a2 Mon Sep 17 00:00:00 2001 From: Stephen Benjamin Date: Mon, 27 Apr 2026 11:02:41 -0400 Subject: [PATCH] fix: remove stray "specify" from generated file footer The regeneration hint in generated files read "specify apm compile" instead of "apm compile". Co-Authored-By: Claude Opus 4.6 --- src/apm_cli/compilation/distributed_compiler.py | 2 +- src/apm_cli/compilation/template_builder.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apm_cli/compilation/distributed_compiler.py b/src/apm_cli/compilation/distributed_compiler.py index c986b8bb9..0f45482b8 100644 --- a/src/apm_cli/compilation/distributed_compiler.py +++ b/src/apm_cli/compilation/distributed_compiler.py @@ -555,7 +555,7 @@ def _generate_agents_content( # Footer sections.append("---") sections.append("*This file was generated by APM CLI. Do not edit manually.*") - sections.append("*To regenerate: `specify apm compile`*") + sections.append("*To regenerate: `apm compile`*") sections.append("") content = "\n".join(sections) diff --git a/src/apm_cli/compilation/template_builder.py b/src/apm_cli/compilation/template_builder.py index fd8799d1d..2a2a2eae8 100644 --- a/src/apm_cli/compilation/template_builder.py +++ b/src/apm_cli/compilation/template_builder.py @@ -133,7 +133,7 @@ def generate_agents_md_template(template_data: TemplateData) -> str: # Footer sections.append("---") sections.append("*This file was generated by APM CLI. Do not edit manually.*") - sections.append("*To regenerate: `specify apm compile`*") + sections.append("*To regenerate: `apm compile`*") sections.append("") return "\n".join(sections) \ No newline at end of file