@sonnechasser/ntrp 1.3.5 → 1.3.8
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/LICENSE +24 -0
- package/README.md +4 -2
- package/dist/index.js +23484 -23393
- package/dist/mcp/server.js +3725 -3000
- package/package.json +8 -3
- package/dist/ai/findings-stream-smoke.js +0 -185
- package/dist/ai/findings-stream-smoke.js.map +0 -1
- package/dist/ai/guardrails-smoke.js +0 -25584
- package/dist/ai/guardrails-smoke.js.map +0 -1
- package/dist/conversation/deepdive-smoke.js +0 -3416
- package/dist/conversation/deepdive-smoke.js.map +0 -1
- package/dist/conversation/loop-guard-smoke.js +0 -37627
- package/dist/conversation/loop-guard-smoke.js.map +0 -1
- package/dist/demo/whimsy-smoke.js +0 -692
- package/dist/demo/whimsy-smoke.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/investigation/quality-eval-cli.js +0 -24564
- package/dist/investigation/quality-eval-cli.js.map +0 -1
- package/dist/investigation/verbosity-cli.js +0 -24373
- package/dist/investigation/verbosity-cli.js.map +0 -1
- package/dist/mcp/server.js.map +0 -1
- package/dist/services/exports-registry-smoke.js +0 -1205
- package/dist/services/exports-registry-smoke.js.map +0 -1
- package/dist/services/transcript-smoke.js +0 -1101
- package/dist/services/transcript-smoke.js.map +0 -1
- package/dist/strategist/strategist-smoke.js +0 -3073
- package/dist/strategist/strategist-smoke.js.map +0 -1
- package/dist/whimsy/time-bank-smoke.js +0 -36126
- package/dist/whimsy/time-bank-smoke.js.map +0 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Copyright (c) 2026 Sonnechasser. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This software is licensed, not sold. You may install and use it only with a
|
|
4
|
+
valid license key issued by Sonnechasser or its payment processor (Lemon
|
|
5
|
+
Squeezy). Activating a key constitutes acceptance of these terms.
|
|
6
|
+
|
|
7
|
+
You may not:
|
|
8
|
+
|
|
9
|
+
- copy, modify, or distribute the software, except as needed to run your
|
|
10
|
+
licensed copy on machines you control;
|
|
11
|
+
- remove, bypass, or disable license, trial, or activation checks;
|
|
12
|
+
- share, resell, or sublicense license keys;
|
|
13
|
+
- use the software, its prompts, formulas, playbooks, or other contents to
|
|
14
|
+
build a competing product;
|
|
15
|
+
- reverse engineer the software, except to the extent that applicable law
|
|
16
|
+
prohibits this restriction.
|
|
17
|
+
|
|
18
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
19
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
20
|
+
FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
21
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER
|
|
22
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING
|
|
23
|
+
FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
24
|
+
DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -16,7 +16,9 @@ npm install -g @sonnechasser/ntrp
|
|
|
16
16
|
|
|
17
17
|
## License & trial
|
|
18
18
|
|
|
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.
|
|
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. `NTRP-` prefixed keys are a git-checkout/CI path only and are **not** accepted by the published npm build.
|
|
20
|
+
|
|
21
|
+
Use is governed by the proprietary [LICENSE](LICENSE) in this package. Activating a key accepts those terms.
|
|
20
22
|
|
|
21
23
|
**On first launch**, `ntrp` opens the signup checkout (free trial or Pro), then prompts you to paste your key.
|
|
22
24
|
|
|
@@ -152,4 +154,4 @@ Checkout URL overrides (optional):
|
|
|
152
154
|
|
|
153
155
|
## License
|
|
154
156
|
|
|
155
|
-
|
|
157
|
+
Proprietary commercial software. See [LICENSE](LICENSE). A valid Lemon Squeezy key is required to use the published CLI. The npm package does not grant rights to copy, modify, redistribute, or extract the software to build a competing product.
|