@ictechgy/lterm 0.1.4 → 1.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/README.ko.md +2 -1
- package/README.md +6 -1
- package/package.json +5 -5
package/README.ko.md
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
`lterm`은 tmux 전체를 대체하려는 도구가 아닙니다. 오래 실행되는 PTY 세션을 유지하고, 클라이언트가 자유롭게 detach/reattach할 수 있게 하며, 터미널 escape sequence는 그대로 통과시키고, terminal-first agent 도구가 자주 사용하는 tmux 명령 일부를 호환 shim으로 제공합니다.
|
|
15
15
|
|
|
16
16
|
> **보안 모델:** `lterm`은 같은 OS 사용자 안에서 쓰는 편의용 데몬이며 샌드박스가 아닙니다. 다른 사용자의 Unix socket 접근은 거부하고 런타임 디렉터리는 소유자 전용 권한으로 만들지만, 같은 OS 사용자 권한으로 실행되는 프로세스는 세션을 제어할 수 있다고 보아야 합니다.
|
|
17
|
+
> 전체 trust boundary와 audit policy는 [SECURITY.md](SECURITY.md)를 참고하세요.
|
|
17
18
|
|
|
18
19
|
## 왜 tmux 대신 lterm인가요?
|
|
19
20
|
|
|
@@ -69,7 +70,7 @@ Homebrew와 npm 모두 `PATH`에 `lterm` 명령을 설치합니다. `lterm --ver
|
|
|
69
70
|
GitHub에서 Cargo로 설치 (Releases 페이지의 최신 태그를 사용하세요):
|
|
70
71
|
|
|
71
72
|
```bash
|
|
72
|
-
cargo install --git https://github.com/ictechgy/light_terminal --tag
|
|
73
|
+
cargo install --git https://github.com/ictechgy/light_terminal --tag v1.0.0
|
|
73
74
|
```
|
|
74
75
|
|
|
75
76
|
저장소를 클론한 뒤 직접 빌드하려면 Rust 1.85 이상이 필요합니다.
|
package/README.md
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
`lterm` is intentionally smaller than tmux. It keeps long-running PTY sessions alive, lets clients detach and reattach at will, forwards terminal escape sequences unchanged, and translates the subset of tmux commands commonly used by terminal-first agent tooling.
|
|
15
15
|
|
|
16
16
|
> **Security model:** `lterm` is a same-user convenience daemon, not a sandbox. It rejects cross-user Unix-socket peers and uses owner-only runtime directories, but any process running as your OS user should be considered capable of controlling your sessions.
|
|
17
|
+
> See [SECURITY.md](SECURITY.md) for the full trust-boundary and audit policy details.
|
|
17
18
|
|
|
18
19
|
## Why lterm instead of plain tmux?
|
|
19
20
|
|
|
@@ -67,10 +68,14 @@ Gemini CLI, or another terminal coding agent. It asks the agent to detect your
|
|
|
67
68
|
platform, install `lterm`, verify it with a smoke test, and avoid modifying
|
|
68
69
|
shell startup files without showing you the change.
|
|
69
70
|
|
|
71
|
+
For the 1.0 command/output stability boundary, see the
|
|
72
|
+
[public contract](docs/public-contract.md) and its machine-readable
|
|
73
|
+
[contract manifest](docs/contract-manifest.json).
|
|
74
|
+
|
|
70
75
|
With Cargo from GitHub (use the latest tag from the Releases page):
|
|
71
76
|
|
|
72
77
|
```bash
|
|
73
|
-
cargo install --git https://github.com/ictechgy/light_terminal --tag
|
|
78
|
+
cargo install --git https://github.com/ictechgy/light_terminal --tag v1.0.0
|
|
74
79
|
```
|
|
75
80
|
|
|
76
81
|
From this checkout, use Rust 1.85 or newer:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ictechgy/lterm",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Lightweight tmux-compatible terminal session daemon with cmux-friendly notifications.",
|
|
5
5
|
"license": "MIT OR Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/ictechgy/light_terminal#readme",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"LICENSE-MIT"
|
|
31
31
|
],
|
|
32
32
|
"optionalDependencies": {
|
|
33
|
-
"lterm-darwin-arm64": "0.
|
|
34
|
-
"lterm-darwin-x64": "0.
|
|
35
|
-
"lterm-linux-arm64": "0.
|
|
36
|
-
"lterm-linux-x64": "0.
|
|
33
|
+
"lterm-darwin-arm64": "1.0.0",
|
|
34
|
+
"lterm-darwin-x64": "1.0.0",
|
|
35
|
+
"lterm-linux-arm64": "1.0.0",
|
|
36
|
+
"lterm-linux-x64": "1.0.0"
|
|
37
37
|
},
|
|
38
38
|
"engines": {
|
|
39
39
|
"node": ">=16"
|