Before submitting
Area
apps/server
Steps to reproduce
- Install/update Codex CLI and verify it is current:
- Create a repository-local Codex skill under a project:
<repo>/
.agents/
skills/
add-model-support/
SKILL.md
agents/
openai.yaml
- Use valid SKILL.md frontmatter:
---
name: add-model-support
description: Add support for a newly announced model from an existing provider.
---
- Verify Codex sees the repo-local skill when launched from the repo:
codex -C <repo-path> debug prompt-input "test" | rg "add-model-support"
- Open the same repository in T3 Code, type
$ in the composer, and look for add-model-support.
- Fully quit T3 Code, delete the Codex provider cache, and reopen T3 Code:
Remove-Item "$env:USERPROFILE\.t3\caches\codex.json"
- Type
$ again and observe that the skill is still missing.
- Confirm the rebuilt T3 Code cache does not include the repo-local skill:
rg "add-model-support" "$env:USERPROFILE\.t3\caches\codex.json"
Expected behavior
When opening the repo in T3 Code, repo-local Codex skills under .agents/skills should appear in the $ skill picker, the same way they do in Codex.
In this case, $add-model-support should be available when working in the LoopGPT repository.
Actual behavior
The skill does not appear in T3 Code’s $ picker.
T3 Code appears to load global/plugin Codex skills from its Codex cache, but not the repo-local .agents/skills entry.
Impact
Minor bug or occasional failure
Version or commit
T3 Code Alpha: v0.0.27.0
Environment
Windows 11 Core, 64-bit, Windows desktop app (T3 Code Alpha), npm installed codex-cli 0.139.0
Logs or stack traces
Screenshots, recordings, or supporting files
No response
Workaround
Just prompt the agent to find and read the skill instead of manually invoking it. Not ideal for consistency in performance though.
Before submitting
Area
apps/server
Steps to reproduce
$in the composer, and look foradd-model-support.$again and observe that the skill is still missing.Expected behavior
When opening the repo in T3 Code, repo-local Codex skills under .agents/skills should appear in the $ skill picker, the same way they do in Codex.
In this case, $add-model-support should be available when working in the LoopGPT repository.
Actual behavior
The skill does not appear in T3 Code’s $ picker.
T3 Code appears to load global/plugin Codex skills from its Codex cache, but not the repo-local .agents/skills entry.
Impact
Minor bug or occasional failure
Version or commit
T3 Code Alpha: v0.0.27.0
Environment
Windows 11 Core, 64-bit, Windows desktop app (T3 Code Alpha), npm installed codex-cli 0.139.0
Logs or stack traces
Screenshots, recordings, or supporting files
No response
Workaround
Just prompt the agent to find and read the skill instead of manually invoking it. Not ideal for consistency in performance though.