@dmsdc-ai/aterm-darwin-arm64 0.1.41 → 0.1.43
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.
|
Binary file
|
|
@@ -64,7 +64,28 @@ try:
|
|
|
64
64
|
print(json.dumps({"error": resp["message"]}), file=sys.stderr)
|
|
65
65
|
sys.exit(1)
|
|
66
66
|
elif action == "list":
|
|
67
|
-
|
|
67
|
+
if __import__("os").environ.get("ATERM_LIST_JSON"):
|
|
68
|
+
print(json.dumps({"sessions": resp.get("data", [])}))
|
|
69
|
+
else:
|
|
70
|
+
sessions = resp.get("data", [])
|
|
71
|
+
if not sessions:
|
|
72
|
+
print("(no workspaces)")
|
|
73
|
+
else:
|
|
74
|
+
import os.path
|
|
75
|
+
rows = []
|
|
76
|
+
for s in sessions:
|
|
77
|
+
name = s.get("name") or os.path.basename(s.get("cwd", "")) or s.get("id", "?")
|
|
78
|
+
cli = s.get("cli", "")
|
|
79
|
+
cwd = s.get("cwd", "")
|
|
80
|
+
terminal = s.get("terminal", "aterm")
|
|
81
|
+
rows.append((name, cli, cwd, terminal))
|
|
82
|
+
cols = ["NAME", "CLI", "CWD", "TERMINAL"]
|
|
83
|
+
widths = [max(len(c), *(len(r[i]) for r in rows)) for i, c in enumerate(cols)]
|
|
84
|
+
fmt = " ".join(f"{{:<{w}}}" for w in widths)
|
|
85
|
+
print(fmt.format(*cols))
|
|
86
|
+
print(" ".join("\u2500" * w for w in widths))
|
|
87
|
+
for r in rows:
|
|
88
|
+
print(fmt.format(*r))
|
|
68
89
|
elif action == "status":
|
|
69
90
|
print(json.dumps(resp.get("data", {})))
|
|
70
91
|
else:
|
|
@@ -80,7 +101,11 @@ finally:
|
|
|
80
101
|
case "${1:-help}" in
|
|
81
102
|
list)
|
|
82
103
|
if [[ -z "$ATERM_IPC_SOCKET" ]]; then exec telepty list "${@:2}"; fi
|
|
83
|
-
|
|
104
|
+
if [[ "${2:-}" == "--json" ]]; then
|
|
105
|
+
ATERM_LIST_JSON=1 aterm_ipc list
|
|
106
|
+
else
|
|
107
|
+
aterm_ipc list
|
|
108
|
+
fi ;;
|
|
84
109
|
inject)
|
|
85
110
|
if [[ -z "$ATERM_IPC_SOCKET" ]]; then exec telepty inject "${@:2}"; fi
|
|
86
111
|
[[ $# -lt 3 ]] && { echo '{"error":"usage: aterm inject <workspace> <text>"}' >&2; exit 1; }
|
|
@@ -183,7 +208,7 @@ print(json.dumps({"status":"ok","type": ltype}))
|
|
|
183
208
|
|
|
184
209
|
| Command | Description |
|
|
185
210
|
|---------|-------------|
|
|
186
|
-
| `aterm list` | List
|
|
211
|
+
| `aterm list` | List workspaces (NAME, CLI, CWD, TERMINAL) |
|
|
187
212
|
| `aterm inject <workspace> <text>` | Send text to a workspace |
|
|
188
213
|
| `aterm status <workspace>` | Check workspace status |
|
|
189
214
|
| `aterm focus <workspace>` | Focus a workspace tab |
|
|
@@ -215,6 +240,11 @@ print(json.dumps({"status":"ok","type": ltype}))
|
|
|
215
240
|
| 'list external sessions' / '외부 세션 목록' | `telepty list` |
|
|
216
241
|
| 'message deliberation session' | `telepty inject aigentry-deliberation-claude 'message'` |
|
|
217
242
|
|
|
243
|
+
## Session Detection Priority
|
|
244
|
+
1. `aterm list` — internal sessions (project names + terminal=aterm)
|
|
245
|
+
2. `telepty list` — external sessions (project names + terminal type)
|
|
246
|
+
3. NEVER use `ps aux | grep` as primary (no project names, no terminal info)
|
|
247
|
+
|
|
218
248
|
## Detection Rules
|
|
219
249
|
- `$ATERM_IPC_SOCKET` set → inside aterm. Use `aterm` commands.
|
|
220
250
|
- `$ATERM_IPC_SOCKET` unset → outside aterm. Use `telepty` commands.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<dict>
|
|
7
7
|
<key>Resources/bin/aterm</key>
|
|
8
8
|
<data>
|
|
9
|
-
|
|
9
|
+
31T9cMdZ1Kvf/pt8VMMVvNoeP/k=
|
|
10
10
|
</data>
|
|
11
11
|
</dict>
|
|
12
12
|
<key>files2</key>
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
<dict>
|
|
25
25
|
<key>hash2</key>
|
|
26
26
|
<data>
|
|
27
|
-
|
|
27
|
+
mSWI2PyUfn/66Wdn1bep8WpRprwpfB+L0/up5xON/rQ=
|
|
28
28
|
</data>
|
|
29
29
|
</dict>
|
|
30
30
|
</dict>
|