/
mkudmi
/
gigaspec-kit
Обзор
Документация
Войти
/
mkudmi
/
gigaspec-kit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/specify_cli/integrations/codex/__init__.py
59 строк
2 KB
Copilot
feat: support SPECKIT_INTEGRATION_<KEY>_EXECUTABLE env var (#2743)
29 май 2026, 18:19
Не верифицирован
29 май 2026, 18:19
b4e5a1c
Код
Авторство
О чём код?
"""Codex CLI integration — skills-based agent. Codex uses the ``.agents/skills/speckit-<name>/SKILL.md`` layout. Commands are deprecated; ``--skills`` defaults to ``True``. """ from __future__ import annotations from ..base import IntegrationOption, SkillsIntegration class CodexIntegration(SkillsIntegration): """Integration for OpenAI Codex CLI.""" key = "codex" config = { "name": "Codex CLI", "folder": ".agents/", "commands_subdir": "skills", "install_url": "https://github.com/openai/codex", "requires_cli": True, } registrar_config = { "dir": ".agents/skills", "format": "markdown", "args": "$ARGUMENTS", "extension": "/SKILL.md", } context_file = "AGENTS.md" multi_install_safe = True def build_exec_args( self, prompt: str, *, model: str | None = None, output_json: bool = True, ) -> list[str] | None: # Codex uses ``codex exec "prompt"`` for non-interactive mode. # Resolve argv[0] via the shared executable resolver so operators can # override the binary with SPECKIT_INTEGRATION_CODEX_EXECUTABLE. args: list[str] = [self._resolve_executable(), "exec", prompt] self._apply_extra_args_env_var(args) if model: args.extend(["--model", model]) if output_json: args.append("--json") return args @classmethod def options(cls) -> list[IntegrationOption]: return [ IntegrationOption( "--skills", is_flag=True, default=True, help="Install as agent skills (default for Codex)", ), ]