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")