codex-agent-framework 0.1.4__tar.gz → 0.1.5__tar.gz

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.
Files changed (50) hide show
  1. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/CHANGELOG.md +5 -0
  2. {codex_agent_framework-0.1.4/codex_agent_framework.egg-info → codex_agent_framework-0.1.5}/PKG-INFO +2 -1
  3. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/README.md +1 -0
  4. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/chat.py +20 -12
  5. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5/codex_agent_framework.egg-info}/PKG-INFO +2 -1
  6. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/pyproject.toml +1 -1
  7. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/LICENSE +0 -0
  8. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/MANIFEST.in +0 -0
  9. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/__init__.py +0 -0
  10. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/__main__.py +0 -0
  11. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/agent.py +0 -0
  12. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/ai.py +0 -0
  13. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/builtin_commands.py +0 -0
  14. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/builtin_providers.py +0 -0
  15. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/builtin_tools.py +0 -0
  16. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/command.py +0 -0
  17. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/event.py +0 -0
  18. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/get_text/__init__.py +0 -0
  19. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/get_text/default_gitignore +0 -0
  20. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/get_text/get_text.py +0 -0
  21. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/get_text/simpler_get_text.py +0 -0
  22. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/get_webdriver.py +0 -0
  23. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/image.py +0 -0
  24. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/latex.py +0 -0
  25. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/memory.py +0 -0
  26. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/message.py +0 -0
  27. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/prompts/image_generation_system_prompt.txt +0 -0
  28. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/prompts/system_prompt.txt +0 -0
  29. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/provider.py +0 -0
  30. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/stream_utils.py +0 -0
  31. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/tool.py +0 -0
  32. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/utils.py +0 -0
  33. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/voice.py +0 -0
  34. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent/worker.py +0 -0
  35. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent_framework.egg-info/SOURCES.txt +0 -0
  36. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent_framework.egg-info/dependency_links.txt +0 -0
  37. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent_framework.egg-info/entry_points.txt +0 -0
  38. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent_framework.egg-info/requires.txt +0 -0
  39. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/codex_agent_framework.egg-info/top_level.txt +0 -0
  40. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/setup.cfg +0 -0
  41. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/tests/test_agent.py +0 -0
  42. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/tests/test_ai.py +0 -0
  43. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/tests/test_chat.py +0 -0
  44. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/tests/test_cli.py +0 -0
  45. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/tests/test_events.py +0 -0
  46. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/tests/test_image_message.py +0 -0
  47. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/tests/test_memory.py +0 -0
  48. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/tests/test_messages.py +0 -0
  49. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/tests/test_utils.py +0 -0
  50. {codex_agent_framework-0.1.4 → codex_agent_framework-0.1.5}/tests/test_worker.py +0 -0
@@ -3,6 +3,11 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
5
  This project loosely follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and uses semantic versioning where practical.
6
+ ## [0.1.5] - 2026-05-03
7
+ ### Changed
8
+ - Refine the default Textual chat UI with a pure black background, black multiline input area, subtler scrollbars, a smaller step-end marker, and English UI labels.
9
+
10
+
6
11
  ## [0.1.4] - 2026-05-03
7
12
  ### Added
8
13
  - Make the Textual REPL UI the default chat interface, with multiline input, subdued colors, visual speaker separators, step-end markers, and cleaner tool-call rendering.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: codex-agent-framework
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: A lightweight event-driven Codex agent runtime.
5
5
  Author: Baptiste
6
6
  License-Expression: MIT
@@ -342,6 +342,7 @@ python -m build
342
342
  The distribution includes prompt text files and `codex_agent/get_text/default_gitignore` through package data and `MANIFEST.in`.
343
343
 
344
344
  ## Recent changes
345
+ - `0.1.5`: refine the Textual chat UI with pure black backgrounds, subtler markers/scrollbars, and English UI labels.
345
346
  - `0.1.4`: make the Textual REPL UI the default, add multiline input, assistant turn/step events, cleaner tool-call rendering, and `/voice` configuration.
346
347
  - `0.1.3`: pass the current session id as `prompt_cache_key` to the Codex backend for prompt cache reuse.
347
348
  - `0.1.2`: add `/clear` in the terminal chat to clear the screen without changing session history.
@@ -295,6 +295,7 @@ python -m build
295
295
  The distribution includes prompt text files and `codex_agent/get_text/default_gitignore` through package data and `MANIFEST.in`.
296
296
 
297
297
  ## Recent changes
298
+ - `0.1.5`: refine the Textual chat UI with pure black backgrounds, subtler markers/scrollbars, and English UI labels.
298
299
  - `0.1.4`: make the Textual REPL UI the default, add multiline input, assistant turn/step events, cleaner tool-call rendering, and `/voice` configuration.
299
300
  - `0.1.3`: pass the current session id as `prompt_cache_key` to the Codex backend for prompt cache reuse.
300
301
  - `0.1.2`: add `/clear` in the terminal chat to clear the screen without changing session history.
