claudeup 6.5.0 → 6.5.1
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.5.
|
|
3
|
+
"version": "6.5.1",
|
|
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.5.
|
|
68
|
-
"claudeup-darwin-x64": "6.5.
|
|
69
|
-
"claudeup-linux-x64": "6.5.
|
|
67
|
+
"claudeup-darwin-arm64": "6.5.1",
|
|
68
|
+
"claudeup-darwin-x64": "6.5.1",
|
|
69
|
+
"claudeup-linux-x64": "6.5.1"
|
|
70
70
|
}
|
|
71
71
|
}
|
|
@@ -57,12 +57,12 @@ describe("buildCatalogNoticeText", () => {
|
|
|
57
57
|
|
|
58
58
|
it("names one or two failing marketplaces but only counts many", () => {
|
|
59
59
|
const few = buildCatalogNoticeText({
|
|
60
|
-
failures: [failure("magus"), failure("magus-
|
|
60
|
+
failures: [failure("magus"), failure("magus-alpha")],
|
|
61
61
|
unverifiedPlugins: 0,
|
|
62
62
|
width: 160,
|
|
63
63
|
now: NOW,
|
|
64
64
|
});
|
|
65
|
-
expect(few).toContain("magus-
|
|
65
|
+
expect(few).toContain("magus-alpha");
|
|
66
66
|
|
|
67
67
|
const many = buildCatalogNoticeText({
|
|
68
68
|
failures: ["a", "b", "c", "d", "e", "f"].map((n) => failure(n)),
|
|
@@ -89,7 +89,7 @@ describe("buildCatalogNoticeText", () => {
|
|
|
89
89
|
const line = buildCatalogNoticeText({
|
|
90
90
|
failures: [
|
|
91
91
|
failure("magus", "rate-limited", NOW + 600_000),
|
|
92
|
-
failure("magus-
|
|
92
|
+
failure("magus-alpha", "rate-limited", NOW + 45_000),
|
|
93
93
|
],
|
|
94
94
|
unverifiedPlugins: 2,
|
|
95
95
|
width: 160,
|
|
@@ -75,7 +75,7 @@ describe("marketplace category badge", () => {
|
|
|
75
75
|
});
|
|
76
76
|
|
|
77
77
|
test("MadAppGang marketplaces carry the byline instead of a generic label", () => {
|
|
78
|
-
for (const name of ["magus", "magus-marketing"]) {
|
|
78
|
+
for (const name of ["magus", "magus-marketing", "magus-alpha"]) {
|
|
79
79
|
const badge = badgeFor(
|
|
80
80
|
mp({ name, source: { source: "github", repo: `MadAppGang/${name}` } }),
|
|
81
81
|
);
|
|
@@ -117,6 +117,7 @@ describe("community marketplaces", () => {
|
|
|
117
117
|
const lastMagus = Math.max(
|
|
118
118
|
order.indexOf("magus"),
|
|
119
119
|
order.indexOf("magus-marketing"),
|
|
120
|
+
order.indexOf("magus-alpha"),
|
|
120
121
|
);
|
|
121
122
|
const firstCommunity = Math.min(
|
|
122
123
|
...COMMUNITY_MARKETPLACES.map(([name]) => order.indexOf(name)),
|
package/src/data/marketplaces.ts
CHANGED
|
@@ -52,6 +52,19 @@ export const defaultMarketplaces: Marketplace[] = [
|
|
|
52
52
|
owned: true, // Ours: always listed even when uninstalled, sorted to the top
|
|
53
53
|
// Not featured: a niche channel, so keep it collapsed by default.
|
|
54
54
|
},
|
|
55
|
+
{
|
|
56
|
+
name: "magus-alpha",
|
|
57
|
+
displayName: "Magus Alpha",
|
|
58
|
+
source: {
|
|
59
|
+
source: "github",
|
|
60
|
+
repo: "MadAppGang/magus-alpha",
|
|
61
|
+
},
|
|
62
|
+
description:
|
|
63
|
+
"Experimental plugins with evolving interfaces — may change or be withdrawn without notice",
|
|
64
|
+
official: false,
|
|
65
|
+
owned: true, // Ours: always listed even when uninstalled, sorted to the top
|
|
66
|
+
// Not featured: experimental, so keep it collapsed by default.
|
|
67
|
+
},
|
|
55
68
|
{
|
|
56
69
|
name: "claude-plugins-official",
|
|
57
70
|
displayName: "Anthropic Official",
|
|
@@ -205,7 +205,7 @@ function categoryStyling(
|
|
|
205
205
|
}
|
|
206
206
|
|
|
207
207
|
/**
|
|
208
|
-
* Our own marketplaces (magus, magus-marketing) get the byline
|
|
208
|
+
* Our own marketplaces (magus, magus-marketing, magus-alpha) get the byline
|
|
209
209
|
* instead of the generic "Added". Matched on the repo owner rather than a list
|
|
210
210
|
* of names, so a new channel picks it up without a code change. Same idiom the
|
|
211
211
|
* marketplace sort uses to float MadAppGang entries to the top.
|