codex-agent-framework 0.1.16__tar.gz → 0.1.18__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 (109) hide show
  1. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/CHANGELOG.md +31 -0
  2. codex_agent_framework-0.1.18/PKG-INFO +693 -0
  3. codex_agent_framework-0.1.18/README.md +644 -0
  4. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/__init__.py +3 -5
  5. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/agent.py +22 -5
  6. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/agent_runtime.py +8 -22
  7. codex_agent_framework-0.1.16/codex_agent/builtin_plugins/browser/controller.py → codex_agent_framework-0.1.18/codex_agent/browser.py +28 -27
  8. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/builtin_commands.py +0 -1
  9. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/builtin_plugins/browser/__init__.py +1 -1
  10. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/builtin_plugins/desktop/__init__.py +1 -1
  11. codex_agent_framework-0.1.18/codex_agent/builtin_plugins/memory/__init__.py +607 -0
  12. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/builtin_plugins/scheduler/__init__.py +4 -42
  13. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/builtin_tools/__init__.py +0 -6
  14. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/builtin_tools/vision.py +7 -7
  15. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/cli/main.py +1 -1
  16. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/cli/root.py +44 -10
  17. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/config.py +0 -2
  18. codex_agent_framework-0.1.16/codex_agent/builtin_plugins/desktop/controller.py → codex_agent_framework-0.1.18/codex_agent/desktop.py +1 -1
  19. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/get_text/get_text.py +2 -2
  20. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/mainloop.py +7 -7
  21. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/message.py +0 -1
  22. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/plugin.py +75 -2
  23. codex_agent_framework-0.1.18/codex_agent/server/__init__.py +29 -0
  24. codex_agent_framework-0.1.18/codex_agent/server/app.py +197 -0
  25. codex_agent_framework-0.1.16/codex_agent/server.py → codex_agent_framework-0.1.18/codex_agent/server/core.py +29 -211
  26. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/service.py +4 -3
  27. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/status.py +0 -1
  28. codex_agent_framework-0.1.18/codex_agent/tui/__init__.py +25 -0
  29. {codex_agent_framework-0.1.16/codex_agent → codex_agent_framework-0.1.18/codex_agent/tui}/chat.py +3 -3
  30. codex_agent_framework-0.1.16/codex_agent/tui.py → codex_agent_framework-0.1.18/codex_agent/tui/lifecycle.py +1 -1
  31. codex_agent_framework-0.1.18/codex_agent_framework.egg-info/PKG-INFO +693 -0
  32. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent_framework.egg-info/SOURCES.txt +8 -7
  33. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/pyproject.toml +1 -1
  34. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_agent.py +46 -20
  35. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_agent_runtime.py +0 -3
  36. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_browser.py +1 -1
  37. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_chat.py +2 -3
  38. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_cli_root.py +44 -4
  39. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_get_text_browser.py +15 -14
  40. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_local_desktop.py +10 -18
  41. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_memory.py +121 -41
  42. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_scheduler.py +13 -3
  43. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_server.py +21 -26
  44. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_service.py +4 -2
  45. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_tui.py +1 -1
  46. codex_agent_framework-0.1.16/PKG-INFO +0 -475
  47. codex_agent_framework-0.1.16/README.md +0 -426
  48. codex_agent_framework-0.1.16/codex_agent/builtin_plugins/desktop/screenshot.py +0 -44
  49. codex_agent_framework-0.1.16/codex_agent/builtin_plugins/memory/__init__.py +0 -214
  50. codex_agent_framework-0.1.16/codex_agent/memory.py +0 -329
  51. codex_agent_framework-0.1.16/codex_agent_framework.egg-info/PKG-INFO +0 -475
  52. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/LICENSE +0 -0
  53. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/MANIFEST.in +0 -0
  54. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/__main__.py +0 -0
  55. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/ai.py +0 -0
  56. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/builtin_plugins/__init__.py +0 -0
  57. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/builtin_plugins/planner/__init__.py +0 -0
  58. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/builtin_providers.py +0 -0
  59. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/builtin_tools/files.py +0 -0
  60. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/builtin_tools/server_tools.py +0 -0
  61. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/builtin_tools/shell.py +0 -0
  62. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/builtin_tools/system.py +0 -0
  63. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/cli/__init__.py +0 -0
  64. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/cli/headless.py +0 -0
  65. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/cli/output.py +0 -0
  66. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/cli/runner.py +0 -0
  67. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/client.py +0 -0
  68. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/command.py +0 -0
  69. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/context.py +0 -0
  70. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/event.py +0 -0
  71. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/get_text/__init__.py +0 -0
  72. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/get_text/default_gitignore +0 -0
  73. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/get_text/simpler_get_text.py +0 -0
  74. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/hooks.py +0 -0
  75. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/image.py +0 -0
  76. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/latex.py +0 -0
  77. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/prompts/image_generation_system_prompt.txt +0 -0
  78. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/prompts/system_prompt.txt +0 -0
  79. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/provider.py +0 -0
  80. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/registry.py +0 -0
  81. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/runtime.py +0 -0
  82. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/scheduler.py +0 -0
  83. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/scripts/install-system-dependencies.sh +0 -0
  84. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/sessions.py +0 -0
  85. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/stream_utils.py +0 -0
  86. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/tool.py +0 -0
  87. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/tray.py +0 -0
  88. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/utils.py +0 -0
  89. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/voice.py +0 -0
  90. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent/worker.py +0 -0
  91. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent_framework.egg-info/dependency_links.txt +0 -0
  92. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent_framework.egg-info/entry_points.txt +0 -0
  93. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent_framework.egg-info/requires.txt +0 -0
  94. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/codex_agent_framework.egg-info/top_level.txt +0 -0
  95. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/dependencies.txt +0 -0
  96. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/setup.cfg +0 -0
  97. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_ai.py +0 -0
  98. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_builtin_config.py +0 -0
  99. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_cli.py +0 -0
  100. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_cli_headless.py +0 -0
  101. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_client.py +0 -0
  102. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_events.py +0 -0
  103. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_hooks.py +0 -0
  104. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_image_message.py +0 -0
  105. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_messages.py +0 -0
  106. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_planner.py +0 -0
  107. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_tray.py +0 -0
  108. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_utils.py +0 -0
  109. {codex_agent_framework-0.1.16 → codex_agent_framework-0.1.18}/tests/test_worker.py +0 -0
