tcsetup 1.3.0 → 1.3.1

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/README.md +25 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # tcsetup
2
2
 
3
- Bootstrap a new project with the full TC toolchain in one command.
3
+ Bootstrap and update a project with the full TC toolchain in one command.
4
4
 
5
5
  ## What it installs
6
6
 
@@ -9,21 +9,43 @@ Bootstrap a new project with the full TC toolchain in one command.
9
9
  | 1 | [BMAD Method](https://github.com/bmad-code-org/BMAD-METHOD) | `npx bmad-method install` |
10
10
  | 2 | [Spec Kit](https://github.com/github/spec-kit) | `specify init --here --ai claude` |
11
11
  | 3 | [Agreement System](https://github.com/tcanaud/agreement-system) | `npx agreement-system init --yes` |
12
- | 4 | [Mermaid Workbench](https://github.com/tcanaud/mermaid-workbench) | `npx mermaid-workbench init` |
12
+ | 4 | [ADR System](https://github.com/tcanaud/adr-system) | `npx adr-system init --yes` |
13
+ | 5 | [Mermaid Workbench](https://github.com/tcanaud/mermaid-workbench) | `npx mermaid-workbench init` |
14
+ | 6 | [Feature Lifecycle](https://github.com/tcanaud/feature-lifecycle) | `npx feature-lifecycle init --yes` |
13
15
 
14
16
  ## Usage
15
17
 
18
+ ### Init (onboard a new project)
19
+
16
20
  ```bash
17
21
  npx tcsetup
22
+ # or explicitly:
23
+ npx tcsetup init
24
+ ```
25
+
26
+ ### Update (refresh an existing project)
27
+
28
+ ```bash
29
+ npx tcsetup update
30
+ ```
31
+
32
+ Detects which tools are installed (by marker directories), updates their npm packages to latest, runs each tool's update command to refresh commands/templates, and refreshes tcsetup's own Claude Code command files. User data is never touched.
33
+
34
+ ### Help
35
+
36
+ ```bash
37
+ npx tcsetup help
18
38
  ```
19
39
 
20
- ### Skip specific steps
40
+ ### Skip specific steps (init only)
21
41
 
22
42
  ```bash
23
43
  npx tcsetup --skip-bmad
24
44
  npx tcsetup --skip-speckit
25
45
  npx tcsetup --skip-agreements
46
+ npx tcsetup --skip-adr
26
47
  npx tcsetup --skip-mermaid
48
+ npx tcsetup --skip-lifecycle
27
49
  ```
28
50
 
29
51
  Multiple flags can be combined:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tcsetup",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
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": {