We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc41d8e commit 8b5a502Copy full SHA for 8b5a502
1 file changed
tests/test_extensions.py
@@ -405,6 +405,11 @@ def test_kiro_cli_agent_config_present(self):
405
assert CommandRegistrar.AGENT_CONFIGS["kiro-cli"]["dir"] == ".kiro/prompts"
406
assert "q" not in CommandRegistrar.AGENT_CONFIGS
407
408
+ def test_codex_agent_config_present(self):
409
+ """Codex should be mapped to .codex/prompts."""
410
+ assert "codex" in CommandRegistrar.AGENT_CONFIGS
411
+ assert CommandRegistrar.AGENT_CONFIGS["codex"]["dir"] == ".codex/prompts"
412
+
413
def test_parse_frontmatter_valid(self):
414
"""Test parsing valid YAML frontmatter."""
415
content = """---
0 commit comments