tcsetup 1.4.0 → 1.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/bin/cli.js CHANGED
@@ -30,6 +30,7 @@ Options (init):
30
30
  --skip-mermaid Skip Mermaid Workbench init
31
31
  --skip-lifecycle Skip Feature Lifecycle Tracker init
32
32
  --skip-knowledge Skip Knowledge System init
33
+ --skip-product Skip Product Manager init
33
34
  `;
34
35
 
35
36
  switch (command) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tcsetup",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
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": {
package/src/installer.js CHANGED
@@ -42,6 +42,11 @@ const steps = [
42
42
  flag: "--skip-knowledge",
43
43
  cmd: "npx @tcanaud/knowledge-system init --yes",
44
44
  },
45
+ {
46
+ name: "Product Manager",
47
+ flag: "--skip-product",
48
+ cmd: "npx @tcanaud/product-manager init --yes",
49
+ },
45
50
  ];
46
51
 
47
52
  export function install(flags = []) {
package/src/updater.js CHANGED
@@ -37,6 +37,12 @@ const TOOLS = [
37
37
  pkg: "@tcanaud/knowledge-system",
38
38
  cmd: "npx @tcanaud/knowledge-system update && npx @tcanaud/knowledge-system refresh",
39
39
  },
40
+ {
41
+ name: "Product Manager",
42
+ marker: ".product",
43
+ pkg: "@tcanaud/product-manager",
44
+ cmd: "npx @tcanaud/product-manager update",
45
+ },
40
46
  ];
41
47
 
42
48
  const COMMAND_FILES = ["tcsetup.onboard.md", "feature.workflow.md"];