@withmata/blueprints 0.4.0 → 0.5.0
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/dist/index.js +27 -10
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import pc4 from "picocolors";
|
|
|
6
6
|
|
|
7
7
|
// src/constants.ts
|
|
8
8
|
var API_URL = process.env["WITHMATA_API_URL"] || "https://blueprints.withmata.dev";
|
|
9
|
-
var VERSION = "0.
|
|
9
|
+
var VERSION = "0.5.0";
|
|
10
10
|
|
|
11
11
|
// src/lib/install-state.ts
|
|
12
12
|
import { existsSync, readdirSync, lstatSync, readlinkSync } from "fs";
|
|
@@ -430,19 +430,28 @@ var SKILL_GROUPS = [
|
|
|
430
430
|
]
|
|
431
431
|
},
|
|
432
432
|
{
|
|
433
|
-
title: "
|
|
433
|
+
title: "Marketing & Design",
|
|
434
434
|
skills: [
|
|
435
435
|
{
|
|
436
|
-
command: "/
|
|
437
|
-
description: "
|
|
436
|
+
command: "/copywrite",
|
|
437
|
+
description: "Write conversion-focused marketing page copy (pricing, about, features)"
|
|
438
438
|
},
|
|
439
439
|
{
|
|
440
|
-
command: "/
|
|
441
|
-
description: "
|
|
440
|
+
command: "/copywrite-landing",
|
|
441
|
+
description: "Write high-converting landing page copy with CRO frameworks"
|
|
442
442
|
},
|
|
443
443
|
{
|
|
444
|
-
command: "/
|
|
445
|
-
description: "
|
|
444
|
+
command: "/design-system",
|
|
445
|
+
description: "Define visual identity and generate custom Tailwind v4 tokens"
|
|
446
|
+
}
|
|
447
|
+
]
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
title: "Scaffold Your Project",
|
|
451
|
+
skills: [
|
|
452
|
+
{
|
|
453
|
+
command: "/scaffold-foundation",
|
|
454
|
+
description: "Set up a monorepo with Turborepo and shared tooling"
|
|
446
455
|
},
|
|
447
456
|
{
|
|
448
457
|
command: "/scaffold-env",
|
|
@@ -450,11 +459,19 @@ var SKILL_GROUPS = [
|
|
|
450
459
|
},
|
|
451
460
|
{
|
|
452
461
|
command: "/scaffold-tailwind",
|
|
453
|
-
description: "Add
|
|
462
|
+
description: "Add Tailwind v4 design system (auto-detects custom design tokens)"
|
|
454
463
|
},
|
|
455
464
|
{
|
|
456
465
|
command: "/scaffold-ui",
|
|
457
|
-
description: "Add
|
|
466
|
+
description: "Add 31 Base UI components with Phosphor icons and form system"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
command: "/scaffold-db",
|
|
470
|
+
description: "Add a database with Drizzle ORM and PostgreSQL"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
command: "/scaffold-auth",
|
|
474
|
+
description: "Add authentication, sessions, and organization support"
|
|
458
475
|
}
|
|
459
476
|
]
|
|
460
477
|
},
|