@sonnechasser/ntrp 0.1.1 → 0.1.3
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 +11 -11
- package/dist/index.js +1109 -357
- package/dist/index.js.map +1 -1
- package/dist/investigation/verbosity-cli.js +7 -1
- package/dist/investigation/verbosity-cli.js.map +1 -1
- package/dist/mcp/server.js +145 -7
- package/dist/mcp/server.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,32 +14,32 @@ NTRP sits on top of your CRM exports and activity data, computes five vital sign
|
|
|
14
14
|
npm install -g @sonnechasser/ntrp
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
Verify:
|
|
18
|
-
|
|
19
|
-
```bash
|
|
20
|
-
ntrp setup check
|
|
21
|
-
```
|
|
22
|
-
|
|
23
17
|
## Activate your license
|
|
24
18
|
|
|
25
|
-
|
|
19
|
+
NTRP requires a license key from purchase. Keys are delivered after checkout via [ntrp.sonnechasser.com](https://ntrp.sonnechasser.com) (Lemon Squeezy).
|
|
20
|
+
|
|
21
|
+
**On first launch**, `ntrp` will prompt you to paste your key. You can also activate manually:
|
|
26
22
|
|
|
27
23
|
```bash
|
|
28
24
|
ntrp activate NTRP-XXXX-XXXX-XXXX
|
|
29
25
|
```
|
|
30
26
|
|
|
31
|
-
In the
|
|
32
|
-
|
|
33
|
-
Purchase a license at [ntrp.sonnechasser.com](https://ntrp.sonnechasser.com).
|
|
27
|
+
In the REPL: `/activate NTRP-XXXX-XXXX-XXXX`
|
|
34
28
|
|
|
35
29
|
## Quick start
|
|
36
30
|
|
|
37
|
-
Launch the
|
|
31
|
+
Launch the interactive REPL (license prompt runs first if needed):
|
|
38
32
|
|
|
39
33
|
```bash
|
|
40
34
|
ntrp
|
|
41
35
|
```
|
|
42
36
|
|
|
37
|
+
Verify setup:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
ntrp setup check
|
|
41
|
+
```
|
|
42
|
+
|
|
43
43
|
On first run, complete `/onboard` to set up your company profile, or load sample data:
|
|
44
44
|
|
|
45
45
|
- Type `use demo data` in the REPL, or
|