codex-agent-framework 0.1.83__tar.gz → 0.1.86__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.83 → codex_agent_framework-0.1.86}/CHANGELOG.md +30 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/MANIFEST.in +8 -0
- {codex_agent_framework-0.1.83/codex_agent_framework.egg-info → codex_agent_framework-0.1.86}/PKG-INFO +2 -1
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/README.md +1 -0
- codex_agent_framework-0.1.86/apps/desktop/.gitignore +25 -0
- codex_agent_framework-0.1.86/apps/desktop/README.md +25 -0
- codex_agent_framework-0.1.86/apps/desktop/eslint.config.js +23 -0
- codex_agent_framework-0.1.86/apps/desktop/index.html +29 -0
- codex_agent_framework-0.1.86/apps/desktop/package.json +40 -0
- codex_agent_framework-0.1.86/apps/desktop/pnpm-lock.yaml +3339 -0
- codex_agent_framework-0.1.86/apps/desktop/public/favicon.svg +32 -0
- codex_agent_framework-0.1.86/apps/desktop/public/icons.svg +24 -0
- codex_agent_framework-0.1.86/apps/desktop/public/pandora-logo.png +0 -0
- codex_agent_framework-0.1.86/apps/desktop/src/App.test.ts +245 -0
- codex_agent_framework-0.1.86/apps/desktop/src/App.tsx +777 -0
- codex_agent_framework-0.1.86/apps/desktop/src/api.test.ts +113 -0
- codex_agent_framework-0.1.86/apps/desktop/src/api.ts +484 -0
- codex_agent_framework-0.1.86/apps/desktop/src/assets/hero.png +0 -0
- codex_agent_framework-0.1.86/apps/desktop/src/assets/pandora-logo.png +0 -0
- codex_agent_framework-0.1.86/apps/desktop/src/assets/vite.svg +1 -0
- codex_agent_framework-0.1.86/apps/desktop/src/components/Chat.tsx +13 -0
- codex_agent_framework-0.1.86/apps/desktop/src/components/ChatArea.tsx +631 -0
- codex_agent_framework-0.1.86/apps/desktop/src/components/Composer.tsx +453 -0
- codex_agent_framework-0.1.86/apps/desktop/src/components/Header.tsx +142 -0
- codex_agent_framework-0.1.86/apps/desktop/src/components/IconButton.tsx +45 -0
- codex_agent_framework-0.1.86/apps/desktop/src/components/InteractionModal.tsx +145 -0
- codex_agent_framework-0.1.86/apps/desktop/src/components/SettingsPanel.tsx +698 -0
- codex_agent_framework-0.1.86/apps/desktop/src/components/ShowRenderer.tsx +328 -0
- codex_agent_framework-0.1.86/apps/desktop/src/components/SidePanel.tsx +47 -0
- codex_agent_framework-0.1.86/apps/desktop/src/components/Splash.tsx +88 -0
- codex_agent_framework-0.1.86/apps/desktop/src/components/StatusBar.tsx +147 -0
- codex_agent_framework-0.1.86/apps/desktop/src/components/icons.tsx +132 -0
- codex_agent_framework-0.1.86/apps/desktop/src/index.css +194 -0
- codex_agent_framework-0.1.86/apps/desktop/src/main.tsx +10 -0
- codex_agent_framework-0.1.86/apps/desktop/src/models.test.ts +32 -0
- codex_agent_framework-0.1.86/apps/desktop/src/models.ts +40 -0
- codex_agent_framework-0.1.86/apps/desktop/src/store.test.ts +76 -0
- codex_agent_framework-0.1.86/apps/desktop/src/store.ts +265 -0
- codex_agent_framework-0.1.86/apps/desktop/src/vite-env.d.ts +1 -0
- codex_agent_framework-0.1.86/apps/desktop/src-tauri/Cargo.lock +4946 -0
- codex_agent_framework-0.1.86/apps/desktop/src-tauri/Cargo.toml +12 -0
- codex_agent_framework-0.1.86/apps/desktop/src-tauri/build.rs +3 -0
- codex_agent_framework-0.1.86/apps/desktop/src-tauri/capabilities/default.json +40 -0
- codex_agent_framework-0.1.86/apps/desktop/src-tauri/gen/schemas/acl-manifests.json +1 -0
- codex_agent_framework-0.1.86/apps/desktop/src-tauri/gen/schemas/capabilities.json +1 -0
- codex_agent_framework-0.1.86/apps/desktop/src-tauri/gen/schemas/desktop-schema.json +2244 -0
- codex_agent_framework-0.1.86/apps/desktop/src-tauri/gen/schemas/linux-schema.json +2244 -0
- codex_agent_framework-0.1.86/apps/desktop/src-tauri/icons/icon-32.png +0 -0
- codex_agent_framework-0.1.86/apps/desktop/src-tauri/icons/icon.png +0 -0
- codex_agent_framework-0.1.86/apps/desktop/src-tauri/icons/icon.svg +32 -0
- codex_agent_framework-0.1.86/apps/desktop/src-tauri/src/main.rs +82 -0
- codex_agent_framework-0.1.86/apps/desktop/src-tauri/tauri.conf.json +38 -0
- codex_agent_framework-0.1.86/apps/desktop/tsconfig.app.json +26 -0
- codex_agent_framework-0.1.86/apps/desktop/tsconfig.json +7 -0
- codex_agent_framework-0.1.86/apps/desktop/tsconfig.node.json +24 -0
- codex_agent_framework-0.1.86/apps/desktop/vite.config.ts +26 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/agent.py +8 -22
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/ai.py +2 -2
- codex_agent_framework-0.1.86/codex_agent/builtin_plugins/interface/__init__.py +108 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/tts/__init__.py +0 -2
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/cli/headless.py +140 -4
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/cli/main.py +72 -12
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/cli/root.py +26 -2
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/cli/runner.py +12 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/client.py +69 -8
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/config.py +2 -14
- codex_agent_framework-0.1.86/codex_agent/dock.py +92 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/mainloop.py +33 -43
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/message.py +1 -1
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/plugin.py +1 -10
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/prompts/system_prompt.txt +36 -28
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/server/app.py +19 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/server/core.py +31 -48
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/service.py +25 -8
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/status.py +4 -64
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/tool.py +21 -58
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/tray.py +8 -31
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/tui/__init__.py +2 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/tui/app.py +26 -11
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/tui/lifecycle.py +29 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/tui/state.py +6 -1
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/tui/widgets.py +29 -6
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/utils.py +3 -0
- codex_agent_framework-0.1.86/codex_agent/version.py +1 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86/codex_agent_framework.egg-info}/PKG-INFO +2 -1
- codex_agent_framework-0.1.86/codex_agent_framework.egg-info/SOURCES.txt +262 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/pyproject.toml +1 -1
- codex_agent_framework-0.1.86/setup.py +42 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_agent_context.py +36 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_agent_plugins.py +86 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_agent_response.py +1 -1
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_builtin_config.py +0 -14
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_chat.py +1 -17
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_cli.py +108 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_cli_root.py +16 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_memory.py +1 -1
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_server.py +53 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_service.py +12 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_tui.py +29 -0
- codex_agent_framework-0.1.83/codex_agent/builtin_plugins/interface/__init__.py +0 -53
- codex_agent_framework-0.1.83/codex_agent/version.py +0 -1
- codex_agent_framework-0.1.83/codex_agent_framework.egg-info/SOURCES.txt +0 -156
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/LICENSE +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/__main__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/agent_runtime.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/browser.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_commands.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/bash/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/bash/requirements.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/browser/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/browser/requirements.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/content/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/content/requirements.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/content/system.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/content/vision.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/context/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/desktop/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/desktop/requirements.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/environment/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/environment/requirements.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/files/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/files/requirements.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/files/tools.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/image_generation/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/image_generation/image_generation_system_prompt.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/image_generation/requirements.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/interface/requirements.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/memory/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/memory/requirements.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/planner/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/planner/requirements.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/python/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/python/requirements.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/realtime/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/realtime/audio.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/realtime/bridge.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/realtime/manager.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/realtime/requirements.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/realtime/session.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/scheduler/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/scheduler/requirements.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/subagents/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/subagents/profiles/explorer.json +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/subagents/requirements.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/tts/requirements.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/builtin_plugins/web_search/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/cli/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/cli/output.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/command.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/context.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/desktop.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/event.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/get_text/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/get_text/default_gitignore +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/get_text/get_text.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/get_text/simpler_get_text.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/hooks.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/image.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/interactions.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/latex.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/prompts/compaction_prompt.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/provider.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/runtime.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/scheduler.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/scripts/install-system-dependencies.sh +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/server/__init__.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/sessions.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/stream.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/stream_utils.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/token_counter.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/tui/chat.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/tui/log.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/tui/perf.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/tui/status_bar.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/tui/stream_debug.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/tui/style.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/tui/transcript.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent/worker.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent_framework.egg-info/dependency_links.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent_framework.egg-info/entry_points.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent_framework.egg-info/requires.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/codex_agent_framework.egg-info/top_level.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/dependencies.txt +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/setup.cfg +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_agent.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_agent_audio_hooks.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_agent_commands.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_agent_desktop.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_agent_environment.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_agent_image_generation.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_agent_observe.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_agent_providers_config.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_agent_realtime.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_agent_runtime.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_agent_sessions.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_agent_subagents.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_agent_tools.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_agent_turns.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_ai.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_browser.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_cli_headless.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_client.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_events.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_get_text_browser.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_hooks.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_image_message.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_local_desktop.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_messages.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_planner.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_scheduler.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_token_counter.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_utils.py +0 -0
- {codex_agent_framework-0.1.83 → codex_agent_framework-0.1.86}/tests/test_worker.py +0 -0
|
@@ -4,6 +4,36 @@ 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.86] - 2026-07-10
|
|
8
|
+
### Changed
|
|
9
|
+
- Simplify tool schema token accounting around a shared Responses-tool primitive while preserving local and server tool formats.
|
|
10
|
+
- Remove inert plugin-config compatibility arguments, message `pending` hints, and a stale TUI transcript shim.
|
|
11
|
+
- Restructure the code-quality guidance into concise, actionable maintainer principles.
|
|
12
|
+
|
|
13
|
+
### Tests
|
|
14
|
+
- Validate the simplification pass with the full offline suite (700 passed).
|
|
15
|
+
|
|
16
|
+
## [0.1.85] - 2026-07-05
|
|
17
|
+
### Changed
|
|
18
|
+
- Simplify the CLI around the persisted active session: `codex-agent` and `run` now target the active session by default, with `--new` for starting fresh.
|
|
19
|
+
- Add a human-oriented `plugins` CLI/API surface for listing, loading, unloading, and reloading builtin or custom plugins.
|
|
20
|
+
- Improve TUI stream responsiveness with faster live flushes, local delta coalescing, and batched event queue draining.
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
- Make TUI reopening wait for real registration before reporting success, avoiding stale immediate status snapshots.
|
|
24
|
+
- Preserve compaction summaries before recent conversation messages while keeping provider messages at the end of the active context.
|
|
25
|
+
|
|
26
|
+
### Tests
|
|
27
|
+
- Validate the CLI, server, context, plugin, TUI, and service changes with targeted coverage.
|
|
28
|
+
|
|
29
|
+
## [0.1.84] - 2026-07-03
|
|
30
|
+
### Changed
|
|
31
|
+
- Include the desktop dock Tauri sources in Python source and wheel distributions, excluding generated build artifacts.
|
|
32
|
+
- Let `codex-agent bootstrap` build/install the dock from either a repository checkout or installed package data.
|
|
33
|
+
|
|
34
|
+
### Tests
|
|
35
|
+
- Validate that built distributions contain desktop sources without `node_modules`, Vite `dist`, or Tauri `target` artifacts.
|
|
36
|
+
|
|
7
37
|
## [0.1.83] - 2026-07-03
|
|
8
38
|
### Changed
|
|
9
39
|
- Finalize the first functional desktop dock integration against the current local server: native SSE events, interactions, sessions, plugins, scheduler, auth/status, and settings.
|
|
@@ -5,5 +5,13 @@ recursive-include codex_agent/prompts *.txt
|
|
|
5
5
|
include codex_agent/get_text/default_gitignore
|
|
6
6
|
recursive-include codex_agent/scripts *.sh
|
|
7
7
|
include dependencies.txt
|
|
8
|
+
include setup.py
|
|
9
|
+
recursive-include apps/desktop *
|
|
10
|
+
prune apps/desktop/node_modules
|
|
11
|
+
prune apps/desktop/dist
|
|
12
|
+
prune apps/desktop/src-tauri/target
|
|
13
|
+
prune apps/desktop/coverage
|
|
14
|
+
prune apps/desktop/.pytest_cache
|
|
15
|
+
prune apps/desktop/.vitest
|
|
8
16
|
recursive-exclude * __pycache__
|
|
9
17
|
recursive-exclude * *.py[co]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codex-agent-framework
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.86
|
|
4
4
|
Summary: A lightweight event-driven Codex agent runtime.
|
|
5
5
|
Author: Baptiste
|
|
6
6
|
License-Expression: MIT
|
|
@@ -163,6 +163,7 @@ Useful CLI commands:
|
|
|
163
163
|
```bash
|
|
164
164
|
codex-agent status --json
|
|
165
165
|
codex-agent tools
|
|
166
|
+
codex-agent plugins list
|
|
166
167
|
codex-agent sessions list
|
|
167
168
|
codex-agent config get
|
|
168
169
|
codex-agent run "Run a quick repository health check."
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Logs
|
|
2
|
+
logs
|
|
3
|
+
*.log
|
|
4
|
+
npm-debug.log*
|
|
5
|
+
yarn-debug.log*
|
|
6
|
+
yarn-error.log*
|
|
7
|
+
pnpm-debug.log*
|
|
8
|
+
lerna-debug.log*
|
|
9
|
+
|
|
10
|
+
node_modules
|
|
11
|
+
dist
|
|
12
|
+
dist-ssr
|
|
13
|
+
src-tauri/target
|
|
14
|
+
*.local
|
|
15
|
+
|
|
16
|
+
# Editor directories and files
|
|
17
|
+
.vscode/*
|
|
18
|
+
!.vscode/extensions.json
|
|
19
|
+
.idea
|
|
20
|
+
.DS_Store
|
|
21
|
+
*.suo
|
|
22
|
+
*.ntvs*
|
|
23
|
+
*.njsproj
|
|
24
|
+
*.sln
|
|
25
|
+
*.sw?
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Pandora Desktop
|
|
2
|
+
|
|
3
|
+
Tauri + React desktop shell imported from the legacy `pandora-desktop-dock` project.
|
|
4
|
+
|
|
5
|
+
This app is currently kept close to its original implementation so it can be recabled incrementally to the current `codex-agent` / Pandora runtime API.
|
|
6
|
+
|
|
7
|
+
## Development
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pnpm install
|
|
11
|
+
pnpm dev
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Useful checks:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
pnpm test
|
|
18
|
+
pnpm build
|
|
19
|
+
pnpm lint
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Notes
|
|
23
|
+
|
|
24
|
+
- Runtime API endpoints still reflect the legacy Pandora desktop/server contract in several places.
|
|
25
|
+
- Build artifacts such as `node_modules`, `dist`, and `src-tauri/target` are intentionally excluded from the repository.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import js from '@eslint/js'
|
|
2
|
+
import globals from 'globals'
|
|
3
|
+
import reactHooks from 'eslint-plugin-react-hooks'
|
|
4
|
+
import reactRefresh from 'eslint-plugin-react-refresh'
|
|
5
|
+
import tseslint from 'typescript-eslint'
|
|
6
|
+
import { defineConfig, globalIgnores } from 'eslint/config'
|
|
7
|
+
|
|
8
|
+
export default defineConfig([
|
|
9
|
+
globalIgnores(['dist']),
|
|
10
|
+
{
|
|
11
|
+
files: ['**/*.{ts,tsx}'],
|
|
12
|
+
extends: [
|
|
13
|
+
js.configs.recommended,
|
|
14
|
+
tseslint.configs.recommended,
|
|
15
|
+
reactHooks.configs.flat.recommended,
|
|
16
|
+
reactRefresh.configs.vite,
|
|
17
|
+
],
|
|
18
|
+
languageOptions: {
|
|
19
|
+
ecmaVersion: 2020,
|
|
20
|
+
globals: globals.browser,
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
])
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title>Pandora Dock</title>
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<div id="root">
|
|
11
|
+
<div style="height:100vh;display:flex;align-items:center;justify-content:center;background:#242424;color:#e4e4e7;font:12px -apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;">
|
|
12
|
+
Pandora loading...
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
15
|
+
<script>
|
|
16
|
+
window.addEventListener("error", function (event) {
|
|
17
|
+
var root = document.getElementById("root");
|
|
18
|
+
if (!root) return;
|
|
19
|
+
root.innerHTML = '<div style="height:100vh;padding:16px;background:#242424;color:#fca5a5;font:12px monospace;white-space:pre-wrap;">' +
|
|
20
|
+
'Pandora frontend error\\n\\n' + String(event.message || event.error || "unknown error") + '</div>';
|
|
21
|
+
});
|
|
22
|
+
// Apply zoom instantly before React mounts — no flash
|
|
23
|
+
try { var ui = JSON.parse(localStorage.getItem("pandora-dock-ui") || "{}");
|
|
24
|
+
if (ui.zoom) document.getElementById("root").style.zoom = ui.zoom;
|
|
25
|
+
} catch(e) {}
|
|
26
|
+
</script>
|
|
27
|
+
<script type="module" src="/src/main.tsx"></script>
|
|
28
|
+
</body>
|
|
29
|
+
</html>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pandora-desktop-dock",
|
|
3
|
+
"private": true,
|
|
4
|
+
"version": "0.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"dev": "vite",
|
|
8
|
+
"build": "tsc -b && vite build",
|
|
9
|
+
"test": "vitest run",
|
|
10
|
+
"test:watch": "vitest",
|
|
11
|
+
"lint": "eslint .",
|
|
12
|
+
"preview": "vite preview"
|
|
13
|
+
},
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"@tauri-apps/api": "^2.10.1",
|
|
16
|
+
"react": "^19.2.4",
|
|
17
|
+
"react-dom": "^19.2.4",
|
|
18
|
+
"react-markdown": "^10.1.0",
|
|
19
|
+
"remark-gfm": "^4.0.1",
|
|
20
|
+
"zustand": "^5.0.12"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@eslint/js": "^9.39.4",
|
|
24
|
+
"@tailwindcss/vite": "^4.2.2",
|
|
25
|
+
"@tauri-apps/cli": "^2.10.1",
|
|
26
|
+
"@types/node": "^24.12.2",
|
|
27
|
+
"@types/react": "^19.2.14",
|
|
28
|
+
"@types/react-dom": "^19.2.3",
|
|
29
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
30
|
+
"eslint": "^9.39.4",
|
|
31
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
32
|
+
"eslint-plugin-react-refresh": "^0.5.2",
|
|
33
|
+
"globals": "^17.4.0",
|
|
34
|
+
"tailwindcss": "^4.2.2",
|
|
35
|
+
"typescript": "~6.0.2",
|
|
36
|
+
"typescript-eslint": "^8.58.0",
|
|
37
|
+
"vite": "^8.0.4",
|
|
38
|
+
"vitest": "^4.1.5"
|
|
39
|
+
}
|
|
40
|
+
}
|