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.
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/CHANGELOG.md +19 -0
- {codex_agent_framework-0.1.19/codex_agent_framework.egg-info → codex_agent_framework-0.1.20}/PKG-INFO +329 -130
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/README.md +328 -129
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/__init__.py +12 -16
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/agent.py +29 -38
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/agent_runtime.py +2 -2
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/ai.py +4 -4
- codex_agent_framework-0.1.20/codex_agent/builtin_plugins/bash/__init__.py +52 -0
- codex_agent_framework-0.1.20/codex_agent/builtin_plugins/content/__init__.py +30 -0
- {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
- {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
- codex_agent_framework-0.1.20/codex_agent/builtin_plugins/environment/__init__.py +21 -0
- codex_agent_framework-0.1.20/codex_agent/builtin_plugins/files/__init__.py +28 -0
- 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
- codex_agent_framework-0.1.20/codex_agent/builtin_plugins/interface/__init__.py +23 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/builtin_plugins/memory/__init__.py +2 -2
- codex_agent_framework-0.1.20/codex_agent/builtin_plugins/python/__init__.py +49 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/cli/headless.py +3 -3
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/command.py +4 -4
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/config.py +14 -6
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/context.py +4 -4
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/event.py +13 -18
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/mainloop.py +14 -18
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/plugin.py +53 -7
- codex_agent_framework-0.1.20/codex_agent/provider.py +58 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/server/app.py +1 -1
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/server/core.py +7 -7
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/status.py +1 -1
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/tool.py +102 -1
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/tui/chat.py +4 -16
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20/codex_agent_framework.egg-info}/PKG-INFO +329 -130
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent_framework.egg-info/SOURCES.txt +9 -8
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/pyproject.toml +1 -1
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_agent.py +230 -103
- codex_agent_framework-0.1.20/tests/test_builtin_config.py +33 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_chat.py +22 -1
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_cli_headless.py +1 -1
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_events.py +5 -5
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_hooks.py +4 -10
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_image_message.py +5 -5
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_memory.py +3 -3
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_planner.py +1 -1
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_server.py +37 -37
- codex_agent_framework-0.1.19/codex_agent/builtin_providers.py +0 -17
- codex_agent_framework-0.1.19/codex_agent/builtin_tools/__init__.py +0 -52
- codex_agent_framework-0.1.19/codex_agent/builtin_tools/server_tools.py +0 -4
- codex_agent_framework-0.1.19/codex_agent/builtin_tools/shell.py +0 -61
- codex_agent_framework-0.1.19/codex_agent/provider.py +0 -22
- codex_agent_framework-0.1.19/codex_agent/registry.py +0 -207
- codex_agent_framework-0.1.19/tests/test_builtin_config.py +0 -33
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/LICENSE +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/MANIFEST.in +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/__main__.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/browser.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/builtin_commands.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/builtin_plugins/__init__.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/builtin_plugins/browser/__init__.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/builtin_plugins/desktop/__init__.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/builtin_plugins/planner/__init__.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/builtin_plugins/scheduler/__init__.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/cli/__init__.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/cli/main.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/cli/output.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/cli/root.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/cli/runner.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/client.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/desktop.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/get_text/__init__.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/get_text/default_gitignore +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/get_text/get_text.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/get_text/simpler_get_text.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/hooks.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/image.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/latex.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/message.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/prompts/image_generation_system_prompt.txt +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/prompts/system_prompt.txt +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/runtime.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/scheduler.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/scripts/install-system-dependencies.sh +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/server/__init__.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/service.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/sessions.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/stream_utils.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/tray.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/tui/__init__.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/tui/lifecycle.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/utils.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/voice.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent/worker.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent_framework.egg-info/dependency_links.txt +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent_framework.egg-info/entry_points.txt +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent_framework.egg-info/requires.txt +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/codex_agent_framework.egg-info/top_level.txt +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/dependencies.txt +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/setup.cfg +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_agent_runtime.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_ai.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_browser.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_cli.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_cli_root.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_client.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_get_text_browser.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_local_desktop.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_messages.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_scheduler.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_service.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_tray.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_tui.py +0 -0
- {codex_agent_framework-0.1.19 → codex_agent_framework-0.1.20}/tests/test_utils.py +0 -0
- {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.
|