@josephyan/qingflow-app-builder-mcp 1.1.26 → 1.1.28

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.
@@ -96,7 +96,9 @@ def _find_skill_version(package_root: Path | None) -> str | None:
96
96
  candidates = [
97
97
  package_root / "skills" / "qingflow-cli" / "SKILL.md",
98
98
  package_root / "skill" / "qingflow-cli" / "SKILL.md",
99
+ package_root / ".codex" / "skills" / "qingflow-cli" / "SKILL.md",
99
100
  ]
101
+ candidates.extend(parent / ".codex" / "skills" / "qingflow-cli" / "SKILL.md" for parent in package_root.parents)
100
102
  for skill_file in candidates:
101
103
  if not skill_file.exists():
102
104
  continue