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