fix: release-check lint fixes for 1.1.0 publish
Some checks failed
ci / test (3.10) (push) Has been cancelled
ci / test (3.12) (push) Has been cancelled

Wrap long lines for flake8, rename extensions remove command handler
to avoid Click shadowing, and drop unused migration imports.
This commit is contained in:
2026-06-16 02:14:07 +02:00
parent 22ee93e125
commit 68555ec2f1
3 changed files with 21 additions and 9 deletions

View File

@@ -438,7 +438,10 @@ version: {extension.version}
agent_content += "---\n\n"
agent_content += f"# {extension.name}\n\n"
agent_content += f"{extension.description}\n\n"
agent_content += f"This agent extends **{extension.base_agent}** with project-specific functionality.\n\n"
agent_content += (
f"This agent extends **{extension.base_agent}** "
f"with project-specific functionality.\n\n"
)
if extension.configuration.get("custom_instructions"):
agent_content += "## Custom Instructions\n\n"