@sonnechasser/ntrp 0.1.7 → 0.2.0
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 +15 -1
- package/dist/index.js +1986 -596
- package/dist/index.js.map +1 -1
- package/dist/investigation/verbosity-cli.js +897 -202
- package/dist/investigation/verbosity-cli.js.map +1 -1
- package/dist/mcp/server.js +922 -222
- package/dist/mcp/server.js.map +1 -1
- package/dist/whimsy/time-bank-smoke.js +1929 -501
- package/dist/whimsy/time-bank-smoke.js.map +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -84,7 +84,8 @@ ntrp setup check --json
|
|
|
84
84
|
| Command | Description |
|
|
85
85
|
|---------|-------------|
|
|
86
86
|
| `ntrp` | Open the interactive REPL |
|
|
87
|
-
| `/home` | Status dashboard (license, profile, dataset) |
|
|
87
|
+
| `/home` | Status dashboard (license, profile, dataset, progress) |
|
|
88
|
+
| `/progress` | Usage stats and milestone ladder (no license required) |
|
|
88
89
|
| `/checkout` | Open signup checkout in browser |
|
|
89
90
|
| `/upgrade` | Trial → Pro checkout + paste key |
|
|
90
91
|
| `/onboard` | Company profile wizard |
|
|
@@ -124,6 +125,19 @@ npm install -g @sonnechasser/ntrp@latest
|
|
|
124
125
|
|
|
125
126
|
Local state lives in `~/.ntrp/` (config, sessions, DuckDB datasets). Override with `NTRP_HOME` if needed.
|
|
126
127
|
|
|
128
|
+
**Progress (usage tracking)** — install-scoped, separate from pipeline data:
|
|
129
|
+
|
|
130
|
+
| File | Purpose | Survives `/scratch`? |
|
|
131
|
+
|------|---------|----------------------|
|
|
132
|
+
| `install.json` | Stable install identity on this machine | Yes (default) |
|
|
133
|
+
| `progress.json` | Hours saved, milestones, usage stats | Yes (default) |
|
|
134
|
+
|
|
135
|
+
- `ntrp reset --force` — clears DuckDB pipeline data only; progress unchanged
|
|
136
|
+
- `/scratch` — wipes config, profile, sessions, datasets; **preserves** progress by default
|
|
137
|
+
- `/scratch --include-progress` — also wipes `install.json` and `progress.json`
|
|
138
|
+
- `/progress reset` — clears hours/milestones; keeps `install.json`
|
|
139
|
+
- `rm -rf ~/.ntrp` — removes everything (nuclear option)
|
|
140
|
+
|
|
127
141
|
Checkout URL overrides (optional):
|
|
128
142
|
|
|
129
143
|
- `NTRP_CHECKOUT_URL` — signup / first-run
|