harnessed 3.9.19 → 3.9.20
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/cli.mjs +14 -1
- package/dist/cli.mjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -743,6 +743,19 @@ async function checkMattpocockSkills() {
|
|
|
743
743
|
};
|
|
744
744
|
} catch {
|
|
745
745
|
}
|
|
746
|
+
const indicators = ["diagnose", "tdd", "zoom-out"];
|
|
747
|
+
for (const ind of indicators) {
|
|
748
|
+
const indPath = join(homedir(), ".claude", "skills", ind);
|
|
749
|
+
try {
|
|
750
|
+
await stat(indPath);
|
|
751
|
+
return {
|
|
752
|
+
name: "mattpocock-skills",
|
|
753
|
+
status: "pass",
|
|
754
|
+
message: `installed as individual skills (found ${ind}/)`
|
|
755
|
+
};
|
|
756
|
+
} catch {
|
|
757
|
+
}
|
|
758
|
+
}
|
|
746
759
|
return {
|
|
747
760
|
name: "mattpocock-skills",
|
|
748
761
|
status: "warn",
|
|
@@ -1218,7 +1231,7 @@ var init_auto_install = __esm({
|
|
|
1218
1231
|
|
|
1219
1232
|
// package.json
|
|
1220
1233
|
var package_default = {
|
|
1221
|
-
version: "3.9.
|
|
1234
|
+
version: "3.9.20"};
|
|
1222
1235
|
|
|
1223
1236
|
// src/manifest/errors.ts
|
|
1224
1237
|
function instancePathToKeyPath(instancePath) {
|