@undes.ai/cli-pro 0.1.3
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.md +14 -0
- package/NOTICE.md +7 -0
- package/README.md +30 -0
- package/THIRD_PARTY_NOTICES.md +18 -0
- package/bin/undes-pro.js +1118 -0
- package/package.json +45 -0
package/LICENSE.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Undes Pro License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Undes.
|
|
4
|
+
|
|
5
|
+
This package is proprietary software. Use, copying, modification,
|
|
6
|
+
redistribution, or reverse engineering are permitted only under a separate
|
|
7
|
+
written Undes Pro or enterprise agreement.
|
|
8
|
+
|
|
9
|
+
If you received this package as part of an early-access program, your use is
|
|
10
|
+
limited to the scope and term granted by that program and by the license token
|
|
11
|
+
issued to you.
|
|
12
|
+
|
|
13
|
+
No rights are granted by implication. All rights not expressly granted are
|
|
14
|
+
reserved.
|
package/NOTICE.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Notices
|
|
2
|
+
|
|
3
|
+
Undes Pro includes the Undes CLI runtime, local verification components, and
|
|
4
|
+
terminal UI code. It is distributed as proprietary software.
|
|
5
|
+
|
|
6
|
+
The package depends on third-party npm packages listed in
|
|
7
|
+
`THIRD_PARTY_NOTICES.md` and in the package manifest.
|
package/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Undes Pro CLI
|
|
2
|
+
|
|
3
|
+
Undes Pro is the paid local CLI for teams and individual operators who need
|
|
4
|
+
the Pro terminal UI, local run history, and license-gated execution.
|
|
5
|
+
|
|
6
|
+
This package is distributed as an early-access build. It requires a valid
|
|
7
|
+
Undes Pro license and the platform native verification package installed by
|
|
8
|
+
npm for your operating system.
|
|
9
|
+
|
|
10
|
+
## Install
|
|
11
|
+
|
|
12
|
+
```sh
|
|
13
|
+
npm install -g @undes.ai/cli-pro@pro-beta
|
|
14
|
+
undes-pro license activate <purchase-key>
|
|
15
|
+
undes-pro license status
|
|
16
|
+
undes-pro
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
The CLI stores license state locally and uses the native verification package
|
|
20
|
+
before running license-gated commands. License commands, `--help`, `--version`,
|
|
21
|
+
and `doctor` remain available for setup and recovery.
|
|
22
|
+
|
|
23
|
+
## Notes
|
|
24
|
+
|
|
25
|
+
- Node.js 20 or newer is required.
|
|
26
|
+
- The React/Ink terminal UI runtime is installed as normal package
|
|
27
|
+
dependencies.
|
|
28
|
+
- Platform native packages are resolved by npm and then required by the Pro
|
|
29
|
+
loader at runtime. If the native verifier is missing or mismatched, Pro
|
|
30
|
+
commands fail closed.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Third-Party Notices
|
|
2
|
+
|
|
3
|
+
Undes Pro depends on third-party packages installed by npm at runtime.
|
|
4
|
+
|
|
5
|
+
Direct runtime dependencies:
|
|
6
|
+
|
|
7
|
+
- `react`
|
|
8
|
+
- `ink`
|
|
9
|
+
- `htm`
|
|
10
|
+
|
|
11
|
+
Optional platform/native dependencies may include:
|
|
12
|
+
|
|
13
|
+
- `@ast-grep/cli`
|
|
14
|
+
- `tree-sitter` and language grammars
|
|
15
|
+
- `@undes.ai/core-<platform>` native verification packages
|
|
16
|
+
|
|
17
|
+
Each dependency is distributed under its own license. Consult the installed
|
|
18
|
+
package metadata in `node_modules` for the full dependency license texts.
|