claudeup 6.3.0 → 6.3.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudeup",
3
- "version": "6.3.0",
3
+ "version": "6.3.2",
4
4
  "description": "TUI tool for managing Claude Code plugins, MCPs, and configuration",
5
5
  "type": "module",
6
6
  "main": "src/main.tsx",
@@ -64,8 +64,8 @@
64
64
  "typescript": "^5.6.3"
65
65
  },
66
66
  "optionalDependencies": {
67
- "claudeup-darwin-arm64": "6.3.0",
68
- "claudeup-darwin-x64": "6.3.0",
69
- "claudeup-linux-x64": "6.3.0"
67
+ "claudeup-darwin-arm64": "6.3.2",
68
+ "claudeup-darwin-x64": "6.3.2",
69
+ "claudeup-linux-x64": "6.3.2"
70
70
  }
71
71
  }
@@ -75,8 +75,8 @@ describe("resolveExtends", () => {
75
75
  settings: { effortLevel: "max" },
76
76
  };
77
77
  const merged = resolveExtends(entry);
78
- // must-have contributes statusline@magus + multimodel@magus at "latest".
79
- expect(merged.plugins!["statusline@magus"]).toBe("latest");
78
+ // must-have contributes setup@magus + multimodel@magus at "latest".
79
+ expect(merged.plugins!["setup@magus"]).toBe("latest");
80
80
  expect(merged.plugins!["multimodel@magus"]).toBe("latest");
81
81
  // Entry's own plugin pin is preserved.
82
82
  expect(merged.plugins!["dev@magus"]).toBe("2.9.0");
@@ -150,12 +150,10 @@ describe("per-project baselines", () => {
150
150
 
151
151
  test("a project with no baseline of its own reports nothing", async () => {
152
152
  await withSandbox(async () => {
153
- await saveSeenVersions("/proj/a", { "statusline@magus": "2.2.0" });
153
+ await saveSeenVersions("/proj/a", { "setup@magus": "2.2.0" });
154
154
  const baseline = await loadSeenVersions("/proj/b");
155
155
  expect(baseline).toBeNull();
156
- expect(diffVersions(baseline, { "statusline@magus": "2.5.0" })).toEqual(
157
- [],
158
- );
156
+ expect(diffVersions(baseline, { "setup@magus": "2.5.0" })).toEqual([]);
159
157
  });
160
158
  });
161
159
 
@@ -15,7 +15,7 @@ export const PREDEFINED_PROFILES: PredefinedProfile[] = [
15
15
  name: "Must Have",
16
16
  description: "Essential plugins every Claude Code user should have",
17
17
  icon: "★",
18
- magusPlugins: ["statusline", "multimodel"],
18
+ magusPlugins: ["setup", "multimodel"],
19
19
  anthropicPlugins: [
20
20
  "claude-code-setup",
21
21
  "claude-md-management",
@@ -41,7 +41,7 @@ export const PREDEFINED_PROFILES: PredefinedProfile[] = [
41
41
  "Must Have + full dev toolkit: code analysis, browser, terminal, design, review",
42
42
  icon: "▶",
43
43
  magusPlugins: [
44
- "statusline",
44
+ "setup",
45
45
  "multimodel",
46
46
  "code-analysis",
47
47
  "dev",
@@ -84,7 +84,7 @@ export const PREDEFINED_PROFILES: PredefinedProfile[] = [
84
84
  "dev",
85
85
  "code-analysis",
86
86
  "terminal",
87
- "statusline",
87
+ "setup",
88
88
  "designer",
89
89
  "browser-use",
90
90
  "multimodel",
@@ -125,7 +125,7 @@ export const PREDEFINED_PROFILES: PredefinedProfile[] = [
125
125
  "dev",
126
126
  "code-analysis",
127
127
  "terminal",
128
- "statusline",
128
+ "setup",
129
129
  "multimodel",
130
130
  "gtd",
131
131
  ],
@@ -160,7 +160,7 @@ export const PREDEFINED_PROFILES: PredefinedProfile[] = [
160
160
  "dev",
161
161
  "code-analysis",
162
162
  "terminal",
163
- "statusline",
163
+ "setup",
164
164
  "multimodel",
165
165
  "gtd",
166
166
  "browser-use",
@@ -197,7 +197,7 @@ export const PREDEFINED_PROFILES: PredefinedProfile[] = [
197
197
  "dev",
198
198
  "code-analysis",
199
199
  "terminal",
200
- "statusline",
200
+ "setup",
201
201
  "seo@magus-marketing",
202
202
  "browser-use",
203
203
  "image-generate@magus-marketing",
@@ -232,7 +232,7 @@ export const PREDEFINED_PROFILES: PredefinedProfile[] = [
232
232
  "dev",
233
233
  "code-analysis",
234
234
  "terminal",
235
- "statusline",
235
+ "setup",
236
236
  "multimodel",
237
237
  "gtd",
238
238
  ],