@emend-ai/utim 2.1.1 → 2.1.2
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 +22 -17
- package/bin/utimlite.js +12 -0
- package/package.json +4 -2
package/LICENSE
CHANGED
|
@@ -1,21 +1,26 @@
|
|
|
1
|
-
|
|
1
|
+
UTIM PROPRIETARY SOFTWARE END USER LICENSE AGREEMENT (EULA)
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2026
|
|
3
|
+
Copyright (c) 2026 Emend AI. All Rights Reserved.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
5
|
+
IMPORTANT: READ THIS LICENSE AGREEMENT CAREFULLY BEFORE DOWNLOADING, INSTALLING, OR USING THE UTIM CLI SOFTWARE.
|
|
11
6
|
|
|
12
|
-
|
|
13
|
-
|
|
7
|
+
1. PROPRIETARY SOFTWARE
|
|
8
|
+
UTIM CLI ("Software") is proprietary commercial software developed and owned exclusively by Emend AI ("Licensor"). The Software is licensed, not sold, to you ("Licensee") under the terms and conditions of this Agreement.
|
|
14
9
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
10
|
+
2. LICENSE GRANT
|
|
11
|
+
Subject to compliance with this Agreement and payment of applicable subscription or usage fees:
|
|
12
|
+
- Free Tier License: Licensor grants Licensee a limited, non-exclusive, non-transferable, revocable license to install and use the Software for personal, open-source learning, and non-commercial evaluation purposes.
|
|
13
|
+
- Commercial Tier License: Paid subscribers (Hobby, Pro, Max, Ultimate Tiers) or users with active Bring Your Own Key (BYOK) configurations are granted a non-exclusive, non-transferable license to use the Software for commercial software engineering, corporate repositories, and professional client work.
|
|
14
|
+
|
|
15
|
+
3. RESTRICTIONS
|
|
16
|
+
Licensee shall NOT:
|
|
17
|
+
- Reverse engineer, decompile, disassemble, modify, or attempt to discover the source code or underlying client orchestrator mechanisms of compiled Software binaries.
|
|
18
|
+
- Circumvent rate limits, credit accounting controls, or 5-hour quota refill mechanisms.
|
|
19
|
+
- Sublicense, resell, rent, lease, or distribute the Software to third parties without prior written authorization.
|
|
20
|
+
- Create duplicate or automated accounts to harvest free promotional credit allocations.
|
|
21
|
+
|
|
22
|
+
4. INTELLECTUAL PROPERTY
|
|
23
|
+
All title, ownership, brand trademarks, domain adaptation engines, AST parsing logic, and intellectual property rights in and to the Software remain the exclusive property of Emend AI. Licensee retains 100% full ownership of all user prompts submitted and code files generated in their local workspaces.
|
|
24
|
+
|
|
25
|
+
5. NO WARRANTY & LIMITATION OF LIABILITY
|
|
26
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. IN NO EVENT SHALL EMEND AI OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES (INCLUDING DATA LOSS, REPOSITORY CORRUPTION, OR API BILLING COSTS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE.
|
package/bin/utimlite.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* UTIM Lite CLI Launcher
|
|
5
|
+
*
|
|
6
|
+
* Runs UTIM CLI in lightweight mode (UTIM_LITE_MODE=1).
|
|
7
|
+
* Bypasses heavy ML models (ChromaDB, sentence-transformers, MiniLM embeddings)
|
|
8
|
+
* and uses fast offline fallbacks for instant startup on low-spec PCs.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
process.env.UTIM_LITE_MODE = '1';
|
|
12
|
+
require('./utim.js');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emend-ai/utim",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "UTIM AI CLI \u2013 Universal Terminal Intelligence Manager. An agentic AI coding assistant for your terminal.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -23,13 +23,15 @@
|
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"author": "Emendai <support@emendai.com>",
|
|
25
25
|
"bin": {
|
|
26
|
-
"utim": "bin/utim.js"
|
|
26
|
+
"utim": "bin/utim.js",
|
|
27
|
+
"utimlite": "bin/utimlite.js"
|
|
27
28
|
},
|
|
28
29
|
"scripts": {
|
|
29
30
|
"postinstall": "node scripts/postinstall.js"
|
|
30
31
|
},
|
|
31
32
|
"files": [
|
|
32
33
|
"bin/utim.js",
|
|
34
|
+
"bin/utimlite.js",
|
|
33
35
|
"scripts/postinstall.js",
|
|
34
36
|
"README.md",
|
|
35
37
|
"LICENSE"
|