@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.
@@ -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.18",
4
+ "version": "5.0.19",
5
5
  "author": {
6
6
  "name": "Jesse Vincent & oh-my-claudecode contributors"
7
7
  },
package/docs/CLAUDE.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <!-- OMC:START -->
2
- <!-- OMC:VERSION:5.0.18 -->
2
+ <!-- OMC:VERSION:5.0.19 -->
3
3
  # ultrapower - Multi-Agent Orchestration 智能多 Agent 编排
4
4
 
5
5
  你正在使用 ultrapower(OMC),这是 Claude Code 的多 agent 编排层。
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liangjie559567/ultrapower",
3
- "version": "5.0.18",
3
+ "version": "5.0.19",
4
4
  "description": "Disciplined multi-agent orchestration: workflow enforcement + parallel execution",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -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}...`);