We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b5a502 commit 551aa5bCopy full SHA for 551aa5b
tests/test_agent_config_consistency.py
@@ -28,6 +28,13 @@ def test_extension_registrar_uses_kiro_cli_and_removes_q(self):
28
assert cfg["kiro-cli"]["dir"] == ".kiro/prompts"
29
assert "q" not in cfg
30
31
+ def test_extension_registrar_includes_codex(self):
32
+ """Extension command registrar should include codex targeting .codex/prompts."""
33
+ cfg = CommandRegistrar.AGENT_CONFIGS
34
+
35
+ assert "codex" in cfg
36
+ assert cfg["codex"]["dir"] == ".codex/prompts"
37
38
def test_release_agent_lists_include_kiro_cli_and_exclude_q(self):
39
"""Bash and PowerShell release scripts should agree on agent key set for Kiro."""
40
sh_text = (REPO_ROOT / ".github" / "workflows" / "scripts" / "create-release-packages.sh").read_text(encoding="utf-8")
0 commit comments