From 9a53754d84719228cb25bba858ba9c6a95c76a13 Mon Sep 17 00:00:00 2001 From: Jitka Halova Date: Tue, 3 Mar 2026 17:30:09 +0100 Subject: [PATCH] Fix typo in check-manifest config --- utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.py b/utils.py index 09b319c3..990fb6df 100644 --- a/utils.py +++ b/utils.py @@ -200,7 +200,7 @@ def merge_toml(template, plugin_root_path, relative_path, template_vars): old_toml[merge_key].update(data[merge_key]) if template_vars["check_manifest"]: check_manifest_conf = old_toml["tool"].setdefault("check-manifest", {"ignore": []}) - for ai_file in ["AGENT.md", "CLAUDE.md"]: + for ai_file in ["AGENTS.md", "CLAUDE.md"]: if ai_file not in check_manifest_conf["ignore"]: check_manifest_conf["ignore"].append(ai_file) output = tomlkit.dumps(old_toml)