@howaboua/pi-codex-conversion 1.5.3-dev.18.ffc51f4 → 1.5.4-dev.19.703be35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@howaboua/pi-codex-conversion",
3
- "version": "1.5.3-dev.18.ffc51f4",
3
+ "version": "1.5.4-dev.19.703be35",
4
4
  "description": "Codex-oriented tool and prompt adapter for pi coding agent",
5
5
  "type": "module",
6
6
  "repository": {
@@ -59,9 +59,9 @@
59
59
  "typebox": "*"
60
60
  },
61
61
  "devDependencies": {
62
- "@earendil-works/pi-ai": "^0.74.0",
63
- "@earendil-works/pi-coding-agent": "^0.74.0",
64
- "@earendil-works/pi-tui": "^0.74.0",
62
+ "@earendil-works/pi-ai": "^0.74.1",
63
+ "@earendil-works/pi-coding-agent": "^0.74.1",
64
+ "@earendil-works/pi-tui": "^0.74.1",
65
65
  "tsx": "^4.20.5",
66
66
  "typebox": "^1.1.24",
67
67
  "typescript": "^5.9.3"
@@ -96,6 +96,7 @@ function skillNameFromSkillPath(path: string): string | undefined {
96
96
  const normalized = path.replace(/\\/g, "/");
97
97
  const parts = normalized.split("/").filter(Boolean);
98
98
  if (parts.at(-1) !== "SKILL.md") return undefined;
99
+ if (parts.at(-3) !== "skills") return undefined;
99
100
  const skillDir = parts.at(-2);
100
101
  return skillDir && skillDir !== ".system" ? skillDir : undefined;
101
102
  }