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