@finny-ai/finny-pro 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.
Files changed (3) hide show
  1. package/LICENSE +48 -0
  2. package/README.md +42 -0
  3. package/package.json +2 -2
package/LICENSE ADDED
@@ -0,0 +1,48 @@
1
+ FINNY PRO — PROPRIETARY SOFTWARE LICENSE
2
+
3
+ Copyright (c) 2026 Finny. All rights reserved.
4
+
5
+ This software, including its compiled binaries (the "Software"), is licensed, not
6
+ sold. By installing or using the Software you agree to this License and to the
7
+ Finny End User License Agreement at https://finnyai.tech/legal/eula.
8
+
9
+ 1. LICENSE GRANT. Subject to a valid, active Finny license and your compliance
10
+ with these terms, Finny grants you a limited, non-exclusive, non-transferable,
11
+ non-sublicensable, revocable license to install and use the Software for your
12
+ own internal use, on the number of devices permitted by your subscription.
13
+
14
+ 2. RESTRICTIONS. You may NOT, and may not permit or enable any third party to:
15
+ (a) reverse engineer, decompile, disassemble, deobfuscate, decrypt, unpack,
16
+ extract, or otherwise attempt to derive, reconstruct, or inspect the
17
+ source code, algorithms, models, prompts, or internal structure of the
18
+ Software or any compiled binary;
19
+ (b) circumvent, disable, bypass, or tamper with any license verification or
20
+ technical protection measure;
21
+ (c) copy, distribute, sublicense, sell, rent, lease, lend, publish, mirror,
22
+ host, deploy, or otherwise make the Software (in whole or in part, in
23
+ original or modified form) available to any third party or to the public;
24
+ (d) create derivative works based on the Software; or
25
+ (e) share, publish, resell, or transfer your license key.
26
+
27
+ 3. OWNERSHIP. The Software and all intellectual property rights in it are owned
28
+ by Finny and protected by copyright, trade-secret, and other laws. No rights
29
+ are granted except those expressly stated in this License.
30
+
31
+ 4. TERMINATION. This License and your rights under it terminate automatically
32
+ upon any breach. Finny may suspend or revoke your license at any time for
33
+ breach or suspected circumvention or reverse engineering. On termination you
34
+ must cease all use of the Software and destroy all copies.
35
+
36
+ 5. NO WARRANTY; LIMITATION OF LIABILITY. THE SOFTWARE IS PROVIDED "AS IS" WITHOUT
37
+ WARRANTY OF ANY KIND. FINNY DOES NOT PROVIDE FINANCIAL, INVESTMENT, OR TRADING
38
+ ADVICE; SIMULATED OR BACKTESTED RESULTS DO NOT GUARANTEE FUTURE PERFORMANCE. TO
39
+ THE MAXIMUM EXTENT PERMITTED BY LAW, FINNY SHALL NOT BE LIABLE FOR ANY TRADING
40
+ LOSSES OR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, OR PUNITIVE DAMAGES
41
+ ARISING FROM THE SOFTWARE OR THIS LICENSE.
42
+
43
+ 6. GOVERNING LAW. This License is governed by the laws of the Province of Ontario
44
+ and the federal laws of Canada applicable therein, without regard to conflict-
45
+ of-laws principles.
46
+
47
+ Full terms: https://finnyai.tech/legal/eula
48
+ Contact: jaimin@finnyai.tech
package/README.md ADDED
@@ -0,0 +1,42 @@
1
+ # @finny-ai/finny-pro
2
+
3
+ Finny Pro — the AI trading assistant CLI for licensed users. Ships as a signed,
4
+ compiled binary; requires a valid Finny Pro license.
5
+
6
+ ## Install
7
+
8
+ ```bash
9
+ npm install -g @finny-ai/finny-pro
10
+ ```
11
+
12
+ ## Usage
13
+
14
+ ```bash
15
+ finny-pro
16
+ ```
17
+
18
+ You'll be asked to activate with your Finny Pro license key on first run. Get a
19
+ license at https://finnyai.tech/pro.
20
+
21
+ ## License — Proprietary. No reverse engineering or redistribution.
22
+
23
+ This is **proprietary software, licensed not sold.** It is distributed only as a
24
+ compiled binary. By installing or using it you agree to the
25
+ [End User License Agreement](https://finnyai.tech/legal/eula). In particular, you
26
+ **may not**:
27
+
28
+ - **reverse engineer, decompile, deobfuscate, unpack, or otherwise inspect or
29
+ reconstruct** the binary or its source, algorithms, or internal logic;
30
+ - **circumvent or tamper with** license verification or any technical protection;
31
+ - **copy, redistribute, publish, mirror, host, deploy, or resell** the package,
32
+ in whole or in part, in original or modified form; or
33
+ - **share or transfer your license key.**
34
+
35
+ Violations terminate your license and may be pursued under copyright, trade-secret,
36
+ and contract law. The full `LICENSE` file is bundled with this package, and the
37
+ complete terms are at the [End User License Agreement](https://finnyai.tech/legal/eula).
38
+
39
+ Not financial advice. Trading involves risk; simulated results do not guarantee
40
+ future performance.
41
+
42
+ © 2026 Finny. All rights reserved. · jaimin@finnyai.tech
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finny-ai/finny-pro",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "bin": {
5
5
  "finny-pro": "./bin/opencode"
6
6
  },
@@ -21,5 +21,5 @@
21
21
  "@finny-ai/finny-pro-windows-x64": "0.1.2",
22
22
  "@finny-ai/finny-pro-windows-x64-baseline": "0.1.2"
23
23
  },
24
- "license": "UNLICENSED"
24
+ "license": "SEE LICENSE IN LICENSE"
25
25
  }