@kuandotdev/indicator 0.1.3 → 0.1.5
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
CHANGED
|
@@ -8,32 +8,26 @@ MCP/agent import, market data, and model forecast checks.
|
|
|
8
8
|
The npm package includes the installable project files directly, so users do not
|
|
9
9
|
need GitHub repository access to install the tool.
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Installation
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Run directly with `npx`:
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
|
|
17
|
-
make uninstall
|
|
18
|
-
make install FORCE_INSTALL=1
|
|
19
|
-
make agent-import PLATFORM=auto
|
|
20
|
-
make check-skills
|
|
16
|
+
npx @kuandotdev/indicator install
|
|
21
17
|
```
|
|
22
18
|
|
|
23
|
-
|
|
19
|
+
Or install it into your current project first:
|
|
24
20
|
|
|
25
21
|
```bash
|
|
26
|
-
|
|
27
|
-
|
|
22
|
+
npm i @kuandotdev/indicator
|
|
23
|
+
npx indicator install
|
|
28
24
|
```
|
|
29
25
|
|
|
30
|
-
|
|
26
|
+
Or install globally:
|
|
31
27
|
|
|
32
28
|
```bash
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
npx @kuandotdev/indicator uninstall --platform auto
|
|
29
|
+
npm i -g @kuandotdev/indicator
|
|
30
|
+
indicator install
|
|
36
31
|
```
|
|
37
32
|
|
|
38
|
-
|
|
39
|
-
ship this package as a thin local installer/client.
|
|
33
|
+
The `npx @kuandotdev/indicator install` option is recommended for most users.
|
package/package.json
CHANGED
|
@@ -8,32 +8,26 @@ MCP/agent import, market data, and model forecast checks.
|
|
|
8
8
|
The npm package includes the installable project files directly, so users do not
|
|
9
9
|
need GitHub repository access to install the tool.
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Installation
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Run directly with `npx`:
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
|
|
17
|
-
make uninstall
|
|
18
|
-
make install FORCE_INSTALL=1
|
|
19
|
-
make agent-import PLATFORM=auto
|
|
20
|
-
make check-skills
|
|
16
|
+
npx @kuandotdev/indicator install
|
|
21
17
|
```
|
|
22
18
|
|
|
23
|
-
|
|
19
|
+
Or install it into your current project first:
|
|
24
20
|
|
|
25
21
|
```bash
|
|
26
|
-
|
|
27
|
-
|
|
22
|
+
npm i @kuandotdev/indicator
|
|
23
|
+
npx indicator install
|
|
28
24
|
```
|
|
29
25
|
|
|
30
|
-
|
|
26
|
+
Or install globally:
|
|
31
27
|
|
|
32
28
|
```bash
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
npx @kuandotdev/indicator uninstall --platform auto
|
|
29
|
+
npm i -g @kuandotdev/indicator
|
|
30
|
+
indicator install
|
|
36
31
|
```
|
|
37
32
|
|
|
38
|
-
|
|
39
|
-
ship this package as a thin local installer/client.
|
|
33
|
+
The `npx @kuandotdev/indicator install` option is recommended for most users.
|