@synapsync/cli 0.1.6 → 0.1.7
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 +7 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -28,7 +28,7 @@ var init_version = __esm({
|
|
|
28
28
|
"src/version.ts"() {
|
|
29
29
|
"use strict";
|
|
30
30
|
init_esm_shims();
|
|
31
|
-
version = "0.1.
|
|
31
|
+
version = "0.1.7";
|
|
32
32
|
}
|
|
33
33
|
});
|
|
34
34
|
|
|
@@ -82,7 +82,9 @@ var CATEGORIES = [
|
|
|
82
82
|
"testing",
|
|
83
83
|
"analytics",
|
|
84
84
|
"automation",
|
|
85
|
-
"general"
|
|
85
|
+
"general",
|
|
86
|
+
"integrations",
|
|
87
|
+
"planning"
|
|
86
88
|
];
|
|
87
89
|
var SUPPORTED_PROVIDERS = [
|
|
88
90
|
"claude",
|
|
@@ -574,7 +576,9 @@ function showCategoriesInfo() {
|
|
|
574
576
|
{ name: "testing", description: "Unit tests, E2E, test generation", color: pc3.green },
|
|
575
577
|
{ name: "analytics", description: "Metrics, tracking, data analysis", color: pc3.cyan },
|
|
576
578
|
{ name: "automation", description: "Scripts, workflows, task automation", color: pc3.green },
|
|
577
|
-
{ name: "general", description: "General purpose, code review, docs", color: pc3.white }
|
|
579
|
+
{ name: "general", description: "General purpose, code review, docs", color: pc3.white },
|
|
580
|
+
{ name: "integrations", description: "External services (Supabase, Stripe, etc.)", color: pc3.blue },
|
|
581
|
+
{ name: "planning", description: "Project planning, SDLC, requirements, architecture", color: pc3.magenta }
|
|
578
582
|
];
|
|
579
583
|
logger.log(` ${pc3.dim("Category")} ${pc3.dim("Description")}`);
|
|
580
584
|
logger.log(pc3.dim(" " + "\u2500".repeat(55)));
|