xtrm-cli 2.1.28 → 2.1.29
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/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/extensions/beads.ts +12 -9
- package/package.json +1 -1
- package/src/commands/install-pi.ts +12 -0
- package/src/commands/install-project.ts +1 -1
- package/test/install-pi.test.ts +39 -1
- package/test/install-project.test.ts +29 -26
- package/vitest.config.ts +1 -0
package/dist/index.cjs
CHANGED
|
@@ -41069,7 +41069,7 @@ async function getAvailableProjectSkills() {
|
|
|
41069
41069
|
for (const entry of entries) {
|
|
41070
41070
|
const entryPath = import_path11.default.join(PROJECT_SKILLS_DIR, entry);
|
|
41071
41071
|
const stat = await import_fs_extra11.default.stat(entryPath);
|
|
41072
|
-
if (stat.isDirectory()) {
|
|
41072
|
+
if (stat.isDirectory() && await import_fs_extra11.default.pathExists(import_path11.default.join(entryPath, ".claude"))) {
|
|
41073
41073
|
skills.push(entry);
|
|
41074
41074
|
}
|
|
41075
41075
|
}
|