@@ -4,6 +4,37 @@ 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
6
 
7
+ ## [0.1.18] - 2026-05-08
8
+ ### Added
9
+ - Add generic plugin event and hook handler discovery so plugins can react to agent lifecycle events without hard-coded core coupling.
10
+ - Add core browser and desktop controller modules used by extraction and vision helpers, while keeping browser and desktop plugins as agent-facing tool/provider facades.
11
+ - Add memory retrieval XML timestamps and sources so retrieved RAG memories expose freshness metadata to the model.
12
+
13
+ ### Changed
14
+ - Make `codex-agent start server` and `codex-agent start tray` detach by default, with `--foreground` retained for supervised service managers.
15
+ - Move durable RAG memory fully into the built-in memory plugin, including configuration, commands, tools, retrieval provider, and auto-archive event handling.
16
+ - Keep scheduled wakeups as a core runtime/server primitive while simplifying the scheduler plugin into an agent-facing facade.
17
+ - Refresh the README around startup modes, runtime files, plugin responsibilities, memory configuration, server endpoints, and the current project layout.
18
+
19
+ ### Removed
20
+ - Remove core memory surfaces such as `agent.memory`, the `/memory` server endpoint, `status.memory_entries`, and the `codex_agent.memory` module.
21
+ - Remove plugin-owned browser/desktop backend controller modules now that those controllers live in core modules.
22
+
23
+ ### Tests
24
+ - Validate the full suite at 449 passing tests.
25
+
26
+ ## [0.1.17] - 2026-05-08
27
+ ### Changed
28
+ - Reorganize the Textual TUI into the `codex_agent.tui` package, splitting chat UI code from TUI lifecycle helpers.
29
+ - Reorganize the FastAPI bridge into the `codex_agent.server` package, separating server core/service logic from app and route creation.
30
+ - Remove the obsolete `Message.lasting` field now that message visibility is controlled by `turns_left`, reducing serialized payload noise.
31
+
32
+ ### Removed
33
+ - Remove the old flat `codex_agent.chat` and `codex_agent.tui` modules in favor of the new package layout.
34
+
35
+ ### Tests
36
+ - Validate the full suite at 442 passing tests.
37
+
7
38
  ## [0.1.16] - 2026-05-08
8
39
  ### Fixed
9
40
  - Allow agent startup without an OpenAI API key by disabling OpenAI-dependent capabilities such as voice defaults and the built-in memory plugin instead of failing during initialization.