@@ -15,35 +15,43 @@ class Chat:
15
15
 
16
16
  CSS = """
17
17
  Screen {
18
- background: #171a1f;
18
+ background: #000000;
19
19
  color: #c6c8c4;
20
20
  }
21
21
 
22
22
  #main {
23
23
  height: 100%;
24
24
  padding: 0 1;
25
- background: #171a1f;
25
+ background: #000000;
26
26
  }
27
27
 
28
28
  #conversation {
29
29
  height: 1fr;
30
30
  padding: 1 1;
31
- background: #171a1f;
31
+ background: #000000;
32
+ scrollbar-background: #000000;
33
+ scrollbar-background-hover: #000000;
34
+ scrollbar-background-active: #000000;
35
+ scrollbar-color: #202020;
36
+ scrollbar-color-hover: #2a2a2a;
37
+ scrollbar-color-active: #343434;
32
38
  }
33
39
 
34
40
  #status {
35
41
  height: 1;
36
42
  color: #7d8590;
37
- background: #171a1f;
43
+ background: #000000;
38
44
  }
39
45
 
40
46
  #input {
41
47
  height: 5;
42
48
  margin-top: 0;
43
49
  padding: 0 1;
44
- background: #1f242c;
50
+ background: #000000;
45
51
  color: #c6c8c4;
46
- border: blank #1f242c;
52
+ border: blank #000000;
53
+ scrollbar-size-vertical: 0;
54
+ scrollbar-size-horizontal: 0;
47
55
  }
48
56
 
49
57
  TextArea > .text-area--cursor {
@@ -52,7 +60,7 @@ class Chat:
52
60
  }
53
61
 
54
62
  Footer {
55
- background: #171a1f;
63
+ background: #000000;
56
64
  color: #7d8590;
57
65
  }
58
66
  """
@@ -101,7 +109,7 @@ class Chat:
101
109
  yield Static("", id="status")
102
110
  yield TextArea(
103
111
  "",
104
- placeholder="› message · Entrée = newline · Ctrl+S/F2 = envoyer · Ctrl+Q = quitter",
112
+ placeholder="› message · Enter = newline · Ctrl+S/F2 = send · Ctrl+Q = quit",
105
113
  id="input",
106
114
  show_line_numbers=False,
107
115
  soft_wrap=True,
@@ -113,7 +121,7 @@ class Chat:
113
121
  chat.attach()
114
122
  self.refresh_status()
115
123
  self.query_one("#input", TextArea).focus()
116
- self.write_info("Codex Agent prêt.")
124
+ self.write_info("Codex Agent ready.")
117
125
 
118
126
  def action_quit(self):
119
127
  self.exit()
@@ -149,12 +157,12 @@ class Chat:
149
157
  def action_clear(self):
150
158
  chat._transcript.clear()
151
159
  self.query_one("#conversation", RichLog).clear()
152
- self.write_info("écran nettoyé · historique conservé")
160
+ self.write_info("screen cleared · session history preserved")
153
161
  self.refresh_status()
154
162
 
155
163
  def action_interrupt(self):
156
164
  chat.agent.interrupt("keyboard_interrupt")
157
- self.write_error("interruption demandée")
165
+ self.write_error("interrupt requested")
158
166
 
159
167
  def log_width(self):
160
168
  # Keep visual separators a few columns narrower than the RichLog
@@ -206,7 +214,7 @@ class Chat:
206
214
  log.write(Text("error › ", style="bold #ff7b72") + Text(str(entry[1]), style="#ff7b72"))
207
215
 
208
216
  def write_user(self, prompt):
209
- username = chat.agent.config.get("username") or "Vous"
217
+ username = chat.agent.config.get("username") or "You"
210
218
  chat._transcript.append(("speaker", username, "#88b38a"))
211
219
  chat._transcript.append(("user", prompt))
212
220
  chat._transcript.append(("user_end",))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: codex-agent-framework
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: A lightweight event-driven Codex agent runtime.
5
5
  Author: Baptiste
6
6
  License-Expression: MIT
@@ -342,6 +342,7 @@ python -m build
342
342
  The distribution includes prompt text files and `codex_agent/get_text/default_gitignore` through package data and `MANIFEST.in`.
343
343
 
344
344
  ## Recent changes
345
+ - `0.1.5`: refine the Textual chat UI with pure black backgrounds, subtler markers/scrollbars, and English UI labels.
345
346
  - `0.1.4`: make the Textual REPL UI the default, add multiline input, assistant turn/step events, cleaner tool-call rendering, and `/voice` configuration.
346
347
  - `0.1.3`: pass the current session id as `prompt_cache_key` to the Codex backend for prompt cache reuse.
347
348
  - `0.1.2`: add `/clear` in the terminal chat to clear the screen without changing session history.
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "codex-agent-framework"
7
- version = "0.1.4"
7
+ version = "0.1.5"
8
8
  description = "A lightweight event-driven Codex agent runtime."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"