codex-agent-framework 0.1.19__tar.gz → 0.1.20__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 (111) hide show
  1. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/CHANGELOG.md +19 -0
  2. {codex_agent_framework-0.1.19/codex_agent_framework.egg-info → codex_agent_framework-0.1.20}/PKG-INFO +329 -130
  3. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/README.md +328 -129
  4. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/__init__.py +12 -16
  5. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/agent.py +29 -38
  6. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/agent_runtime.py +2 -2
  7. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/ai.py +4 -4
  8. codex_agent_framework-0.1.20/codex_agent/builtin_plugins/bash/__init__.py +52 -0
  9. codex_agent_framework-0.1.20/codex_agent/builtin_plugins/content/__init__.py +30 -0
  10. {codex_agent_framework-0.1.19/codex_agent/builtin_tools → codex_agent_framework-0.1.20/codex_agent/builtin_plugins/content}/system.py +1 -1
  11. {codex_agent_framework-0.1.19/codex_agent/builtin_tools → codex_agent_framework-0.1.20/codex_agent/builtin_plugins/content}/vision.py +9 -20
  12. codex_agent_framework-0.1.20/codex_agent/builtin_plugins/environment/__init__.py +21 -0
  13. codex_agent_framework-0.1.20/codex_agent/builtin_plugins/files/__init__.py +28 -0
  14. codex_agent_framework-0.1.19/codex_agent/builtin_tools/files.py → codex_agent_framework-0.1.20/codex_agent/builtin_plugins/files/tools.py +2 -2
  15. codex_agent_framework-0.1.20/codex_agent/builtin_plugins/interface/__init__.py +23 -0
  16. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/builtin_plugins/memory/__init__.py +2 -2
  17. codex_agent_framework-0.1.20/codex_agent/builtin_plugins/python/__init__.py +49 -0
  18. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/cli/headless.py +3 -3
  19. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/command.py +4 -4
  20. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/config.py +14 -6
  21. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/context.py +4 -4
  22. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/event.py +13 -18
  23. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/mainloop.py +14 -18
  24. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/plugin.py +53 -7
  25. codex_agent_framework-0.1.20/codex_agent/provider.py +58 -0
  26. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/server/app.py +1 -1
  27. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/server/core.py +7 -7
  28. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/status.py +1 -1
  29. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/tool.py +102 -1
  30. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/tui/chat.py +4 -16
  31. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20/codex_agent_framework.egg-info}/PKG-INFO +329 -130
  32. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent_framework.egg-info/SOURCES.txt +9 -8
  33. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/pyproject.toml +1 -1
  34. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_agent.py +230 -103
  35. codex_agent_framework-0.1.20/tests/test_builtin_config.py +33 -0
  36. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_chat.py +22 -1
  37. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_cli_headless.py +1 -1
  38. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_events.py +5 -5
  39. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_hooks.py +4 -10
  40. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_image_message.py +5 -5
  41. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_memory.py +3 -3
  42. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_planner.py +1 -1
  43. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_server.py +37 -37
  44. codex_agent_framework-0.1.19/codex_agent/builtin_providers.py +0 -17
  45. codex_agent_framework-0.1.19/codex_agent/builtin_tools/__init__.py +0 -52
  46. codex_agent_framework-0.1.19/codex_agent/builtin_tools/server_tools.py +0 -4
  47. codex_agent_framework-0.1.19/codex_agent/builtin_tools/shell.py +0 -61
  48. codex_agent_framework-0.1.19/codex_agent/provider.py +0 -22
  49. codex_agent_framework-0.1.19/codex_agent/registry.py +0 -207
  50. codex_agent_framework-0.1.19/tests/test_builtin_config.py +0 -33
  51. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/LICENSE +0 -0
  52. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/MANIFEST.in +0 -0
  53. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/__main__.py +0 -0
  54. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/browser.py +0 -0
  55. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/builtin_commands.py +0 -0
  56. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/builtin_plugins/__init__.py +0 -0
  57. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/builtin_plugins/browser/__init__.py +0 -0
  58. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/builtin_plugins/desktop/__init__.py +0 -0
  59. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/builtin_plugins/planner/__init__.py +0 -0
  60. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/builtin_plugins/scheduler/__init__.py +0 -0
  61. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/cli/__init__.py +0 -0
  62. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/cli/main.py +0 -0
  63. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/cli/output.py +0 -0
  64. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/cli/root.py +0 -0
  65. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/cli/runner.py +0 -0
  66. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/client.py +0 -0
  67. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/desktop.py +0 -0
  68. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/get_text/__init__.py +0 -0
  69. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/get_text/default_gitignore +0 -0
  70. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/get_text/get_text.py +0 -0
  71. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/get_text/simpler_get_text.py +0 -0
  72. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/hooks.py +0 -0
  73. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/image.py +0 -0
  74. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/latex.py +0 -0
  75. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/message.py +0 -0
  76. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/prompts/image_generation_system_prompt.txt +0 -0
  77. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/prompts/system_prompt.txt +0 -0
  78. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/runtime.py +0 -0
  79. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/scheduler.py +0 -0
  80. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/scripts/install-system-dependencies.sh +0 -0
  81. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/server/__init__.py +0 -0
  82. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/service.py +0 -0
  83. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/sessions.py +0 -0
  84. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/stream_utils.py +0 -0
  85. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/tray.py +0 -0
  86. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/tui/__init__.py +0 -0
  87. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/tui/lifecycle.py +0 -0
  88. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/utils.py +0 -0
  89. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/voice.py +0 -0
  90. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/worker.py +0 -0
  91. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent_framework.egg-info/dependency_links.txt +0 -0
  92. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent_framework.egg-info/entry_points.txt +0 -0
  93. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent_framework.egg-info/requires.txt +0 -0
  94. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent_framework.egg-info/top_level.txt +0 -0
  95. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/dependencies.txt +0 -0
  96. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/setup.cfg +0 -0
  97. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_agent_runtime.py +0 -0
  98. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_ai.py +0 -0
  99. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_browser.py +0 -0
  100. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_cli.py +0 -0
  101. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_cli_root.py +0 -0
  102. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_client.py +0 -0
  103. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_get_text_browser.py +0 -0
  104. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_local_desktop.py +0 -0
  105. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_messages.py +0 -0
  106. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_scheduler.py +0 -0
  107. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_service.py +0 -0
  108. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_tray.py +0 -0
  109. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_tui.py +0 -0
  110. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_utils.py +0 -0
  111. {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_worker.py +0 -0
@@ -4,6 +4,25 @@ 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.20] - 2026-05-09
8
+ ### Added
9
+ - Make runtime plugins the single user-facing extension unit for tools, providers, commands, prompt sections, hooks, and events.
10
+ - Add explicit `ToolsManager` and `ProvidersManager` ownership in `tool.py` and `provider.py`.
11
+
12
+ ### Changed
13
+ - Move built-in tools and providers into built-in plugins so the core no longer special-cases `builtin_tools` or `builtin_providers` packages.
14
+ - Keep SDK-style `agent.add_tool()` and `agent.add_provider()` while routing persistent runtime extensions through plugins.
15
+ - Keep system-prompt templating on a small explicit namespace: `agent`, `os`, `runtime_join`, `root_join`, and `text_content`.
16
+ - Refresh README extension, plugin, runtime, and project-layout documentation around the plugin-centric architecture.
17
+
18
+ ### Removed
19
+ - Remove the old `RegistryManager` and `codex_agent/registry.py`.
20
+ - Remove legacy direct runtime loading from `tools/` and `providers/` folders.
21
+ - Remove the compatibility `codex_agent.builtin_tools` package, `codex_agent.builtin_providers` module, and related compatibility aliases.
22
+
23
+ ### Tests
24
+ - Validate the full suite at 456 passing tests.
25
+
7
26
  ## [0.1.19] - 2026-05-08
8
27
  ### Changed
9
28
  - 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.