tcsetup 1.6.1 → 1.7.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
@@ -31,6 +31,8 @@ Options (init):
31
31
  --skip-lifecycle Skip Feature Lifecycle Tracker init
32
32
  --skip-knowledge Skip Knowledge System init
33
33
  --skip-product Skip Product Manager init
34
+ --skip-qa Skip QA System init
35
+ --skip-playbook Skip Playbook Supervisor init
34
36
  `;
35
37
 
36
38
  switch (command) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tcsetup",
3
- "version": "1.6.1",
3
+ "version": "1.7.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
@@ -52,6 +52,11 @@ const steps = [
52
52
  flag: "--skip-qa",
53
53
  cmd: "npx @tcanaud/qa-system init --yes",
54
54
  },
55
+ {
56
+ name: "Playbook Supervisor",
57
+ flag: "--skip-playbook",
58
+ cmd: "npx @tcanaud/playbook init --yes",
59
+ },
55
60
  ];
56
61
 
57
62
  export function install(flags = []) {
package/src/updater.js CHANGED
@@ -49,6 +49,12 @@ const TOOLS = [
49
49
  pkg: "@tcanaud/qa-system",
50
50
  cmd: "npx @tcanaud/qa-system update",
51
51
  },
52
+ {
53
+ name: "Playbook Supervisor",
54
+ marker: ".playbooks",
55
+ pkg: "@tcanaud/playbook",
56
+ cmd: "npx @tcanaud/playbook update",
57
+ },
52
58
  ];
53
59
 
54
60
  const COMMAND_FILES = ["tcsetup.onboard.md"];