From 5fe87df1b3f0e03f0dbe2900c665aff810d29b20 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 16 Jun 2026 15:26:33 +0000 Subject: [PATCH 1/2] Initial plan From 071f4feaf6adc65ede2f610f72370fc460305657 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 16 Jun 2026 15:29:06 +0000 Subject: [PATCH 2/2] test: guard against converge Claude hint regression --- tests/integrations/test_integration_claude.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/integrations/test_integration_claude.py b/tests/integrations/test_integration_claude.py index 0a5a2b18f6..2307397470 100644 --- a/tests/integrations/test_integration_claude.py +++ b/tests/integrations/test_integration_claude.py @@ -331,6 +331,10 @@ def test_claude_preset_creates_new_skill_without_commands_dir(self, tmp_path): class TestClaudeArgumentHints: """Verify that argument-hint frontmatter is injected for Claude skills.""" + def test_converge_has_no_argument_hint(self): + """Converge should not advertise unsupported feature-name arguments.""" + assert "converge" not in ARGUMENT_HINTS + def test_all_skills_have_hints(self, tmp_path): """Every generated SKILL.md must contain an argument-hint line.""" i = get_integration("claude")