@nikkory/vibe-cli 2.0.0 → 2.1.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/cli.js CHANGED
@@ -2681,8 +2681,8 @@ var ComponentGenerator = class {
2681
2681
  };
2682
2682
 
2683
2683
  // src/commands/matrix-generate.ts
2684
- var matrixGenerateCommand = new import_commander11.Command("matrix-generate").description("Generate UI component using Matrix Multiplication (24-Factor System)").argument("<component>", "Component ID (e.g., button, input, card)").option(
2685
- "-d, --design-system <system>",
2684
+ var matrixGenerateCommand = new import_commander11.Command("add").alias("gen").alias("generate").description("Add/Generate UI component using Matrix system (24 factors, 12 design systems, 3 tiers)").argument("<component>", "Component ID (e.g., button, input, card)").option(
2685
+ "-s, --design-system <system>",
2686
2686
  "Design system (material-design, ios-hig, glassmorphism, neumorphism, brutalism, minimalism, fluent, carbon, ant-design, chakra, atlassian, blueprint)",
2687
2687
  "material-design"
2688
2688
  ).option(
package/dist/index.js CHANGED
@@ -999,8 +999,8 @@ var ComponentGenerator = class {
999
999
  };
1000
1000
 
1001
1001
  // src/commands/matrix-generate.ts
1002
- var matrixGenerateCommand = new import_commander3.Command("matrix-generate").description("Generate UI component using Matrix Multiplication (24-Factor System)").argument("<component>", "Component ID (e.g., button, input, card)").option(
1003
- "-d, --design-system <system>",
1002
+ var matrixGenerateCommand = new import_commander3.Command("add").alias("gen").alias("generate").description("Add/Generate UI component using Matrix system (24 factors, 12 design systems, 3 tiers)").argument("<component>", "Component ID (e.g., button, input, card)").option(
1003
+ "-s, --design-system <system>",
1004
1004
  "Design system (material-design, ios-hig, glassmorphism, neumorphism, brutalism, minimalism, fluent, carbon, ant-design, chakra, atlassian, blueprint)",
1005
1005
  "material-design"
1006
1006
  ).option(
@@ -1061,7 +1061,7 @@ var matrixGenerateCommand = new import_commander3.Command("matrix-generate").des
1061
1061
 
1062
1062
  // src/index.ts
1063
1063
  var program = new import_commander4.Command();
1064
- program.name("nikkory-vibe").description("Nikkory Vibe - Production-ready code in seconds").version("2.0.0");
1064
+ program.name("nikkory-vibe").description("Nikkory Vibe - Production-ready code in seconds").version("2.1.0");
1065
1065
  program.addCommand(matrixGenerateCommand);
1066
1066
  program.addCommand(listCommand);
1067
1067
  program.addCommand(initCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nikkory/vibe-cli",
3
- "version": "2.0.0",
3
+ "version": "2.1.0",
4
4
  "description": "CLI tool for Nikkory Vibe - Generate production-ready code in seconds",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",