@liangjie559567/ultrapower 5.2.12 → 5.2.13
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.
|
@@ -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.2.
|
|
4
|
+
"version": "5.2.13",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jesse Vincent & oh-my-claudecode contributors"
|
|
7
7
|
},
|
package/package.json
CHANGED
package/scripts/plugin-setup.mjs
CHANGED
|
@@ -102,6 +102,7 @@ function fixNestedCacheDir() {
|
|
|
102
102
|
// Pattern B: cache/omc/ultrapower/VERSION/ (versioned nesting)
|
|
103
103
|
const pluginCacheBase = join(CLAUDE_DIR, 'plugins/cache/omc/ultrapower');
|
|
104
104
|
if (!existsSync(pluginCacheBase)) return;
|
|
105
|
+
const versions = readdirSync(pluginCacheBase);
|
|
105
106
|
for (const version of versions) {
|
|
106
107
|
const versionDir = join(pluginCacheBase, version);
|
|
107
108
|
const nestedDir = join(versionDir, 'ultrapower');
|