@liangjie559567/ultrapower 5.0.18 → 5.0.19
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/.claude-plugin/plugin.json +1 -1
- package/docs/CLAUDE.md +1 -1
- package/package.json +1 -1
- package/scripts/plugin-setup.mjs +6 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ultrapower",
|
|
3
3
|
"description": "Disciplined multi-agent orchestration: workflow enforcement + parallel execution. Combines superpowers' TDD/debugging discipline with OMC's multi-agent execution capabilities.",
|
|
4
|
-
"version": "5.0.
|
|
4
|
+
"version": "5.0.19",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jesse Vincent & oh-my-claudecode contributors"
|
|
7
7
|
},
|
package/docs/CLAUDE.md
CHANGED
package/package.json
CHANGED
package/scripts/plugin-setup.mjs
CHANGED
|
@@ -33,6 +33,12 @@ function fixNestedCacheDir() {
|
|
|
33
33
|
if (!existsSync(nestedDir)) continue;
|
|
34
34
|
// Check if the nested dir itself has the actual plugin content (skills/, dist/, etc.)
|
|
35
35
|
const nestedContents = readdirSync(nestedDir);
|
|
36
|
+
// If nested dir is empty (leftover from previous fix), just remove it
|
|
37
|
+
if (nestedContents.length === 0) {
|
|
38
|
+
rmSync(nestedDir, { recursive: true, force: true });
|
|
39
|
+
console.log(`[OMC] Removed empty nested dir for version ${version}`);
|
|
40
|
+
continue;
|
|
41
|
+
}
|
|
36
42
|
const hasPluginContent = nestedContents.some(f => ['skills', 'dist', 'agents', 'hooks'].includes(f));
|
|
37
43
|
if (!hasPluginContent) continue;
|
|
38
44
|
console.log(`[OMC] Fixing nested cache dir for version ${version}...`);
|