You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// From the Codex Rust implementation, `codex-rs/core-skills/src/loader.rs` defines `SKILLS_FILENAME = "SKILL.md"` and only parses files whose discovered filename exactly matches that value. The app-server README and bundled skill-creator sample also document `SKILL.md` as the required file for a skill. There is
43
+
// some UI/mention handling that recognizes paths ending in `SKILL.md`, but the actual loader discovery path is hardcoded around this filename.
44
+
constSKILL_FILE_NAME="SKILL.md";
45
+
40
46
/**
41
47
* API for accessing the Codex App Server using ACP requests.
42
48
* Converts ACP requests into corresponding app-server operations.
@@ -584,8 +590,13 @@ function buildPromptItems(prompt: acp.ContentBlock[]): UserInput[] {
0 commit comments