@dmsdc-ai/aigentry-telepty 0.6.12 → 0.6.13
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/CHANGELOG.md +5 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/prompt-symbol-registry.js +8 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@dmsdc-ai/aigentry-telepty` are documented here.
|
|
4
4
|
|
|
5
|
+
## 0.6.13 — 2026-07-07
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- **#719** The codex prompt matcher required the literal `fast` token in the status row and a leading space before `›`, both stale against codex v0.142.5 (non-fast footer `gpt-5.5 xhigh · <cwd>`, line-leading `›`). The bridge `promptReady` gate therefore never opened and injected messages parked in the mailbox indefinitely. Multi-signal now accepts the `·` separator tail and the strict scan's leading space is optional; modal anti-patterns unchanged.
|
|
9
|
+
|
|
5
10
|
## 0.6.12 — 2026-07-07
|
|
6
11
|
|
|
7
12
|
### Fixed
|
package/README.md
CHANGED
|
@@ -305,7 +305,7 @@ telepty runs **standalone** — it needs none of the other aigentry modules and
|
|
|
305
305
|
|
|
306
306
|
| Module | Package | Version | Role | Maturity |
|
|
307
307
|
| --- | --- | --- | --- | --- |
|
|
308
|
-
| **telepty** | `@dmsdc-ai/aigentry-telepty` | 0.6.
|
|
308
|
+
| **telepty** | `@dmsdc-ai/aigentry-telepty` | 0.6.13 | Cross-terminal / cross-machine prompt transport (PTY daemon) | Shipping |
|
|
309
309
|
| **brain** | `@dmsdc-ai/aigentry-brain` | 0.2.8 | Persistent cross-session memory (MCP server) | Early |
|
|
310
310
|
| **deliberation** | `@dmsdc-ai/aigentry-deliberation` | 0.0.47 | Multi-AI structured debate + synthesis (MCP server) | Early |
|
|
311
311
|
| **devkit** | `@dmsdc-ai/aigentry-devkit` | 0.0.22 | Installer/scaffold for the AI dev environment | Early |
|
package/package.json
CHANGED
|
@@ -67,9 +67,11 @@ const ENTRIES = {
|
|
|
67
67
|
|
|
68
68
|
// Step 2: multi-signal tolerant. The codex boot box contains
|
|
69
69
|
// "OpenAI Codex (v<version>)" and the status row contains
|
|
70
|
-
// "gpt-<ver> <profile>
|
|
71
|
-
//
|
|
72
|
-
|
|
70
|
+
// "gpt-<ver> <profile>" followed by either " fast" (fast-inference mode)
|
|
71
|
+
// or the " · <cwd>" separator. v0.142.5 omits "fast" when fast-mode is
|
|
72
|
+
// off ("gpt-5.5 xhigh · /tmp/demo714"), so match either tail. Both
|
|
73
|
+
// signals present anywhere → ready, regardless of where '›' rendered.
|
|
74
|
+
if (/OpenAI Codex \(v/.test(text) && /gpt-[0-9.]+\s+\S+(\s+fast|\s*·)/.test(text)) {
|
|
73
75
|
return { found: true, reason: 'codex_multi_signal' };
|
|
74
76
|
}
|
|
75
77
|
|
|
@@ -78,7 +80,9 @@ const ENTRIES = {
|
|
|
78
80
|
const lines = text.split('\n');
|
|
79
81
|
for (let i = lines.length - 1; i >= 0; i--) {
|
|
80
82
|
const line = lines[i];
|
|
81
|
-
|
|
83
|
+
// v0.142.5 renders the composer '›' line-leading with no space; older
|
|
84
|
+
// captures kept one leading space — accept both.
|
|
85
|
+
if (!/^ ?› /.test(line)) continue;
|
|
82
86
|
const footer = (lines[i + 1] || '') + '\n' + (lines[i + 2] || '');
|
|
83
87
|
if (/gpt-\d/.test(footer)) {
|
|
84
88
|
return { found: true, line_index: i, col: 2, reason: 'codex_strict_line' };
|