tcsetup 1.0.1 → 1.0.4

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.
Files changed (2) hide show
  1. package/bin/cli.js +12 -0
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -16,7 +16,9 @@ Options:
16
16
  --skip-bmad Skip BMAD Method install
17
17
  --skip-speckit Skip Spec Kit init
18
18
  --skip-agreements Skip Agreement System init
19
+ --skip-adr Skip ADR System init
19
20
  --skip-mermaid Skip Mermaid Workbench init
21
+ --skip-lifecycle Skip Feature Lifecycle Tracker init
20
22
  `;
21
23
 
22
24
  if (flags.includes("help") || flags.includes("--help") || flags.includes("-h")) {
@@ -40,11 +42,21 @@ const steps = [
40
42
  flag: "--skip-agreements",
41
43
  cmd: "npx agreement-system init --yes",
42
44
  },
45
+ {
46
+ name: "ADR System",
47
+ flag: "--skip-adr",
48
+ cmd: "npx adr-system init --yes",
49
+ },
43
50
  {
44
51
  name: "Mermaid Workbench",
45
52
  flag: "--skip-mermaid",
46
53
  cmd: "npx mermaid-workbench init",
47
54
  },
55
+ {
56
+ name: "Feature Lifecycle Tracker",
57
+ flag: "--skip-lifecycle",
58
+ cmd: "npx feature-lifecycle init --yes",
59
+ },
48
60
  ];
49
61
 
50
62
  console.log("\n tcsetup v1.0.0\n");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tcsetup",
3
- "version": "1.0.1",
3
+ "version": "1.0.4",
4
4
  "type": "module",
5
5
  "description": "Bootstrap a new project with BMAD, Spec Kit, Agreement System, and Mermaid Workbench in one command.",
6
6
  "bin": {