trace-to-skill 0.1.95 → 0.1.97

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.
@@ -100,6 +100,62 @@
100
100
  "reactions": { "totalCount": 2 },
101
101
  "updatedAt": "2026-02-18T18:34:33Z"
102
102
  },
103
+ {
104
+ "number": 23794,
105
+ "title": "Codex Desktop no longer shows visible context/token usage indicator",
106
+ "body": "After updating Codex Desktop, the app no longer shows a visible context/token usage indicator in the chat UI. Previously Codex exposed context-window pressure near the input area or usage indicator. Without it users cannot tell when a thread is close to compaction, context pressure, or context loss.",
107
+ "url": "https://github.com/openai/codex/issues/23794",
108
+ "labels": [
109
+ { "name": "bug" },
110
+ { "name": "context" },
111
+ { "name": "app" }
112
+ ],
113
+ "commentsCount": 160,
114
+ "reactions": { "totalCount": 20 },
115
+ "updatedAt": "2026-06-01T01:17:38Z"
116
+ },
117
+ {
118
+ "number": 23591,
119
+ "title": "Reimplement visible context/token usage indicator in Codex Desktop App",
120
+ "body": "Request to restore or re-add a visible context/token usage indicator on mouse-over. The desktop app makes it difficult to understand how much context is being used, when compaction is likely, and whether a long-running session is approaching a practical context limit.",
121
+ "url": "https://github.com/openai/codex/issues/23591",
122
+ "labels": [
123
+ { "name": "enhancement" },
124
+ { "name": "rate-limits" },
125
+ { "name": "context" },
126
+ { "name": "app" }
127
+ ],
128
+ "commentsCount": 7,
129
+ "reactions": { "totalCount": 5 },
130
+ "updatedAt": "2026-05-29T23:12:20Z"
131
+ },
132
+ {
133
+ "number": 24710,
134
+ "title": "Codex Desktop: hidden context indicator still blocks long-session context management",
135
+ "body": "The Codex Desktop app no longer shows an always-visible context/token usage indicator after the update. The data exists in local session logs, but the app no longer exposes it passively, which blocks long-session context management.",
136
+ "url": "https://github.com/openai/codex/issues/24710",
137
+ "labels": [
138
+ { "name": "enhancement" },
139
+ { "name": "context" },
140
+ { "name": "app" }
141
+ ],
142
+ "commentsCount": 1,
143
+ "reactions": { "totalCount": 1 },
144
+ "updatedAt": "2026-05-27T05:08:25Z"
145
+ },
146
+ {
147
+ "number": 10450,
148
+ "title": "Remote Development in Codex Desktop App",
149
+ "body": "Codex Desktop App only works with local projects and does not support development on remote hosts via SSH, remote Linux servers, cloud instances, GPU machines, or remote filesystems. Users want Settings > Connections, ~/.ssh/config host discovery, remote workspaces as the single source of truth without git/rsync/sshfs sync workarounds, remote command execution, persistent remote sessions, reconnect/resume, and app-server health evidence. Later reports mention remote_connections = true, local tunnel not ready, stale remote Codex versions, codex-server restart, ForwardAgent, and fs/getMetadata timeouts while listing remote folders.",
150
+ "url": "https://github.com/openai/codex/issues/10450",
151
+ "labels": [
152
+ { "name": "enhancement" },
153
+ { "name": "app" }
154
+ ],
155
+ "commentsCount": 176,
156
+ "reactions": { "totalCount": 851 },
157
+ "updatedAt": "2026-05-14T21:25:03Z"
158
+ },
103
159
  {
104
160
  "number": 6465,
105
161
  "title": "MCP servers not detected in Codex VS Code extension but working in Codex CLI",
package/llms.txt CHANGED
@@ -91,6 +91,8 @@ npx trace-to-skill demo auth-verification
91
91
  npx trace-to-skill demo context-fork-bloat
92
92
  npx trace-to-skill demo subagent-prompt-leakage
93
93
  npx trace-to-skill demo usage-bucket-confusion
94
+ npx trace-to-skill demo context-visibility
95
+ npx trace-to-skill demo remote-connection
94
96
  npx trace-to-skill demo mcp-discovery-mismatch
95
97
  npx trace-to-skill demo mcp-streamable-http
96
98
  npx trace-to-skill demo hooks-runtime
@@ -130,7 +132,7 @@ gh issue list --repo openai/codex --state all --limit 100 --json number,title,bo
130
132
  ## GitHub Action
131
133
 
132
134
  ```yaml
133
- - uses: grnbtqdbyx-create/trace-to-skill@v0.1.95
135
+ - uses: grnbtqdbyx-create/trace-to-skill@v0.1.97
134
136
  with:
135
137
  mode: all
136
138
  doctor-threshold: "85"
@@ -143,7 +145,7 @@ gh issue list --repo openai/codex --state all --limit 100 --json number,title,bo
143
145
  ## Weekly Codex Issue Radar
144
146
 
145
147
  ```yaml
146
- - uses: grnbtqdbyx-create/trace-to-skill@v0.1.95
148
+ - uses: grnbtqdbyx-create/trace-to-skill@v0.1.97
147
149
  with:
148
150
  mode: issue-map
149
151
  issue-map-repo: openai/codex
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trace-to-skill",
3
- "version": "0.1.95",
3
+ "version": "0.1.97",
4
4
  "description": "Turn failed AI coding-agent runs into reusable AGENTS.md rules, SKILL.md files, and eval evidence.",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",
@@ -114,6 +114,10 @@
114
114
  "codex-ripgrep",
115
115
  "token-exchange-failed",
116
116
  "codex-remote-control",
117
+ "codex-remote-connection",
118
+ "codex-ssh",
119
+ "remote-ssh",
120
+ "remote-workspace",
117
121
  "codex-mobile",
118
122
  "codex-terminal",
119
123
  "codex-scrollback",
@@ -169,6 +173,10 @@
169
173
  "codex-token-burn",
170
174
  "codex-usage",
171
175
  "codex-usage-bucket",
176
+ "codex-context-visibility",
177
+ "context-token-indicator",
178
+ "context-usage-indicator",
179
+ "context-window-pressure",
172
180
  "usage-popover",
173
181
  "rate-limit-ui",
174
182
  "codex-reset",
@@ -85,6 +85,7 @@
85
85
  "codex_windows_helper_path",
86
86
  "codex_connectivity",
87
87
  "codex_remote_control",
88
+ "codex_remote_connection",
88
89
  "codex_terminal_output_integrity",
89
90
  "codex_subagent_lifecycle",
90
91
  "codex_mcp_discovery_mismatch",
@@ -94,6 +95,7 @@
94
95
  "codex_plugin_runtime",
95
96
  "codex_file_tree_ui",
96
97
  "codex_session_state",
98
+ "codex_context_visibility",
97
99
  "codex_usage_bucket_confusion",
98
100
  "codex_token_burn",
99
101
  "codex_resource_leak",