claudeup 4.38.0 → 4.38.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": "4.38.0",
3
+ "version": "4.38.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": "4.38.0",
68
- "claudeup-darwin-x64": "4.38.0",
69
- "claudeup-linux-x64": "4.38.0"
67
+ "claudeup-darwin-arm64": "4.38.1",
68
+ "claudeup-darwin-x64": "4.38.1",
69
+ "claudeup-linux-x64": "4.38.1"
70
70
  }
71
71
  }
@@ -155,6 +155,8 @@ export const COMMUNITY_SOURCES: CommunityStyleSource[] = [
155
155
  pushedAt: "2026-04-03",
156
156
  },
157
157
  {
158
+ // Retired 2026-08-18: its only style is superseded by the first-party
159
+ // `asd-ste100` modifier in style@magus 2.1.0 — see the style entry below.
158
160
  id: "simple-english",
159
161
  repo: "AminBlg/SimpleEnglish",
160
162
  dir: "output-styles",
@@ -164,13 +166,14 @@ export const COMMUNITY_SOURCES: CommunityStyleSource[] = [
164
166
  author: "AminBlg",
165
167
  homepage: "https://github.com/AminBlg/SimpleEnglish",
166
168
  pushedAt: "2026-08-17",
169
+ retired: true,
167
170
  },
168
171
  ];
169
172
 
170
173
  // ─── Styles ──────────────────────────────────────────────────────────────────
171
174
 
172
175
  /**
173
- * 22 entries across the 5 sources above.
176
+ * 23 entries across the 6 sources above; one is retired, so 22 are offered.
174
177
  *
175
178
  * Every `path` and every `displayName` here was produced by
176
179
  * `scripts/verify-community-registry.ts --discover`, which lists the repo's
@@ -376,12 +379,19 @@ export const COMMUNITY_STYLES: CommunityStyle[] = [
376
379
  },
377
380
  // ── simple-english ───────────────────────────────────────────────────────
378
381
  {
382
+ // Retired 2026-08-18: superseded by our own condensation of the same
383
+ // standard — the `asd-ste100` modifier preset that ships in style@magus
384
+ // 2.1.0. Offering both would list ASD-STE100 twice, and the upstream file
385
+ // injects far more text than the preset does. Retired rather than
386
+ // deleted so a committed `.claude/style.json` naming this id still
387
+ // resolves and fetches.
379
388
  id: "simple-english--simple-english",
380
389
  sourceId: "simple-english",
381
390
  path: "output-styles/simple-english.md",
382
391
  displayName: "Simple English",
383
392
  summary:
384
393
  "ASD-STE100 Simplified Technical English. One word one meaning, short sentences, no filler.",
394
+ retired: true,
385
395
  },
386
396
  ];
387
397