@xenosystem/agent-cli 0.5.17 → 0.5.18
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/README.md +0 -69
- package/dist/index.js +973 -975
- package/dist/metafile-esm.json +1 -1
- package/native/xeno-pty/prebuilds/linux-arm64/manifest.json +1 -1
- package/native/xeno-pty/prebuilds/linux-x64/manifest.json +18 -18
- package/native/xeno-pty/trusted-keys.json +4 -4
- package/package.json +77 -77
- package/native/xeno-pty/prebuilds/PROVENANCE.md +0 -69
- package/native/xeno-pty/prebuilds/darwin-arm64/manifest.json +0 -18
- package/native/xeno-pty/prebuilds/darwin-arm64/xeno_pty.node +0 -0
- package/native/xeno-pty/prebuilds/darwin-x64/manifest.json +0 -18
- package/native/xeno-pty/prebuilds/darwin-x64/xeno_pty.node +0 -0
package/README.md
CHANGED
|
@@ -2,75 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
Production terminal AI agent CLI from XENO Corporation.
|
|
4
4
|
|
|
5
|
-
> **EXPERIMENTAL BUILD — not code-signed.** This release is published unsigned
|
|
6
|
-
> pending code-signing certificates. Windows SmartScreen will warn on the
|
|
7
|
-
> standalone installers, and the native interactive terminal is **opt-in** (see
|
|
8
|
-
> below). Everything else — agent runs, tools, pipe-mode command execution — is
|
|
9
|
-
> unaffected.
|
|
10
|
-
|
|
11
|
-
## Platform support — interactive terminal
|
|
12
|
-
|
|
13
|
-
The CLI itself runs anywhere Node.js >= 20 runs. The **interactive terminal**
|
|
14
|
-
(the native `xeno_pty` module that gives shell commands a real TTY) is a
|
|
15
|
-
per-platform native artifact, and its coverage is *not* uniform:
|
|
16
|
-
|
|
17
|
-
| Platform | Native terminal | How this build was produced |
|
|
18
|
-
| -------------- | --------------- | ------------------------------------------------------------- |
|
|
19
|
-
| `linux-x64` | Yes | Built for this release (Debian 12, g++ 12.2; glibc floor 2.34) |
|
|
20
|
-
| `linux-arm64` | Yes | Built for this release (Debian 12, g++ 12.2; glibc floor 2.34) |
|
|
21
|
-
| `win32-x64` | Yes<sup>1</sup> | Built for this release (MSVC 19.44, ConPTY) |
|
|
22
|
-
| `darwin-arm64` | Yes<sup>2</sup> | Carried forward from 0.4.45 (Apple clang 17) — see note 2 |
|
|
23
|
-
| `darwin-x64` | Yes<sup>2</sup> | Carried forward from 0.4.45 (Apple clang 17) — see note 2 |
|
|
24
|
-
| `win32-arm64` | **No** | **Not shipped in this release** — see note 3 |
|
|
25
|
-
|
|
26
|
-
<sup>1</sup> On `win32-x64` the terminal supports TTY startup, Unicode I/O,
|
|
27
|
-
resize, and process-tree termination. **Ctrl+C delivered through the terminal
|
|
28
|
-
input channel does not raise SIGINT in the child process** — a known ConPTY
|
|
29
|
-
defect, tracked and reproducible. Use `/processes` to stop a task.
|
|
30
|
-
|
|
31
|
-
<sup>2</sup> The macOS artifacts are **not rebuilt for 0.5.17**. They are the
|
|
32
|
-
artifacts published in 0.4.45, carried forward because the native source
|
|
33
|
-
(`xeno_pty_posix.cpp`) is byte-identical: the manifests record
|
|
34
|
-
`sourceSha256 = 6ba69e62…`, which is exactly this release's source. They were
|
|
35
|
-
compiled by the last macOS CI run (Apple clang 17) and are verified here as
|
|
36
|
-
correct 64-bit Mach-O bundles for their CPU type, with their recorded hashes
|
|
37
|
-
intact. They could **not** be re-executed during release preparation because
|
|
38
|
-
building or running macOS binaries requires Apple hardware, which this release
|
|
39
|
-
did not have. Treat macOS as source-verified, not run-verified, for 0.5.17.
|
|
40
|
-
|
|
41
|
-
<sup>3</sup> `win32-arm64` ships **no** native terminal in this release. The
|
|
42
|
-
Windows-on-ARM cross-compiler (`MSVC v143 ARM64 build tools`) was not available
|
|
43
|
-
on the release machine, and the previously published `win32-arm64` artifact was
|
|
44
|
-
built from a *different* source revision, so it was not carried forward. On
|
|
45
|
-
`win32-arm64` the CLI runs normally, and shell commands run in **pipe mode**.
|
|
46
|
-
|
|
47
|
-
### What "no interactive terminal" actually means
|
|
48
|
-
|
|
49
|
-
Commands still run. They run through pipes instead of a TTY: no interactive
|
|
50
|
-
prompts (`sudo`, `ssh`, `vim`, REPLs), no terminal size reporting, no Ctrl+C
|
|
51
|
-
signal delivery. The CLI **says so explicitly** — it prints a notice on first
|
|
52
|
-
use, `xeno --version` reports the status on its second line, and `xeno doctor`
|
|
53
|
-
gives the cause and the fix. It never degrades silently.
|
|
54
|
-
|
|
55
|
-
### The unsigned-artifact gate
|
|
56
|
-
|
|
57
|
-
Native artifacts in this release are `unsigned-development`, and the package
|
|
58
|
-
ships an empty trust store. On a normal install the loader therefore refuses to
|
|
59
|
-
load them, and the interactive terminal is **off by default on every platform,
|
|
60
|
-
including the ones with a build above.** This is deliberate: an unsigned native
|
|
61
|
-
module is a supply-chain risk the CLI will not take on your behalf.
|
|
62
|
-
|
|
63
|
-
To opt in on a platform that has a build:
|
|
64
|
-
|
|
65
|
-
```bash
|
|
66
|
-
XENO_ALLOW_UNSIGNED_NATIVE=1 xeno chat
|
|
67
|
-
```
|
|
68
|
-
|
|
69
|
-
Related switches: `XENO_DISABLE_PTY=1` turns the terminal off outright,
|
|
70
|
-
`XENO_REQUIRE_SIGNED_NATIVE=1` refuses unsigned artifacts even in a source
|
|
71
|
-
checkout, and `XENO_QUIET_PTY_WARNING=1` silences the unavailability notice.
|
|
72
|
-
Once code signing is in place, signed manifests will load without any opt-in.
|
|
73
|
-
|
|
74
5
|
## Runtime Ownership
|
|
75
6
|
|
|
76
7
|
The current ownership level is release-audited and may be lower than the terminal P2 program target. Node is an external host through P2, self-contained release assets embed Node.js or Bun, and the TypeScript/npm development toolchain remains third-party infrastructure. Runtime and toolchain replacement are not roadmap items. The package must not be described as fully proprietary, entirely Xeno-owned, free of third-party runtime code, or built by an owned toolchain. The packaged policy and engineering clean-room controls are in `ownership/`.
|