@sonnechasser/ntrp 0.1.2 → 0.1.4
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 +33 -8
- package/dist/index.js +1113 -372
- 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 +152 -7
- package/dist/mcp/server.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,17 +14,35 @@ 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
|
-
##
|
|
17
|
+
## License & trial
|
|
18
18
|
|
|
19
|
-
NTRP requires a license key from
|
|
19
|
+
NTRP requires a license key from [Lemon Squeezy](https://sonnechasser.lemonsqueezy.com). Customer keys are UUID format (e.g. `36150FCC-711E-4BCA-...`) delivered by email after checkout.
|
|
20
20
|
|
|
21
|
-
**On first launch**, `ntrp`
|
|
21
|
+
**On first launch**, `ntrp` opens the signup checkout (free trial or Pro), then prompts you to paste your key.
|
|
22
|
+
|
|
23
|
+
| Flow | Command | Checkout |
|
|
24
|
+
|------|---------|----------|
|
|
25
|
+
| New signup (trial or Pro) | First launch, `/checkout` | [Signup](https://sonnechasser.lemonsqueezy.com/checkout/buy/d62d35a2-a369-4cf5-a88b-328223866b5f) |
|
|
26
|
+
| Trial → Pro upgrade | `/upgrade` | [Pro only](https://sonnechasser.lemonsqueezy.com/checkout/buy/3bd1da42-936f-49a6-a6c3-d11eee213884) |
|
|
27
|
+
|
|
28
|
+
**Trial policy:** 11 days full access, then grace through day 30. After day 30, run `/upgrade` and paste your Pro key.
|
|
29
|
+
|
|
30
|
+
Activate manually if you already have a key:
|
|
22
31
|
|
|
23
32
|
```bash
|
|
24
|
-
ntrp activate
|
|
33
|
+
ntrp activate <your-license-key>
|
|
25
34
|
```
|
|
26
35
|
|
|
27
|
-
In the REPL: `/activate
|
|
36
|
+
In the REPL: `/activate <your-license-key>`
|
|
37
|
+
|
|
38
|
+
### Test as a new user
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
npm uninstall -g @sonnechasser/ntrp
|
|
42
|
+
rm -rf ~/.ntrp
|
|
43
|
+
npm install -g @sonnechasser/ntrp@latest
|
|
44
|
+
ntrp
|
|
45
|
+
```
|
|
28
46
|
|
|
29
47
|
## Quick start
|
|
30
48
|
|
|
@@ -66,11 +84,13 @@ ntrp setup check --json
|
|
|
66
84
|
| Command | Description |
|
|
67
85
|
|---------|-------------|
|
|
68
86
|
| `ntrp` | Open the interactive REPL |
|
|
69
|
-
| `/home` | Status dashboard |
|
|
87
|
+
| `/home` | Status dashboard (license, profile, dataset) |
|
|
88
|
+
| `/checkout` | Open signup checkout in browser |
|
|
89
|
+
| `/upgrade` | Trial → Pro checkout + paste key |
|
|
70
90
|
| `/onboard` | Company profile wizard |
|
|
71
91
|
| `/demo` | Load demo scenario data |
|
|
72
92
|
| `/handoff` | Export or agent prompts |
|
|
73
|
-
| `/update` | Upgrade to the latest version |
|
|
93
|
+
| `/update` | Upgrade to the latest npm version |
|
|
74
94
|
| `ntrp setup check` | Validate local configuration |
|
|
75
95
|
|
|
76
96
|
Type `/help` inside the REPL for shortcuts.
|
|
@@ -97,13 +117,18 @@ Inside the REPL:
|
|
|
97
117
|
Or reinstall:
|
|
98
118
|
|
|
99
119
|
```bash
|
|
100
|
-
npm install -g @sonnechasser/ntrp
|
|
120
|
+
npm install -g @sonnechasser/ntrp@latest
|
|
101
121
|
```
|
|
102
122
|
|
|
103
123
|
## Data & config
|
|
104
124
|
|
|
105
125
|
Local state lives in `~/.ntrp/` (config, sessions, DuckDB datasets). Override with `NTRP_HOME` if needed.
|
|
106
126
|
|
|
127
|
+
Checkout URL overrides (optional):
|
|
128
|
+
|
|
129
|
+
- `NTRP_CHECKOUT_URL` — signup / first-run
|
|
130
|
+
- `NTRP_UPGRADE_URL` — Pro upgrade (`/upgrade`)
|
|
131
|
+
|
|
107
132
|
## Links
|
|
108
133
|
|
|
109
134
|
- **Website:** [ntrp.sonnechasser.com](https://ntrp.sonnechasser.com)
|