@torus-engineering/tas-kit 1.5.0 → 1.5.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.
- package/README.md +3 -3
- package/bin/cli.js +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
## Quick Start
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npx tas-kit install
|
|
8
|
+
npx @torus-engineering/tas-kit install
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Options
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
npx tas-kit install --directory /path/to/my-project
|
|
15
|
-
npx tas-kit install --yes # skip confirmation prompts
|
|
14
|
+
npx @torus-engineering/tas-kit install --directory /path/to/my-project
|
|
15
|
+
npx @torus-engineering/tas-kit install --yes # skip confirmation prompts
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
## What gets installed
|
package/bin/cli.js
CHANGED
|
@@ -9,7 +9,7 @@ function printHelp() {
|
|
|
9
9
|
tas-kit — Torus Agentic SDLC Kit installer
|
|
10
10
|
|
|
11
11
|
Usage:
|
|
12
|
-
npx tas-kit install [options]
|
|
12
|
+
npx @torus-engineering/tas-kit install [options]
|
|
13
13
|
|
|
14
14
|
Options:
|
|
15
15
|
--directory <path> Target directory (default: current working directory)
|
|
@@ -17,9 +17,9 @@ Options:
|
|
|
17
17
|
--help, -h Show this help message
|
|
18
18
|
|
|
19
19
|
Examples:
|
|
20
|
-
npx tas-kit install
|
|
21
|
-
npx tas-kit install --directory /path/to/my-project
|
|
22
|
-
npx tas-kit install --yes
|
|
20
|
+
npx @torus-engineering/tas-kit install
|
|
21
|
+
npx @torus-engineering/tas-kit install --directory /path/to/my-project
|
|
22
|
+
npx @torus-engineering/tas-kit install --yes
|
|
23
23
|
`.trim());
|
|
24
24
|
}
|
|
25
25
|
|