Add Codex MCP multi-LLM workflow builder, guide, and provider agents#151
Conversation
There was a problem hiding this comment.
💡 Codex Review
https://github.com/2-Coatl/IACT---project/blob/f7f20aec6ceba22f507e4c508225e350324923b9/scripts/coding/ai/generators/llm_generator.py#L150-L152
Fix .env lookup path in LLMGenerator
_load_env_variables assumes the repository root is only three directories above llm_generator.py (project_root = current_dir.parent.parent.parent). Because this module actually lives under scripts/coding/ai/generators, walking up three levels lands in the scripts/ folder rather than the repo root, so the function always looks for scripts/.env instead of the real ./.env. As a result the promised automatic API‑key loading never happens unless contributors duplicate their .env file inside scripts/, and the subsequent validation logic will keep flagging missing keys even though they exist at the repository root. Please compute the root with one more .parent (or via Path(__file__).resolve().parents[...]) so the correct .env is read.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
Summary
Testing
Codex Task