terminuz 0.0.1 → 2.0.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Terminuz contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
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:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,49 @@
1
+ # Terminuz
2
+
3
+ > **Terminuz - The Open Source AI Coding Agent**
4
+
5
+ Terminuz is a local, permission-aware, multi-provider coding agent for the
6
+ terminal.
7
+
8
+ ## Install
9
+
10
+ ```bash
11
+ npm install -g terminuz
12
+ terminuz --version
13
+ terminuz init
14
+ terminuz
15
+ ```
16
+
17
+ ## Common commands
18
+
19
+ ```bash
20
+ terminuz run "fix the failing tests" --yes
21
+ terminuz review
22
+ terminuz doctor
23
+ terminuz config show --effective
24
+ terminuz cache tmp clear
25
+ terminuz github login
26
+ terminuz update
27
+ ```
28
+
29
+ ## Migrating from DeepCode
30
+
31
+ Terminuz reads legacy `.deepcode/` configuration and sessions when no preferred
32
+ Terminuz state exists. `DEEPCODE_*` environment variables remain compatibility
33
+ aliases below `TERMINUZ_*` in precedence.
34
+
35
+ ```bash
36
+ npm uninstall -g deepcode-ai
37
+ npm install -g terminuz
38
+ ```
39
+
40
+ Terminuz does not automatically delete or overwrite `.deepcode/`.
41
+
42
+ ## Links
43
+
44
+ - Repository: <https://github.com/N1ghthill/terminuz>
45
+ - Configuration: <https://github.com/N1ghthill/terminuz/blob/main/docs/16-configuration.md>
46
+ - Security: <https://github.com/N1ghthill/terminuz/blob/main/docs/06-security-model.md>
47
+ - Migration roadmap: <https://github.com/N1ghthill/terminuz/blob/main/docs/18-terminuz-rebranding-roadmap.md>
48
+
49
+ Terminuz is released under the MIT License.
@@ -0,0 +1,42 @@
1
+ #!/usr/bin/env node
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
9
+ get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
10
+ }) : x)(function(x) {
11
+ if (typeof require !== "undefined") return require.apply(this, arguments);
12
+ throw Error('Dynamic require of "' + x + '" is not supported');
13
+ });
14
+ var __commonJS = (cb, mod) => function __require2() {
15
+ try {
16
+ return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
17
+ } catch (e) {
18
+ throw mod = 0, e;
19
+ }
20
+ };
21
+ var __copyProps = (to, from, except, desc) => {
22
+ if (from && typeof from === "object" || typeof from === "function") {
23
+ for (let key of __getOwnPropNames(from))
24
+ if (!__hasOwnProp.call(to, key) && key !== except)
25
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
26
+ }
27
+ return to;
28
+ };
29
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
30
+ // If the importer is in node compatibility mode or this is not an ESM
31
+ // file that has been converted to a CommonJS file using a Babel-
32
+ // compatible transform (i.e. "__esModule" has not been set), then set
33
+ // "default" to the CommonJS "module.exports" for node compatibility.
34
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
35
+ mod
36
+ ));
37
+
38
+ export {
39
+ __require,
40
+ __commonJS,
41
+ __toESM
42
+ };
@@ -0,0 +1,2 @@
1
+
2
+ export { }