use-agent-os 2026.7.14.post1__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.
- use_agent_os-2026.7.14.post1/.dockerignore +62 -0
- use_agent_os-2026.7.14.post1/.env.example +19 -0
- use_agent_os-2026.7.14.post1/.gitattributes +7 -0
- use_agent_os-2026.7.14.post1/.github/ISSUE_TEMPLATE/bug_report.yml +65 -0
- use_agent_os-2026.7.14.post1/.github/ISSUE_TEMPLATE/config.yml +1 -0
- use_agent_os-2026.7.14.post1/.github/ISSUE_TEMPLATE/docs_report.yml +45 -0
- use_agent_os-2026.7.14.post1/.github/ISSUE_TEMPLATE/feature_request.yml +44 -0
- use_agent_os-2026.7.14.post1/.github/pull_request_template.md +7 -0
- use_agent_os-2026.7.14.post1/.github/scripts/classify-ci-changes.sh +109 -0
- use_agent_os-2026.7.14.post1/.github/workflows/ci.yml +290 -0
- use_agent_os-2026.7.14.post1/.github/workflows/live-release-e2e.yml +98 -0
- use_agent_os-2026.7.14.post1/.github/workflows/llm-e2e.yml +42 -0
- use_agent_os-2026.7.14.post1/.github/workflows/pypi-publish.yml +95 -0
- use_agent_os-2026.7.14.post1/.github/workflows/webui-browser-smoke.yml +47 -0
- use_agent_os-2026.7.14.post1/.github/workflows/wheelhouse-release.yml +430 -0
- use_agent_os-2026.7.14.post1/.gitignore +113 -0
- use_agent_os-2026.7.14.post1/AGENTS.md +132 -0
- use_agent_os-2026.7.14.post1/CHANGELOG.md +127 -0
- use_agent_os-2026.7.14.post1/CLAUDE.md +5 -0
- use_agent_os-2026.7.14.post1/CODE_OF_CONDUCT.md +30 -0
- use_agent_os-2026.7.14.post1/CONTRIBUTING.md +71 -0
- use_agent_os-2026.7.14.post1/Dockerfile +91 -0
- use_agent_os-2026.7.14.post1/Formula/agentos.rb +63 -0
- use_agent_os-2026.7.14.post1/LICENSE +21 -0
- use_agent_os-2026.7.14.post1/MIGRATION.md +475 -0
- use_agent_os-2026.7.14.post1/PKG-INFO +693 -0
- use_agent_os-2026.7.14.post1/README.md +603 -0
- use_agent_os-2026.7.14.post1/README.product.md +210 -0
- use_agent_os-2026.7.14.post1/README.release.md +33 -0
- use_agent_os-2026.7.14.post1/RELEASES.md +98 -0
- use_agent_os-2026.7.14.post1/SECURITY.md +30 -0
- use_agent_os-2026.7.14.post1/SUPPORT.md +26 -0
- use_agent_os-2026.7.14.post1/THIRD_PARTY_NOTICES.md +286 -0
- use_agent_os-2026.7.14.post1/agentos.toml.example +308 -0
- use_agent_os-2026.7.14.post1/assets/agentos-architecture.png +0 -0
- use_agent_os-2026.7.14.post1/assets/agentos-hero-banner.png +0 -0
- use_agent_os-2026.7.14.post1/assets/agentos-long-logo.png +0 -0
- use_agent_os-2026.7.14.post1/assets/agentos-mark.png +0 -0
- use_agent_os-2026.7.14.post1/assets/agentos-message-lifecycle.png +0 -0
- use_agent_os-2026.7.14.post1/assets/agentos-stacked-logo.png +0 -0
- use_agent_os-2026.7.14.post1/compose.yaml +26 -0
- use_agent_os-2026.7.14.post1/docs/README.md +82 -0
- use_agent_os-2026.7.14.post1/docs/agents.md +94 -0
- use_agent_os-2026.7.14.post1/docs/approvals-and-permissions.md +137 -0
- use_agent_os-2026.7.14.post1/docs/artifacts-and-media.md +121 -0
- use_agent_os-2026.7.14.post1/docs/channels.md +206 -0
- use_agent_os-2026.7.14.post1/docs/cli.md +231 -0
- use_agent_os-2026.7.14.post1/docs/configuration.md +335 -0
- use_agent_os-2026.7.14.post1/docs/contributing-docs.md +69 -0
- use_agent_os-2026.7.14.post1/docs/diagnostics-and-replay.md +101 -0
- use_agent_os-2026.7.14.post1/docs/features/agentos-router.md +174 -0
- use_agent_os-2026.7.14.post1/docs/features/compaction-and-cache.md +114 -0
- use_agent_os-2026.7.14.post1/docs/features/memory.md +129 -0
- use_agent_os-2026.7.14.post1/docs/features/skills.md +146 -0
- use_agent_os-2026.7.14.post1/docs/features/tool-compression.md +118 -0
- use_agent_os-2026.7.14.post1/docs/features.md +157 -0
- use_agent_os-2026.7.14.post1/docs/gateway.md +148 -0
- use_agent_os-2026.7.14.post1/docs/glossary.md +126 -0
- use_agent_os-2026.7.14.post1/docs/mcp-server.md +78 -0
- use_agent_os-2026.7.14.post1/docs/operations.md +235 -0
- use_agent_os-2026.7.14.post1/docs/providers-and-models.md +140 -0
- use_agent_os-2026.7.14.post1/docs/quickstart.md +228 -0
- use_agent_os-2026.7.14.post1/docs/scheduling.md +169 -0
- use_agent_os-2026.7.14.post1/docs/search.md +113 -0
- use_agent_os-2026.7.14.post1/docs/sessions.md +137 -0
- use_agent_os-2026.7.14.post1/docs/setup-guide.html +874 -0
- use_agent_os-2026.7.14.post1/docs/tools-and-sandbox.md +156 -0
- use_agent_os-2026.7.14.post1/docs/troubleshooting.md +185 -0
- use_agent_os-2026.7.14.post1/docs/usage-and-cost.md +96 -0
- use_agent_os-2026.7.14.post1/docs/use-cases.md +207 -0
- use_agent_os-2026.7.14.post1/docs/web-ui.md +131 -0
- use_agent_os-2026.7.14.post1/install.ps1 +285 -0
- use_agent_os-2026.7.14.post1/install.sh +260 -0
- use_agent_os-2026.7.14.post1/migrations/V001__initial_schema.py +59 -0
- use_agent_os-2026.7.14.post1/migrations/V002__scheduler_session_fields.py +59 -0
- use_agent_os-2026.7.14.post1/migrations/V003__heartbeat_ticks.py +54 -0
- use_agent_os-2026.7.14.post1/migrations/V004__memory_schema_version.py +79 -0
- use_agent_os-2026.7.14.post1/migrations/V005__agent_tasks.py +74 -0
- use_agent_os-2026.7.14.post1/migrations/V006__scheduler_reservations.py +58 -0
- use_agent_os-2026.7.14.post1/migrations/V007__session_cost_source_rollup.py +70 -0
- use_agent_os-2026.7.14.post1/migrations/V008__scheduler_job_tool_policy.py +48 -0
- use_agent_os-2026.7.14.post1/migrations/V009__transcript_reasoning_content.py +65 -0
- use_agent_os-2026.7.14.post1/migrations/V010__transcript_turn_usage.py +60 -0
- use_agent_os-2026.7.14.post1/pyproject.toml +211 -0
- use_agent_os-2026.7.14.post1/scripts/__init__.py +1 -0
- use_agent_os-2026.7.14.post1/scripts/build_wheelhouse_zip.py +1820 -0
- use_agent_os-2026.7.14.post1/scripts/install_source.ps1 +305 -0
- use_agent_os-2026.7.14.post1/scripts/install_source.sh +242 -0
- use_agent_os-2026.7.14.post1/scripts/live_deepseek_tool_replay_smoke.py +262 -0
- use_agent_os-2026.7.14.post1/scripts/live_long_context_chat_smoke.py +283 -0
- use_agent_os-2026.7.14.post1/scripts/live_openrouter_prompt_cache_smoke.py +163 -0
- use_agent_os-2026.7.14.post1/scripts/live_provider_profile_gateway_e2e.py +749 -0
- use_agent_os-2026.7.14.post1/scripts/live_provider_profile_smoke.py +456 -0
- use_agent_os-2026.7.14.post1/scripts/live_provider_thinking_smoke.py +408 -0
- use_agent_os-2026.7.14.post1/scripts/router_eval.py +445 -0
- use_agent_os-2026.7.14.post1/scripts/run_public_release_golden_prompts.py +121 -0
- use_agent_os-2026.7.14.post1/scripts/smoke_llm_judge_router.py +1818 -0
- use_agent_os-2026.7.14.post1/service-units/launchd/dev.useagentos.gateway.plist +60 -0
- use_agent_os-2026.7.14.post1/service-units/systemd/agentos.service +36 -0
- use_agent_os-2026.7.14.post1/service-units/windows/agentos-task.xml +73 -0
- use_agent_os-2026.7.14.post1/skills-lock.json +11 -0
- use_agent_os-2026.7.14.post1/src/agentos/__init__.py +22 -0
- use_agent_os-2026.7.14.post1/src/agentos/agentos_router/__init__.py +0 -0
- use_agent_os-2026.7.14.post1/src/agentos/agentos_router/controller.py +164 -0
- use_agent_os-2026.7.14.post1/src/agentos/agentos_router/llm_judge.py +1076 -0
- use_agent_os-2026.7.14.post1/src/agentos/agentos_router/v4_phase3.py +287 -0
- use_agent_os-2026.7.14.post1/src/agentos/agents/__init__.py +0 -0
- use_agent_os-2026.7.14.post1/src/agentos/agents/limits.py +16 -0
- use_agent_os-2026.7.14.post1/src/agentos/agents/registry.py +323 -0
- use_agent_os-2026.7.14.post1/src/agentos/agents/scope.py +191 -0
- use_agent_os-2026.7.14.post1/src/agentos/application/__init__.py +1 -0
- use_agent_os-2026.7.14.post1/src/agentos/application/approval_queue.py +455 -0
- use_agent_os-2026.7.14.post1/src/agentos/application/approval_rpc.py +140 -0
- use_agent_os-2026.7.14.post1/src/agentos/application/intent_cache.py +236 -0
- use_agent_os-2026.7.14.post1/src/agentos/application/wizard.py +375 -0
- use_agent_os-2026.7.14.post1/src/agentos/application/wizard_rpc.py +51 -0
- use_agent_os-2026.7.14.post1/src/agentos/artifacts.py +393 -0
- use_agent_os-2026.7.14.post1/src/agentos/asyncio_utils.py +16 -0
- use_agent_os-2026.7.14.post1/src/agentos/attachment_refs.py +153 -0
- use_agent_os-2026.7.14.post1/src/agentos/bootstrap_types.py +20 -0
- use_agent_os-2026.7.14.post1/src/agentos/channel_pairing.py +446 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/__init__.py +40 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/_attachment_io.py +168 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/_reactions.py +82 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/_util.py +298 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/_wecom_crypto.py +178 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/artifact_delivery.py +204 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/command_registry.py +178 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/contract.py +583 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/dingtalk.py +488 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/discord.py +920 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/manager.py +509 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/matrix.py +841 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/msteams.py +639 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/qq.py +497 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/registry.py +231 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/slack.py +714 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/stream_policy.py +61 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/telegram.py +864 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/terminal.py +76 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/transports.py +73 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/types.py +173 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/websocket.py +77 -0
- use_agent_os-2026.7.14.post1/src/agentos/channels/wecom.py +611 -0
- use_agent_os-2026.7.14.post1/src/agentos/chat/__init__.py +1 -0
- use_agent_os-2026.7.14.post1/src/agentos/chat/conversation.py +36 -0
- use_agent_os-2026.7.14.post1/src/agentos/chat/history.py +84 -0
- use_agent_os-2026.7.14.post1/src/agentos/chat/source.py +28 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/__init__.py +1 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/agent_cmd.py +851 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/agents_cmd.py +153 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/attachments.py +384 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/channel_fields.py +69 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/channels_cmd.py +584 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/chat/__init__.py +1 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/chat/commands.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/chat/entrypoint.py +78 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/chat/frontend.py +21 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/chat/gateway_runtime.py +246 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/chat/input_assets.py +71 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/chat/launch.py +26 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/chat/output.py +19 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/chat/session_context.py +87 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/chat/session_state.py +94 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/chat/turn.py +141 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/chat/turn_stream.py +763 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/chat_cmd.py +72 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/config_cmd.py +117 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/cost_cmd.py +92 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/cron_cmd.py +869 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/diagnostics_cmd.py +90 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/dist_cmd.py +47 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/doctor_cmd.py +718 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/gateway_client.py +621 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/gateway_cmd.py +276 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/gateway_lifecycle.py +693 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/gateway_rpc.py +177 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/init_cmd.py +95 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/main.py +962 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/mcp_server_cmd.py +33 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/memory_flush_cmd.py +400 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/migrate_cmd.py +606 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/models_cmd.py +55 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/onboard_cmd.py +1291 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/output.py +52 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/providers_cmd.py +133 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/__init__.py +1 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/app.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/approval.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/chat_cmd_legacy_exports.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/chat_compat.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/commands.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/gateway_runtime.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/input_assets.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/input_bridge.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/launch_bridge.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/paste.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/prompt.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/runtime_bridge.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/session_context.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/session_state.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/signal_handlers.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/slash_adapter.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/slash_bridge.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/slash_policy.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/standalone_runtime.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/standalone_slash_adapter.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/stream.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/terminal_bridge.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/terminal_chat_adapter.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/terminal_renderer.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/terminal_surface.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/turn_bridge.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/repl/turn_stream.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/replay.py +32 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/sandbox_cmd.py +114 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/search_cmd.py +183 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/sessions_cmd.py +331 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/skills_cmd.py +464 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/startup_screen.py +383 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/__init__.py +31 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/adapters/__init__.py +17 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/adapters/chat_cmd_exports.py +159 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/adapters/chat_compat.py +416 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/adapters/commands.py +87 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/adapters/input_bridge.py +71 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/adapters/launch_bridge.py +169 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/adapters/runtime_bridge.py +403 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/adapters/slash_bridge.py +235 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/adapters/slash_gateway.py +727 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/adapters/slash_policy.py +144 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/adapters/slash_standalone.py +591 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/adapters/terminal_bridge.py +39 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/adapters/terminal_chat_adapter.py +174 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/adapters/turn_stream_defaults.py +79 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/app.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/approval_adapter.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/backend/__init__.py +11 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/backend/contracts.py +163 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/backend/events.py +33 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/backend/output_binding.py +36 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/backend/runtime.py +234 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/backend/state.py +45 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/chat_cmd_exports.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/chat_compat.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/commands.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/contracts.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/events.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/input_bridge.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/launch_bridge.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/output_binding.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/paste.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/prompt.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/runtime.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/runtime_bridge.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/signal_handlers.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/slash_adapter.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/slash_bridge.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/slash_policy.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/standalone_runtime.py +360 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/standalone_slash_adapter.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/state.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/stream.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/terminal/__init__.py +12 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/terminal/app.py +665 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/terminal/approval.py +110 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/terminal/paste.py +27 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/terminal/prompt.py +583 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/terminal/renderer.py +154 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/terminal/signals.py +191 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/terminal/stream.py +730 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/terminal/surface.py +108 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/terminal_bridge.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/terminal_chat_adapter.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/terminal_renderer.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/terminal_surface.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/turn_bridge.py +275 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/tui/turn_stream_defaults.py +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/ui.py +90 -0
- use_agent_os-2026.7.14.post1/src/agentos/cli/url_utils.py +40 -0
- use_agent_os-2026.7.14.post1/src/agentos/compat/__init__.py +6 -0
- use_agent_os-2026.7.14.post1/src/agentos/compat/aiosqlite.py +368 -0
- use_agent_os-2026.7.14.post1/src/agentos/context_budget.py +281 -0
- use_agent_os-2026.7.14.post1/src/agentos/contracts/__init__.py +1 -0
- use_agent_os-2026.7.14.post1/src/agentos/contracts/attachments.py +90 -0
- use_agent_os-2026.7.14.post1/src/agentos/contrib/__init__.py +6 -0
- use_agent_os-2026.7.14.post1/src/agentos/dist/__init__.py +24 -0
- use_agent_os-2026.7.14.post1/src/agentos/dist/workspace_state.py +143 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/__init__.py +102 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/agent.py +4969 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/artifact_delivery.py +158 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/cache_break_monitor.py +310 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/commands.py +454 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/compaction_control.py +90 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/context.py +72 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/context_budget.py +58 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/fallback.py +115 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/history.py +332 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/hooks/__init__.py +56 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/hooks/defaults.py +210 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/hooks/types.py +165 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/outcome.py +135 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/pipeline.py +114 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/pricing.py +520 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/progress_watchdog.py +131 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/reasoning_hint.py +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/router_decision.py +79 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/runtime.py +5680 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/session_lock.py +48 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/session_sanitize.py +431 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/start_turn.py +72 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/steps/__init__.py +27 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/steps/agentos_router.py +1470 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/steps/inject_platform_hint.py +32 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/steps/inject_subagent_grounding.py +58 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/steps/inject_time_prefix.py +31 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/steps/prompt_cache.py +82 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/steps/reasoning_hint_observer.py +15 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/steps/resolve_model.py +20 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/steps/skills_filter.py +193 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/stream_wrappers.py +238 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/subagent.py +271 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/thinking.py +97 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/tokenjuice_adapter.py +76 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/tool_result_store.py +272 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/tool_text_compat.py +228 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/tool_token_estimate.py +8 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/turn_control.py +145 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/turn_policy.py +75 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/turn_runner/__init__.py +147 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/turn_runner/agent_bootstrap_stage.py +480 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/turn_runner/attachment_stage.py +132 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/turn_runner/compaction_and_history_stage.py +351 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/turn_runner/context.py +113 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/turn_runner/harness.py +1131 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/turn_runner/input_stage.py +192 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/turn_runner/outcome.py +90 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/turn_runner/prompt_assembler_stage.py +464 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/turn_runner/provider_and_tools_stage.py +217 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/turn_runner/stream_consumer_stage.py +933 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/turn_runner/turn_finalizer_stage.py +502 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/types.py +406 -0
- use_agent_os-2026.7.14.post1/src/agentos/engine/usage.py +455 -0
- use_agent_os-2026.7.14.post1/src/agentos/env.py +106 -0
- use_agent_os-2026.7.14.post1/src/agentos/execution_status.py +299 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/__init__.py +64 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/_debounce.py +64 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/agent_tasks.py +102 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/app.py +536 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/approval_queue.py +21 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/artifacts.py +80 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/attachment_ingest.py +516 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/attachments.py +109 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/audio_transcription.py +127 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/auth.py +198 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/background_completion.py +616 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/boot.py +2500 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/channel_dispatch.py +2287 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/config.py +2059 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/config_migration.py +501 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/context_overflow.py +919 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/control_ui.py +110 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/diagnostics.py +128 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/event_bridge.py +75 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/input_normalization.py +381 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/llm_runtime.py +87 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/memory_repair_service.py +891 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/middleware.py +151 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/pidlock.py +257 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/protocol.py +199 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/routing.py +420 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc/__init__.py +76 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc/registry.py +437 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_agents.py +379 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_approvals.py +182 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_channels.py +368 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_chat.py +537 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_commands.py +62 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_config.py +574 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_cron.py +912 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_diagnostics.py +40 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_doctor.py +509 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_logs.py +209 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_memory.py +773 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_models.py +52 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_onboarding.py +504 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_router.py +82 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_secrets.py +26 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_sessions.py +2454 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_skills.py +529 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_system.py +373 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_tools.py +257 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_usage.py +687 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/rpc_wizard.py +90 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/scopes.py +372 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/session_events.py +33 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/session_lifecycle.py +122 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/session_services.py +80 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/session_streams.py +123 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/css/base.css +695 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/css/components/token-widget.css +187 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/css/components.css +968 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/css/fonts.css +14 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/css/mobile.css +111 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/css/prism-agentos.css +112 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/css/views/agents.css +403 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/css/views/approvals.css +291 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/css/views/channels.css +583 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/css/views/chat.css +3084 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/css/views/config.css +875 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/css/views/cron.css +1161 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/css/views/health.css +589 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/css/views/logs.css +334 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/css/views/overview.css +466 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/css/views/sessions.css +602 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/css/views/setup.css +1308 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/css/views/skills.css +588 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/css/views/usage.css +848 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/fonts/Inter-Variable.woff2 +0 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/fonts/JetBrainsMono-Variable.woff2 +0 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/img/agentos-long-logo.png +0 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/img/agentos-mark.png +0 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/app.js +241 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/approval_monitor.js +271 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/components/savings-fx.js +331 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/components/token-widget.js +315 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/components.js +712 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/icons.js +58 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/markdown.js +197 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/router.js +79 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/rpc.js +241 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/theme.js +56 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/views/agents.js +533 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/views/approvals.js +351 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/views/channels.js +419 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/views/chat.js +8799 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/views/config.js +814 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/views/cron.js +1529 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/views/health.js +501 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/views/logs.js +367 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/views/overview.js +378 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/views/sessions.js +847 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/views/setup.js +1841 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/views/skills.js +589 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/js/views/usage.js +889 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/vendor/marked.min.js +6 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/vendor/prism-autoloader.min.js +1 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/vendor/prism-core.min.js +1 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/vendor/prism-langs/prism-bash.min.js +1 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/vendor/prism-langs/prism-javascript.min.js +1 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/vendor/prism-langs/prism-json.min.js +1 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/vendor/prism-langs/prism-python.min.js +1 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/vendor/prism-langs/prism-yaml.min.js +1 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/static/vendor/purify.min.js +3 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/subagent_announce.py +808 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/task_runtime.py +1402 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/templates/index.html +105 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/transcripts.py +293 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/uploads.py +396 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/websocket.py +843 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway/wizard.py +25 -0
- use_agent_os-2026.7.14.post1/src/agentos/gateway_client.py +267 -0
- use_agent_os-2026.7.14.post1/src/agentos/health/__init__.py +5 -0
- use_agent_os-2026.7.14.post1/src/agentos/health/evaluator.py +1365 -0
- use_agent_os-2026.7.14.post1/src/agentos/health/model.py +134 -0
- use_agent_os-2026.7.14.post1/src/agentos/health/recovery_commands.py +40 -0
- use_agent_os-2026.7.14.post1/src/agentos/identity/__init__.py +31 -0
- use_agent_os-2026.7.14.post1/src/agentos/identity/bootstrap.py +176 -0
- use_agent_os-2026.7.14.post1/src/agentos/identity/parser.py +121 -0
- use_agent_os-2026.7.14.post1/src/agentos/identity/prompt.py +85 -0
- use_agent_os-2026.7.14.post1/src/agentos/identity/templates/bootstrap/AGENTS.md +25 -0
- use_agent_os-2026.7.14.post1/src/agentos/identity/templates/bootstrap/BOOTSTRAP.md +25 -0
- use_agent_os-2026.7.14.post1/src/agentos/identity/templates/bootstrap/HEARTBEAT.md +17 -0
- use_agent_os-2026.7.14.post1/src/agentos/identity/templates/bootstrap/IDENTITY.md +15 -0
- use_agent_os-2026.7.14.post1/src/agentos/identity/templates/bootstrap/MEMORY.md +18 -0
- use_agent_os-2026.7.14.post1/src/agentos/identity/templates/bootstrap/SOUL.md +17 -0
- use_agent_os-2026.7.14.post1/src/agentos/identity/templates/bootstrap/TOOLS.md +9 -0
- use_agent_os-2026.7.14.post1/src/agentos/identity/templates/bootstrap/USER.md +17 -0
- use_agent_os-2026.7.14.post1/src/agentos/identity/templates/system_prompt.j2 +295 -0
- use_agent_os-2026.7.14.post1/src/agentos/identity/types.py +66 -0
- use_agent_os-2026.7.14.post1/src/agentos/identity/workspace.py +307 -0
- use_agent_os-2026.7.14.post1/src/agentos/mcp/__init__.py +23 -0
- use_agent_os-2026.7.14.post1/src/agentos/mcp/client.py +31 -0
- use_agent_os-2026.7.14.post1/src/agentos/mcp/discovery.py +147 -0
- use_agent_os-2026.7.14.post1/src/agentos/mcp/sse.py +159 -0
- use_agent_os-2026.7.14.post1/src/agentos/mcp/stdio.py +189 -0
- use_agent_os-2026.7.14.post1/src/agentos/mcp/types.py +31 -0
- use_agent_os-2026.7.14.post1/src/agentos/mcp_server/__init__.py +11 -0
- use_agent_os-2026.7.14.post1/src/agentos/mcp_server/bridge.py +294 -0
- use_agent_os-2026.7.14.post1/src/agentos/mcp_server/server.py +94 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/__init__.py +59 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/archive.py +121 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/backend.py +50 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/checkpoint.py +341 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/dream/__init__.py +7 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/dream/candidates.py +112 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/dream/curated_apply.py +106 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/dream/evidence.py +212 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/dream/models.py +95 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/dream/prompts.py +103 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/dream/quarantine.py +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/dream/ranking.py +101 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/dream/receipts.py +59 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/dream/rehydrate.py +40 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/dream/runner.py +425 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/dream_factory.py +136 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/embedding.py +542 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/embedding_resolver.py +266 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/flush.py +308 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/flush_config.py +28 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/flush_status.py +84 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/manager.py +651 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/meta.py +50 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/models/bge_onnx/config.json +31 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/models/bge_onnx/model.onnx +0 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/models/bge_onnx/special_tokens_map.json +37 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/models/bge_onnx/tokenizer.json +21278 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/models/bge_onnx/tokenizer_config.json +58 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/models/bge_onnx/vocab.txt +21128 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/protocols.py +26 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/redaction.py +18 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/retention.py +213 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/retrieval.py +277 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/session_flush.py +3467 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/session_source.py +176 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/source_paths.py +47 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/store.py +1290 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/sync_manager.py +440 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/turn_capture.py +246 -0
- use_agent_os-2026.7.14.post1/src/agentos/memory/types.py +113 -0
- use_agent_os-2026.7.14.post1/src/agentos/migration/__init__.py +1 -0
- use_agent_os-2026.7.14.post1/src/agentos/migration/env_file.py +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/migration/hermes.py +1120 -0
- use_agent_os-2026.7.14.post1/src/agentos/migration/openclaw.py +2090 -0
- use_agent_os-2026.7.14.post1/src/agentos/migration/orchestrator.py +239 -0
- use_agent_os-2026.7.14.post1/src/agentos/observability/__init__.py +75 -0
- use_agent_os-2026.7.14.post1/src/agentos/observability/decision_log.py +323 -0
- use_agent_os-2026.7.14.post1/src/agentos/observability/decision_log_aggregate.py +101 -0
- use_agent_os-2026.7.14.post1/src/agentos/observability/prompt_report.py +223 -0
- use_agent_os-2026.7.14.post1/src/agentos/observability/replay.py +66 -0
- use_agent_os-2026.7.14.post1/src/agentos/observability/safety_log.py +60 -0
- use_agent_os-2026.7.14.post1/src/agentos/observability/trace.py +265 -0
- use_agent_os-2026.7.14.post1/src/agentos/observability/turn_call_log.py +163 -0
- use_agent_os-2026.7.14.post1/src/agentos/onboarding/__init__.py +85 -0
- use_agent_os-2026.7.14.post1/src/agentos/onboarding/audio_specs.py +188 -0
- use_agent_os-2026.7.14.post1/src/agentos/onboarding/channel_specs.py +386 -0
- use_agent_os-2026.7.14.post1/src/agentos/onboarding/config_store.py +163 -0
- use_agent_os-2026.7.14.post1/src/agentos/onboarding/errors.py +19 -0
- use_agent_os-2026.7.14.post1/src/agentos/onboarding/flow.py +2447 -0
- use_agent_os-2026.7.14.post1/src/agentos/onboarding/image_generation_specs.py +161 -0
- use_agent_os-2026.7.14.post1/src/agentos/onboarding/memory_embedding_specs.py +133 -0
- use_agent_os-2026.7.14.post1/src/agentos/onboarding/mutations.py +1133 -0
- use_agent_os-2026.7.14.post1/src/agentos/onboarding/next_steps.py +301 -0
- use_agent_os-2026.7.14.post1/src/agentos/onboarding/provider_specs.py +293 -0
- use_agent_os-2026.7.14.post1/src/agentos/onboarding/redaction.py +65 -0
- use_agent_os-2026.7.14.post1/src/agentos/onboarding/router_specs.py +170 -0
- use_agent_os-2026.7.14.post1/src/agentos/onboarding/search_specs.py +173 -0
- use_agent_os-2026.7.14.post1/src/agentos/onboarding/section_status.py +353 -0
- use_agent_os-2026.7.14.post1/src/agentos/onboarding/setup_engine.py +194 -0
- use_agent_os-2026.7.14.post1/src/agentos/onboarding/setup_paths.py +29 -0
- use_agent_os-2026.7.14.post1/src/agentos/onboarding/status.py +473 -0
- use_agent_os-2026.7.14.post1/src/agentos/paths.py +75 -0
- use_agent_os-2026.7.14.post1/src/agentos/permissions.py +27 -0
- use_agent_os-2026.7.14.post1/src/agentos/persistence/__init__.py +8 -0
- use_agent_os-2026.7.14.post1/src/agentos/persistence/migrator.py +101 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/__init__.py +1 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/LICENSE.tokenjuice +21 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/PROVENANCE.md +32 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/__init__.py +6 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/formatters.py +48 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/matcher.py +118 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/plugin.py +78 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/reducer.py +94 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/archive/tar.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/archive/unzip.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/archive/zip.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/build/cmake.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/build/dotnet.json +36 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/build/esbuild.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/build/go-build.json +31 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/build/gradle.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/build/maven.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/build/msbuild.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/build/pnpm-build.json +44 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/build/swift-build.json +56 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/build/tsc.json +74 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/build/tsdown.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/build/vite.json +42 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/build/webpack.json +51 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/build/xcodebuild.json +80 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/cloud/aws.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/cloud/az.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/cloud/flyctl.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/cloud/gcloud.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/cloud/gh.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/cloud/vercel.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/database/mongosh.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/database/mysql.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/database/psql.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/database/redis-cli.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/database/sqlite3.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/devops/docker-build.json +53 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/devops/docker-compose.json +44 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/devops/docker-images.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/devops/docker-logs.json +43 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/devops/docker-ps.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/devops/helm.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/devops/kubectl-describe.json +45 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/devops/kubectl-get.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/devops/kubectl-logs.json +43 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/devops/pulumi.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/devops/terraform.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/devops/terragrunt.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/filesystem/fd.json +33 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/filesystem/find.json +42 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/filesystem/git-ls-files.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/filesystem/ls.json +29 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/filesystem/rg-files.json +34 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/generic/fallback.json +32 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/generic/help.json +25 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/git/branch.json +29 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/git/diff-name-only.json +29 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/git/diff-stat.json +37 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/git/diff.json +65 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/git/log-oneline.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/git/remote-v.json +29 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/git/show.json +50 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/git/stash-list.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/git/status.json +54 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/git/worktree-list.json +31 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/install/bun-install.json +43 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/install/npm-ci.json +49 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/install/npm-install.json +49 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/install/pnpm-install.json +43 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/install/yarn-install.json +42 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/lint/biome.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/lint/eslint.json +45 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/lint/oxlint.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/lint/prettier-check.json +34 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/media/ffmpeg.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/media/mediainfo.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/network/curl.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/network/dig.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/network/nslookup.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/network/ping.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/network/ssh.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/network/traceroute.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/network/wget.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/observability/free.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/observability/htop.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/observability/iostat.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/observability/top.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/observability/vmstat.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/package/apt-install.json +36 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/package/apt-upgrade.json +36 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/package/brew-install.json +31 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/package/brew-upgrade.json +31 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/package/composer.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/package/dnf-install.json +31 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/package/fnm.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/package/npm-ls.json +31 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/package/yum-install.json +31 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/search/git-grep.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/search/grep.json +38 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/search/rg.json +38 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/service/journalctl.json +42 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/service/launchctl.json +41 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/service/lsof.json +29 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/service/netstat.json +29 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/service/pm2.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/service/service.json +46 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/service/ss.json +29 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/service/systemctl-status.json +45 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/system/df.json +29 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/system/du.json +29 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/system/file.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/system/ps.json +29 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/task/env.json +31 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/task/just.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/task/make.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/task/mise.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/task/node.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/task/php.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/task/python.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/task/ruby.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/task/uv.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/tests/bun-test.json +56 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/tests/cargo-test.json +41 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/tests/go-test.json +49 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/tests/jest.json +41 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/tests/mocha.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/tests/npm-test.json +56 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/tests/playwright.json +37 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/tests/pnpm-test.json +56 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/tests/pytest.json +54 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/tests/rspec.json +31 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/tests/swift-test.json +66 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/tests/vitest.json +56 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/tests/yarn-test.json +56 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/text/wc.json +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/transfer/rsync.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules/transfer/scp.json +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/rules.py +73 -0
- use_agent_os-2026.7.14.post1/src/agentos/plugins/tokenjuice/types.py +29 -0
- use_agent_os-2026.7.14.post1/src/agentos/provider/__init__.py +125 -0
- use_agent_os-2026.7.14.post1/src/agentos/provider/anthropic.py +580 -0
- use_agent_os-2026.7.14.post1/src/agentos/provider/audio.py +745 -0
- use_agent_os-2026.7.14.post1/src/agentos/provider/context_capabilities.py +288 -0
- use_agent_os-2026.7.14.post1/src/agentos/provider/credentials.py +94 -0
- use_agent_os-2026.7.14.post1/src/agentos/provider/failures.py +211 -0
- use_agent_os-2026.7.14.post1/src/agentos/provider/image_generation.py +375 -0
- use_agent_os-2026.7.14.post1/src/agentos/provider/minimax_compat.py +50 -0
- use_agent_os-2026.7.14.post1/src/agentos/provider/model_catalog.py +390 -0
- use_agent_os-2026.7.14.post1/src/agentos/provider/ollama.py +215 -0
- use_agent_os-2026.7.14.post1/src/agentos/provider/openai.py +1333 -0
- use_agent_os-2026.7.14.post1/src/agentos/provider/openai_responses.py +399 -0
- use_agent_os-2026.7.14.post1/src/agentos/provider/openrouter_attribution.py +32 -0
- use_agent_os-2026.7.14.post1/src/agentos/provider/protocol.py +214 -0
- use_agent_os-2026.7.14.post1/src/agentos/provider/registry.py +343 -0
- use_agent_os-2026.7.14.post1/src/agentos/provider/request_proof.py +954 -0
- use_agent_os-2026.7.14.post1/src/agentos/provider/selector.py +247 -0
- use_agent_os-2026.7.14.post1/src/agentos/provider/smart_routing.py +69 -0
- use_agent_os-2026.7.14.post1/src/agentos/provider/types.py +283 -0
- use_agent_os-2026.7.14.post1/src/agentos/result_budget.py +531 -0
- use_agent_os-2026.7.14.post1/src/agentos/router_control.py +313 -0
- use_agent_os-2026.7.14.post1/src/agentos/router_tiers.py +91 -0
- use_agent_os-2026.7.14.post1/src/agentos/safety/__init__.py +34 -0
- use_agent_os-2026.7.14.post1/src/agentos/safety/injection_guard.py +315 -0
- use_agent_os-2026.7.14.post1/src/agentos/safety/permission_matrix.py +144 -0
- use_agent_os-2026.7.14.post1/src/agentos/safety/sandbox.py +201 -0
- use_agent_os-2026.7.14.post1/src/agentos/safety/tool_tiers.py +105 -0
- use_agent_os-2026.7.14.post1/src/agentos/sandbox/__init__.py +103 -0
- use_agent_os-2026.7.14.post1/src/agentos/sandbox/backend/__init__.py +92 -0
- use_agent_os-2026.7.14.post1/src/agentos/sandbox/backend/base.py +45 -0
- use_agent_os-2026.7.14.post1/src/agentos/sandbox/backend/bubblewrap.py +319 -0
- use_agent_os-2026.7.14.post1/src/agentos/sandbox/backend/noop.py +77 -0
- use_agent_os-2026.7.14.post1/src/agentos/sandbox/backend/seatbelt.py +536 -0
- use_agent_os-2026.7.14.post1/src/agentos/sandbox/config.py +162 -0
- use_agent_os-2026.7.14.post1/src/agentos/sandbox/governance.py +527 -0
- use_agent_os-2026.7.14.post1/src/agentos/sandbox/integration.py +592 -0
- use_agent_os-2026.7.14.post1/src/agentos/sandbox/intent_cache.py +17 -0
- use_agent_os-2026.7.14.post1/src/agentos/sandbox/policy.py +248 -0
- use_agent_os-2026.7.14.post1/src/agentos/sandbox/sensitive_paths.py +364 -0
- use_agent_os-2026.7.14.post1/src/agentos/sandbox/stale_output_cache.py +154 -0
- use_agent_os-2026.7.14.post1/src/agentos/sandbox/status.py +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/sandbox/types.py +327 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/__init__.py +45 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/delivery.py +546 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/dream_handler.py +80 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/engine.py +289 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/handlers.py +698 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/heartbeat.py +540 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/heartbeat_loop.py +302 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/heartbeat_service.py +282 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/jobs.py +386 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/ops.py +387 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/parser.py +198 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/payloads.py +254 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/persistence.py +913 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/prompt_safety.py +48 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/reaper.py +57 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/routing.py +21 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/schedule_normalizer.py +122 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/stagger.py +56 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/templates/HEARTBEAT.md +24 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/timer.py +313 -0
- use_agent_os-2026.7.14.post1/src/agentos/scheduler/types.py +230 -0
- use_agent_os-2026.7.14.post1/src/agentos/search/__init__.py +20 -0
- use_agent_os-2026.7.14.post1/src/agentos/search/providers/__init__.py +1 -0
- use_agent_os-2026.7.14.post1/src/agentos/search/providers/brave.py +105 -0
- use_agent_os-2026.7.14.post1/src/agentos/search/providers/duckduckgo.py +93 -0
- use_agent_os-2026.7.14.post1/src/agentos/search/registry.py +74 -0
- use_agent_os-2026.7.14.post1/src/agentos/search/types.py +66 -0
- use_agent_os-2026.7.14.post1/src/agentos/secrets.py +24 -0
- use_agent_os-2026.7.14.post1/src/agentos/session/__init__.py +86 -0
- use_agent_os-2026.7.14.post1/src/agentos/session/compaction.py +743 -0
- use_agent_os-2026.7.14.post1/src/agentos/session/compaction_lifecycle.py +532 -0
- use_agent_os-2026.7.14.post1/src/agentos/session/compaction_state.py +505 -0
- use_agent_os-2026.7.14.post1/src/agentos/session/context_state_selection.py +55 -0
- use_agent_os-2026.7.14.post1/src/agentos/session/context_view.py +213 -0
- use_agent_os-2026.7.14.post1/src/agentos/session/cost_rollup.py +77 -0
- use_agent_os-2026.7.14.post1/src/agentos/session/keys.py +211 -0
- use_agent_os-2026.7.14.post1/src/agentos/session/manager.py +1335 -0
- use_agent_os-2026.7.14.post1/src/agentos/session/models.py +298 -0
- use_agent_os-2026.7.14.post1/src/agentos/session/openai_responses_state.py +93 -0
- use_agent_os-2026.7.14.post1/src/agentos/session/storage.py +1612 -0
- use_agent_os-2026.7.14.post1/src/agentos/session/terminal_reply.py +226 -0
- use_agent_os-2026.7.14.post1/src/agentos/session/tokenizer.py +43 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/__init__.py +49 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/__init__.py +3 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/advanced-dubbing-studio/SKILL.md +127 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/ai-video-script/SKILL.md +368 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/cron/SKILL.md +57 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/deep-research/SKILL.md +151 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/deep-research/THIRD_PARTY_NOTICES.md +13 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/deep-research/plan.json +77 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/deep-research/references/methodology.md +109 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/deep-research/references/sources.md +86 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/deep-research/scripts/compile.py +92 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/deep-research/scripts/iterate.py +135 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/deep-research/scripts/plan.py +103 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/docx/SKILL.md +200 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/docx/THIRD_PARTY_NOTICES.md +15 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/docx/references/python_docx.md +107 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/docx/scripts/create_docx.py +79 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/docx/scripts/edit_docx.py +91 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/docx/scripts/inspect_docx.py +73 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/git-diff/SKILL.md +46 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/git-diff/scripts/git_diff.py +88 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/github/SKILL.md +148 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/history-explorer/SKILL.md +46 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/history-explorer/scripts/explore.py +134 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/html-to-pdf/SKILL.md +157 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/html-to-pdf/THIRD_PARTY_NOTICES.md +17 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/html-to-pdf/references/weasyprint.md +121 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/html-to-pdf/scripts/render.py +71 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/http-fetch/SKILL.md +62 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/http-fetch/scripts/http_fetch.py +98 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/memory/SKILL.md +79 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/multi-search-engine/SKILL.md +122 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/multi-search-engine/THIRD_PARTY_NOTICES.md +21 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/multi-search-engine/references/engines.md +100 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/multi-search-engine/scripts/search.py +235 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/music-and-singing-studio/SKILL.md +152 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/nano-banana-pro/SKILL.md +103 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/nano-banana-pro/scripts/generate_image.py +449 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/nano-pdf/SKILL.md +43 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/pdf-toolkit/SKILL.md +211 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/pdf-toolkit/THIRD_PARTY_NOTICES.md +27 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/pdf-toolkit/references/pypdf.md +104 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/pdf-toolkit/references/reportlab.md +108 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/pdf-toolkit/scripts/extract.py +69 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/pdf-toolkit/scripts/form_fill.py +80 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/pdf-toolkit/scripts/merge.py +92 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/pdf-toolkit/scripts/split.py +79 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/pptx/SKILL.md +351 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/pptx/THIRD_PARTY_NOTICES.md +16 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/pptx/references/pptxgenjs.md +217 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/pptx/references/python_pptx.md +172 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/pptx/scripts/extract_text.py +169 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/pptx/scripts/render_thumbs.sh +123 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/seedance-2-prompt/SKILL.md +147 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/seedance-2-prompt/references/camera-and-styles.md +129 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/seedance-2-prompt/references/modes-and-recipes.md +121 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/seedance-2-prompt/references/recipes.md +273 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/seedance-2-prompt/scripts/generate_video.py +667 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/srt-from-script/SKILL.md +64 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/srt-from-script/scripts/build_srt.py +153 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/stack-trace-generic-probe/SKILL.md +29 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/stack-trace-go-probe/SKILL.md +29 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/stack-trace-js-probe/SKILL.md +30 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/stack-trace-python-probe/SKILL.md +29 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/stack-trace-rust-probe/SKILL.md +29 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/sub-agent/SKILL.md +327 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/subtitle-burner/SKILL.md +91 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/subtitle-burner/scripts/burn.py +248 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/summarize/SKILL.md +27 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/text-file-read/SKILL.md +52 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/text-file-read/scripts/read.py +61 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/title-card-image/SKILL.md +77 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/title-card-image/scripts/render.py +193 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/tmux/SKILL.md +160 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/tmux/scripts/find-sessions.sh +112 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/tmux/scripts/wait-for-text.sh +83 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/video-merger/SKILL.md +98 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/video-merger/install.ps1 +180 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/video-merger/install.sh +23 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/video-merger/scripts/merge.py +88 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/video-merger/src/__init__.py +16 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/video-merger/src/video_merger.py +324 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/video-still-animator/SKILL.md +115 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/video-still-animator/scripts/animate.py +136 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/voice-clone-lab/SKILL.md +107 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/voice-conversion-studio/SKILL.md +113 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/voiceover-studio/SKILL.md +168 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/weather/SKILL.md +136 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/weather/scripts/weather_fetch.py +137 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/xlsx/SKILL.md +184 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/xlsx/THIRD_PARTY_NOTICES.md +14 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/xlsx/references/openpyxl.md +132 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/xlsx/scripts/create_xlsx.py +87 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/xlsx/scripts/edit_xlsx.py +92 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/bundled/xlsx/scripts/inspect_xlsx.py +92 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/eligibility.py +230 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/exp/latex-compile/SKILL.md +46 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/exp/latex-compile/scripts/compile.py +329 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/filter.py +68 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/hub/__init__.py +5 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/hub/clawhub.py +168 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/hub/defaults.py +42 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/hub/deps.py +146 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/hub/github.py +268 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/hub/installer.py +222 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/hub/lockfile.py +92 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/hub/publisher.py +133 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/hub/router.py +76 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/hub/scanner.py +186 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/hub/source.py +70 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/hub/taps.py +121 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/injector.py +111 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/loader.py +586 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/paths.py +127 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/resources.py +133 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/retrieval/__init__.py +228 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/retrieval/embedder.py +35 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/retrieval/fusion.py +25 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/retrieval/lexical.py +137 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/retrieval/local_embedding.py +5 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/retrieval/semantic.py +108 -0
- use_agent_os-2026.7.14.post1/src/agentos/skills/types.py +95 -0
- use_agent_os-2026.7.14.post1/src/agentos/tool_boundary.py +40 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/__init__.py +22 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/boundary.py +7 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/__init__.py +41 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/admin.py +645 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/agents.py +197 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/artifacts.py +299 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/code_exec.py +455 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/file_authoring.py +530 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/filesystem.py +989 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/git.py +212 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/media.py +1999 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/memory_tools.py +841 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/messaging.py +179 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/nodes.py +87 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/patch.py +603 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/router_control.py +110 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/session_search.py +107 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/sessions.py +781 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/shell.py +1485 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/shell_policy.py +171 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/skill_tools.py +632 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/web.py +633 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/builtin/web_fetch.py +450 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/dispatch.py +661 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/envelope.py +253 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/path_aliases.py +80 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/path_policy.py +79 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/policy/__init__.py +63 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/policy/chain.py +68 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/policy/checks.py +301 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/policy/finalize.py +267 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/policy/types.py +93 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/policy_config.py +385 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/policy_helpers.py +187 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/policy_runtime.py +173 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/registry.py +385 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/rpc_payload.py +119 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/ssrf.py +120 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/types.py +238 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/visibility.py +290 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/write_policy.py +127 -0
- use_agent_os-2026.7.14.post1/src/agentos/tools/write_tracking.py +26 -0
- use_agent_os-2026.7.14.post1/src/agentos/ui.py +352 -0
- use_agent_os-2026.7.14.post1/start.ps1 +410 -0
- use_agent_os-2026.7.14.post1/start.sh +4 -0
- use_agent_os-2026.7.14.post1/tests/conftest.py +16 -0
- use_agent_os-2026.7.14.post1/tests/data/router_eval/cases.jsonl +121 -0
- use_agent_os-2026.7.14.post1/tests/data/router_eval/reports/baseline_v4_phase3.json +2574 -0
- use_agent_os-2026.7.14.post1/tests/data/router_eval/sessions.jsonl +16 -0
- use_agent_os-2026.7.14.post1/tests/fixtures/agent_chains/synthetic_cases/delegated_research.json +81 -0
- use_agent_os-2026.7.14.post1/tests/fixtures/agent_chains/synthetic_cases/local_diagnosis.json +70 -0
- use_agent_os-2026.7.14.post1/tests/fixtures/agent_chains/synthetic_cases/tool_recovery.json +67 -0
- use_agent_os-2026.7.14.post1/tests/functional/test_agent_context_boundary_e2e.py +168 -0
- use_agent_os-2026.7.14.post1/tests/functional/test_agent_synthetic_golden.py +176 -0
- use_agent_os-2026.7.14.post1/tests/functional/test_gateway_compaction_e2e.py +372 -0
- use_agent_os-2026.7.14.post1/tests/functional/test_gateway_llm_e2e.py +219 -0
- use_agent_os-2026.7.14.post1/tests/functional/test_live_agent_context_boundary_e2e.py +73 -0
- use_agent_os-2026.7.14.post1/tests/functional/test_live_channel_telegram_smoke.py +42 -0
- use_agent_os-2026.7.14.post1/tests/functional/test_live_openrouter_compaction.py +75 -0
- use_agent_os-2026.7.14.post1/tests/functional/test_llm_smoke.py +48 -0
- use_agent_os-2026.7.14.post1/tests/functional/test_webui_browser_chat_e2e.py +4248 -0
- use_agent_os-2026.7.14.post1/tests/functional/test_webui_browser_e2e.py +192 -0
- use_agent_os-2026.7.14.post1/tests/functional/test_webui_per_turn_bubble.py +44 -0
- use_agent_os-2026.7.14.post1/tests/golden/public_release_open.yaml +24 -0
- use_agent_os-2026.7.14.post1/tests/integration/cli/ansi_assertions.py +144 -0
- use_agent_os-2026.7.14.post1/tests/integration/cli/test_ansi_collision.py +514 -0
- use_agent_os-2026.7.14.post1/tests/test_agent_cmd_no_key.py +142 -0
- use_agent_os-2026.7.14.post1/tests/test_agentos_router/test_controller_derivation.py +137 -0
- use_agent_os-2026.7.14.post1/tests/test_agentos_router/test_llm_judge_strategy.py +1326 -0
- use_agent_os-2026.7.14.post1/tests/test_application/test_approval_rpc.py +122 -0
- use_agent_os-2026.7.14.post1/tests/test_application/test_wizard.py +96 -0
- use_agent_os-2026.7.14.post1/tests/test_artifacts.py +651 -0
- use_agent_os-2026.7.14.post1/tests/test_bundled_voice_skills.py +115 -0
- use_agent_os-2026.7.14.post1/tests/test_channels/test_base_imports.py +32 -0
- use_agent_os-2026.7.14.post1/tests/test_channels/test_channel_attachment_metadata.py +307 -0
- use_agent_os-2026.7.14.post1/tests/test_channels/test_channel_capabilities.py +690 -0
- use_agent_os-2026.7.14.post1/tests/test_channels/test_channel_command_registry.py +79 -0
- use_agent_os-2026.7.14.post1/tests/test_channels/test_channel_dedupe.py +78 -0
- use_agent_os-2026.7.14.post1/tests/test_channels/test_channel_manager_lifecycle.py +51 -0
- use_agent_os-2026.7.14.post1/tests/test_channels/test_channel_native_file_uploads.py +184 -0
- use_agent_os-2026.7.14.post1/tests/test_channels/test_channel_pairing_store.py +150 -0
- use_agent_os-2026.7.14.post1/tests/test_channels/test_discord_routing.py +300 -0
- use_agent_os-2026.7.14.post1/tests/test_channels/test_session_key_contract.py +29 -0
- use_agent_os-2026.7.14.post1/tests/test_channels/test_slack_socket_mode.py +327 -0
- use_agent_os-2026.7.14.post1/tests/test_channels/test_telegram_access_approvals.py +194 -0
- use_agent_os-2026.7.14.post1/tests/test_ci/test_architecture_import_contracts.py +302 -0
- use_agent_os-2026.7.14.post1/tests/test_ci/test_decision_log_aggregate.py +47 -0
- use_agent_os-2026.7.14.post1/tests/test_ci/test_migrations_packaged.py +132 -0
- use_agent_os-2026.7.14.post1/tests/test_ci/test_mypy_partition_gate.py +38 -0
- use_agent_os-2026.7.14.post1/tests/test_ci/test_workflows.py +332 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_agent_cmd.py +1113 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_agents_cmd.py +86 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_channels_cmd.py +358 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_chat_cmd.py +2131 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_chat_cmd_approval.py +90 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_chat_file_command.py +259 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_chat_path_command.py +119 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_cli_product_completeness.py +997 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_cron_cmd.py +921 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_diagnostics_cmd.py +73 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_doctor_cmd.py +1138 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_gateway_client_keepalive.py +230 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_gateway_cmd.py +695 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_gateway_rpc.py +36 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_help_theme.py +168 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_init_cmd.py +48 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_memory_dream_cmd.py +35 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_memory_flush_cmd.py +65 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_migrate_cmd.py +442 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_onboard_cmd.py +2254 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_output_helpers.py +29 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_providers_cmd.py +79 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_repl_waiting_indicator.py +326 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_sandbox_cmd.py +78 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_search_cmd.py +59 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_session_state_label.py +69 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_session_totals_render.py +63 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_slash_completer.py +99 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_tool_call_strip.py +175 -0
- use_agent_os-2026.7.14.post1/tests/test_cli/test_url_utils.py +14 -0
- use_agent_os-2026.7.14.post1/tests/test_compat/test_aiosqlite.py +33 -0
- use_agent_os-2026.7.14.post1/tests/test_compose_yaml_shape.py +120 -0
- use_agent_os-2026.7.14.post1/tests/test_context_budget_governor.py +69 -0
- use_agent_os-2026.7.14.post1/tests/test_contracts/test_attachment_policy.py +46 -0
- use_agent_os-2026.7.14.post1/tests/test_core_lightweight_contracts.py +229 -0
- use_agent_os-2026.7.14.post1/tests/test_dist/test_workspace_state.py +28 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_agent_invalid_provider_response.py +807 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_agent_llm_budget.py +1536 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_agent_max_iterations.py +546 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_agent_retry_budget.py +364 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_agent_terminal_outcomes.py +92 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_agent_usage_tracker_billed_propagation.py +184 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_attachment_messages.py +363 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_bootstrap_snapshot_invalidation.py +356 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_cache_break_monitor.py +249 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_compaction_control.py +80 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_complex_agent_chain.py +152 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_concurrent_run_serialized.py +112 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_context_budget_coordinator.py +65 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_done_event_session_totals.py +116 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_execution_status_carrier_chain.py +159 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_hook_surface_equivalence.py +422 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_inject_subagent_grounding.py +86 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_interactive_approval_retry.py +250 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_owner_cron_tool_policy.py +44 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_preflight_compaction.py +1425 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_pricing.py +274 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_progress_watchdog.py +53 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_prompt_cache_stability.py +516 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_prompt_design_stage1.py +107 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_render_volatile_block.py +108 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_router_control.py +374 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_router_decision_event.py +274 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_router_llm_judge_guards.py +699 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_routing_history_store.py +42 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_runtime_agent_iteration_timeout.py +207 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_runtime_agent_max_iterations.py +142 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_runtime_agent_max_provider_retries.py +113 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_runtime_agent_request_timeout.py +122 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_runtime_agent_tool_timeout.py +113 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_runtime_artifacts.py +1260 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_runtime_cost_source.py +201 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_runtime_error_persistence.py +112 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_runtime_router_fallback.py +266 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_runtime_tool_run_budget.py +43 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_savings_score.py +152 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_session_lock_no_reentry.py +187 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_session_sanitize.py +2240 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_slash_command_registry.py +97 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_spawn_depth_unified.py +19 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_stream_wrappers.py +66 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_t3_upgrade_compaction.py +704 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_tokenjuice_tool_result_projection.py +481 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_tool_activity_heartbeat.py +151 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_tool_concurrency.py +598 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_tool_result_json_guard.py +41 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_tool_result_persistence.py +114 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_turn_outcome.py +26 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_turn_policy.py +61 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/test_usage_tracker.py +390 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/__init__.py +0 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_agent_bootstrap_stage_snapshot.py +671 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_agent_bootstrap_stage_unit.py +500 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_attachment_stage_snapshot.py +459 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_attachment_stage_unit.py +164 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_compaction_and_history_stage_snapshot.py +484 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_compaction_and_history_stage_unit.py +433 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_harness_agent_factory_adapter.py +43 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_input_normalization_metadata.py +342 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_input_stage_snapshot.py +241 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_input_stage_unit.py +441 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_outcome.py +66 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_prompt_assembler_stage_snapshot.py +499 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_prompt_assembler_stage_unit.py +530 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_provider_and_tools_stage_snapshot.py +394 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_provider_and_tools_stage_unit.py +296 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_router_control_replay_event.py +134 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_session_totals_adapter.py +73 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_stage_test_boundaries.py +38 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_stream_consumer_compaction_seam.py +368 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_stream_consumer_stage_snapshot.py +567 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_stream_consumer_stage_unit.py +896 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_turn_finalizer_stage_snapshot.py +586 -0
- use_agent_os-2026.7.14.post1/tests/test_engine/turn_runner/test_turn_finalizer_stage_unit.py +575 -0
- use_agent_os-2026.7.14.post1/tests/test_execution_status_contract.py +95 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_agent_registry.py +51 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_agent_subagent_defaults_serde.py +70 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_agents_view_static.py +198 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_approval_queue_persistence.py +178 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_approvals_view_static.py +72 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_artifacts_download.py +121 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_attachment_download.py +121 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_attachment_ingest.py +63 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_audio_transcription_route.py +91 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_auth_debug_scope.py +53 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_background_completion.py +591 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_boot_dream_cron.py +160 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_boot_provider_env.py +139 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_channel_concurrent_dispatch.py +937 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_channel_cron_intent.py +107 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_channel_dispatch_ghost_turn.py +278 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_channel_dispatch_realtime.py +2040 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_channels_view_static.py +110 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_chat_static_assets.py +539 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_chat_view_static.py +3333 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_config_audio.py +64 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_config_concurrency.py +118 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_config_memory_defaults.py +59 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_config_migration_router.py +169 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_config_view_static.py +236 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_config_ws_writer_queue.py +135 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_context_overflow.py +1276 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_cron_view_static.py +240 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_debug_file_logging.py +78 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_fair_queuing.py +415 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_force_reset_drain.py +159 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_graceful_shutdown_drain.py +143 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_health_view_static.py +352 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_input_normalization.py +184 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_logs_view_static.py +201 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_metrics_counters.py +225 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_no_head_blocking.py +130 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_no_split_brain_lock.py +133 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_pidfile_lock.py +25 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rate_limit_approvals.py +32 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_readiness.py +29 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_router_boot.py +1487 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_routing_interaction_mode.py +170 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_agents.py +292 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_approvals.py +94 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_channels.py +255 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_chat_history.py +497 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_commands.py +79 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_config_memory_embedding.py +515 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_cron_current_session.py +906 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_cron_strict_schedule.py +279 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_diagnostics.py +148 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_doctor.py +1032 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_logs.py +222 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_onboarding.py +1302 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_onboarding_audio_sync.py +132 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_product_cli_gaps.py +1328 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_router_hold.py +153 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_session_services.py +56 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_sessions.py +3308 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_sessions_attachments.py +211 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_skills_install_visibility.py +103 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_tools_visibility.py +235 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_usage.py +577 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_rpc_wizard.py +172 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_session_streams.py +84 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_sessions_view_static.py +72 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_shutdown_order.py +55 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_skills_view_static.py +114 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_spawn_group_pagination.py +85 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_spawn_group_tracker.py +40 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_static_cache_header.py +96 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_static_onboarding_views.py +1300 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_status_helper_static.py +197 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_status_version_provider.py +77 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_subagent_announce_group_wake.py +552 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_task_runtime_hard_deadline.py +360 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_task_runtime_overflow_policy.py +316 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_task_runtime_reserved_slots.py +240 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_task_runtime_terminal_cleanup.py +297 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_task_runtime_terminal_message.py +481 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_task_session_lifecycle.py +384 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_terminal_reply.py +153 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_token_widget_static.py +33 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_transcript_attachment_persistence.py +304 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_uploads_endpoint.py +585 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_usage_breakdown_reconcile.py +293 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_usage_view_static.py +306 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_websocket_handshake.py +32 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_webui_typography_static.py +247 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway/test_ws_writer_queue.py +546 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway_config_legacy.py +338 -0
- use_agent_os-2026.7.14.post1/tests/test_gateway_static_skills_view.py +28 -0
- use_agent_os-2026.7.14.post1/tests/test_health/test_evaluator.py +1068 -0
- use_agent_os-2026.7.14.post1/tests/test_health/test_model.py +177 -0
- use_agent_os-2026.7.14.post1/tests/test_health/test_recovery_commands.py +523 -0
- use_agent_os-2026.7.14.post1/tests/test_identity/test_agent_workspace_bootstrap.py +35 -0
- use_agent_os-2026.7.14.post1/tests/test_identity/test_user_profile_prompt.py +193 -0
- use_agent_os-2026.7.14.post1/tests/test_identity/test_workspace_injection_scan.py +58 -0
- use_agent_os-2026.7.14.post1/tests/test_install_scripts.py +133 -0
- use_agent_os-2026.7.14.post1/tests/test_live_provider_profile_gateway_e2e.py +232 -0
- use_agent_os-2026.7.14.post1/tests/test_live_provider_profile_smoke.py +56 -0
- use_agent_os-2026.7.14.post1/tests/test_mcp/test_discovery_lifecycle.py +98 -0
- use_agent_os-2026.7.14.post1/tests/test_mcp/test_stdio_client.py +64 -0
- use_agent_os-2026.7.14.post1/tests/test_mcp_server/test_bridge.py +263 -0
- use_agent_os-2026.7.14.post1/tests/test_mcp_server/test_cli.py +21 -0
- use_agent_os-2026.7.14.post1/tests/test_mcp_server/test_fastmcp_app.py +105 -0
- use_agent_os-2026.7.14.post1/tests/test_mcp_server/test_gateway_client.py +64 -0
- use_agent_os-2026.7.14.post1/tests/test_mcp_server/test_protocol_smoke.py +404 -0
- use_agent_os-2026.7.14.post1/tests/test_memory_archive.py +95 -0
- use_agent_os-2026.7.14.post1/tests/test_memory_checkpoint.py +209 -0
- use_agent_os-2026.7.14.post1/tests/test_memory_dream_apply.py +102 -0
- use_agent_os-2026.7.14.post1/tests/test_memory_dream_evidence.py +130 -0
- use_agent_os-2026.7.14.post1/tests/test_memory_dream_factory.py +70 -0
- use_agent_os-2026.7.14.post1/tests/test_memory_dream_paths.py +104 -0
- use_agent_os-2026.7.14.post1/tests/test_memory_dream_ranking.py +103 -0
- use_agent_os-2026.7.14.post1/tests/test_memory_dream_runner.py +246 -0
- use_agent_os-2026.7.14.post1/tests/test_memory_embedding.py +135 -0
- use_agent_os-2026.7.14.post1/tests/test_memory_flush.py +1148 -0
- use_agent_os-2026.7.14.post1/tests/test_memory_flush_status.py +75 -0
- use_agent_os-2026.7.14.post1/tests/test_memory_manager_embedding_config.py +781 -0
- use_agent_os-2026.7.14.post1/tests/test_memory_repair_service.py +920 -0
- use_agent_os-2026.7.14.post1/tests/test_memory_search_defaults.py +468 -0
- use_agent_os-2026.7.14.post1/tests/test_memory_sessions_source.py +267 -0
- use_agent_os-2026.7.14.post1/tests/test_memory_store_keyword_fallback.py +389 -0
- use_agent_os-2026.7.14.post1/tests/test_memory_sync_manager_architecture.py +96 -0
- use_agent_os-2026.7.14.post1/tests/test_memory_turn_capture_state.py +101 -0
- use_agent_os-2026.7.14.post1/tests/test_memory_vector_normalization.py +193 -0
- use_agent_os-2026.7.14.post1/tests/test_migration/test_hermes_e2e.py +91 -0
- use_agent_os-2026.7.14.post1/tests/test_migration/test_hermes_migration.py +246 -0
- use_agent_os-2026.7.14.post1/tests/test_migration/test_hermes_migration_fixes.py +1078 -0
- use_agent_os-2026.7.14.post1/tests/test_migration/test_openclaw_bootstrap_template_repro.py +538 -0
- use_agent_os-2026.7.14.post1/tests/test_migration/test_openclaw_e2e.py +404 -0
- use_agent_os-2026.7.14.post1/tests/test_migration/test_openclaw_migration.py +916 -0
- use_agent_os-2026.7.14.post1/tests/test_migration/test_openclaw_multi_workspace_repro.py +129 -0
- use_agent_os-2026.7.14.post1/tests/test_migration/test_orchestrator.py +55 -0
- use_agent_os-2026.7.14.post1/tests/test_migrations/__init__.py +0 -0
- use_agent_os-2026.7.14.post1/tests/test_model_router_behavior.py +970 -0
- use_agent_os-2026.7.14.post1/tests/test_model_router_defaults.py +462 -0
- use_agent_os-2026.7.14.post1/tests/test_observability/test_decision_log_contract.py +130 -0
- use_agent_os-2026.7.14.post1/tests/test_observability/test_decision_log_cost_source.py +82 -0
- use_agent_os-2026.7.14.post1/tests/test_observability/test_decision_log_skills_invoked.py +116 -0
- use_agent_os-2026.7.14.post1/tests/test_observability/test_prompt_report.py +23 -0
- use_agent_os-2026.7.14.post1/tests/test_observability/test_trace_contract.py +160 -0
- use_agent_os-2026.7.14.post1/tests/test_observability/test_turn_call_log_contract.py +326 -0
- use_agent_os-2026.7.14.post1/tests/test_onboarding/__init__.py +0 -0
- use_agent_os-2026.7.14.post1/tests/test_onboarding/test_channel_specs.py +207 -0
- use_agent_os-2026.7.14.post1/tests/test_onboarding/test_config_store.py +298 -0
- use_agent_os-2026.7.14.post1/tests/test_onboarding/test_flow.py +2138 -0
- use_agent_os-2026.7.14.post1/tests/test_onboarding/test_flow_cancel.py +249 -0
- use_agent_os-2026.7.14.post1/tests/test_onboarding/test_if_needed_gate.py +133 -0
- use_agent_os-2026.7.14.post1/tests/test_onboarding/test_image_generation_specs.py +19 -0
- use_agent_os-2026.7.14.post1/tests/test_onboarding/test_memory_embedding_specs.py +48 -0
- use_agent_os-2026.7.14.post1/tests/test_onboarding/test_mutations.py +1100 -0
- use_agent_os-2026.7.14.post1/tests/test_onboarding/test_next_steps.py +205 -0
- use_agent_os-2026.7.14.post1/tests/test_onboarding/test_provider_specs.py +182 -0
- use_agent_os-2026.7.14.post1/tests/test_onboarding/test_redaction.py +49 -0
- use_agent_os-2026.7.14.post1/tests/test_onboarding/test_router_specs.py +60 -0
- use_agent_os-2026.7.14.post1/tests/test_onboarding/test_search_specs.py +60 -0
- use_agent_os-2026.7.14.post1/tests/test_onboarding/test_section_status.py +312 -0
- use_agent_os-2026.7.14.post1/tests/test_onboarding/test_setup_engine.py +201 -0
- use_agent_os-2026.7.14.post1/tests/test_onboarding/test_status.py +251 -0
- use_agent_os-2026.7.14.post1/tests/test_openrouter_prompt_cache_smoke.py +53 -0
- use_agent_os-2026.7.14.post1/tests/test_packaging/test_pyproject_invariants.py +118 -0
- use_agent_os-2026.7.14.post1/tests/test_paths_media_root.py +44 -0
- use_agent_os-2026.7.14.post1/tests/test_persistence/test_migrator.py +77 -0
- use_agent_os-2026.7.14.post1/tests/test_provider/test_audio_provider.py +223 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_anthropic_usage.py +387 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_attachments.py +270 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_audio_media.py +540 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_bankr.py +236 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_capability_profiles.py +312 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_execution_status_projection.py +67 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_failure_classification.py +292 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_failures.py +15 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_final_request_proof.py +499 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_image_generation.py +674 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_mainstream_profiles.py +228 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_metadata.py +55 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_model_catalog.py +118 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_openai_compat_payloads.py +1399 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_openai_prompt_cache.py +204 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_openai_responses.py +312 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_openai_usage.py +199 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_openrouter_attribution.py +30 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_request_proof.py +846 -0
- use_agent_os-2026.7.14.post1/tests/test_provider_tool_choice.py +236 -0
- use_agent_os-2026.7.14.post1/tests/test_public_release_golden_static.py +48 -0
- use_agent_os-2026.7.14.post1/tests/test_public_release_hygiene.py +233 -0
- use_agent_os-2026.7.14.post1/tests/test_public_tool_surface.py +96 -0
- use_agent_os-2026.7.14.post1/tests/test_readme_links.py +70 -0
- use_agent_os-2026.7.14.post1/tests/test_release_consistency.py +140 -0
- use_agent_os-2026.7.14.post1/tests/test_root_start_scripts.py +42 -0
- use_agent_os-2026.7.14.post1/tests/test_sandbox/test_escalate_backend_denial.py +143 -0
- use_agent_os-2026.7.14.post1/tests/test_sandbox/test_policy_network.py +41 -0
- use_agent_os-2026.7.14.post1/tests/test_sandbox/test_sandbox_runtime_lifecycle.py +31 -0
- use_agent_os-2026.7.14.post1/tests/test_sandbox/test_seatbelt_backend.py +464 -0
- use_agent_os-2026.7.14.post1/tests/test_sandbox/test_sensitive_paths.py +105 -0
- use_agent_os-2026.7.14.post1/tests/test_sandbox/test_windows_auto_backend.py +122 -0
- use_agent_os-2026.7.14.post1/tests/test_scheduler/test_channel_cron_access.py +494 -0
- use_agent_os-2026.7.14.post1/tests/test_scheduler/test_current_target_fallback.py +103 -0
- use_agent_os-2026.7.14.post1/tests/test_scheduler/test_dream_handler.py +143 -0
- use_agent_os-2026.7.14.post1/tests/test_scheduler/test_every_anchor.py +153 -0
- use_agent_os-2026.7.14.post1/tests/test_scheduler/test_exact_and_retry_classification.py +252 -0
- use_agent_os-2026.7.14.post1/tests/test_scheduler/test_failure_destination.py +590 -0
- use_agent_os-2026.7.14.post1/tests/test_scheduler/test_ops_strict_schedule.py +159 -0
- use_agent_os-2026.7.14.post1/tests/test_scheduler/test_parser.py +79 -0
- use_agent_os-2026.7.14.post1/tests/test_scheduler/test_parser_tz.py +198 -0
- use_agent_os-2026.7.14.post1/tests/test_scheduler/test_persistence.py +111 -0
- use_agent_os-2026.7.14.post1/tests/test_scheduler/test_rpc_webhook_delivery.py +301 -0
- use_agent_os-2026.7.14.post1/tests/test_scheduler/test_schedule_compute_notify.py +72 -0
- use_agent_os-2026.7.14.post1/tests/test_scheduler/test_schedule_normalizer.py +99 -0
- use_agent_os-2026.7.14.post1/tests/test_scheduler/test_scheduler_routing_boundary.py +15 -0
- use_agent_os-2026.7.14.post1/tests/test_scheduler/test_startup_catchup_every.py +101 -0
- use_agent_os-2026.7.14.post1/tests/test_scheduler/test_system_event_pinned_delivery.py +399 -0
- use_agent_os-2026.7.14.post1/tests/test_scheduler/test_tz_user_surfaces.py +229 -0
- use_agent_os-2026.7.14.post1/tests/test_scheduler/test_webhook_delivery.py +273 -0
- use_agent_os-2026.7.14.post1/tests/test_scripts/test_build_wheelhouse_zip.py +852 -0
- use_agent_os-2026.7.14.post1/tests/test_scripts/test_router_eval.py +314 -0
- use_agent_os-2026.7.14.post1/tests/test_search/test_brave_config.py +33 -0
- use_agent_os-2026.7.14.post1/tests/test_search/test_search_runtime_lifecycle.py +31 -0
- use_agent_os-2026.7.14.post1/tests/test_secrets.py +19 -0
- use_agent_os-2026.7.14.post1/tests/test_security/test_ssrf_fake_ip.py +88 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_agent_task_storage.py +140 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_cascade_pagination.py +75 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_compaction.py +369 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_compaction_dispatcher.py +253 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_compaction_lifecycle.py +269 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_compaction_state.py +222 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_context_view.py +123 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_cost_rollup.py +71 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_cost_source_migration.py +65 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_epoch_migration.py +415 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_epoch_no_rollback.py +246 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_epoch_production_path.py +222 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_finish_evicts_runtime_state.py +49 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_get_agent_config_uses_registry.py +48 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_kill_cascade.py +147 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_manager.py +1354 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_media_atomic_write.py +132 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_memory_durable_receipts.py +420 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_openai_responses_context_state.py +128 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_spawn_lock_eviction.py +67 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_storage_count_batch.py +99 -0
- use_agent_os-2026.7.14.post1/tests/test_session/test_turn_usage_storage.py +83 -0
- use_agent_os-2026.7.14.post1/tests/test_skill_docx.py +125 -0
- use_agent_os-2026.7.14.post1/tests/test_skill_html_to_pdf.py +73 -0
- use_agent_os-2026.7.14.post1/tests/test_skill_multi_search_engine.py +162 -0
- use_agent_os-2026.7.14.post1/tests/test_skill_pdf_toolkit.py +109 -0
- use_agent_os-2026.7.14.post1/tests/test_skill_pptx_delivery.py +25 -0
- use_agent_os-2026.7.14.post1/tests/test_skill_xlsx.py +131 -0
- use_agent_os-2026.7.14.post1/tests/test_skills/conftest.py +17 -0
- use_agent_os-2026.7.14.post1/tests/test_skills/test_history_explorer.py +159 -0
- use_agent_os-2026.7.14.post1/tests/test_skills/test_latex_compile.py +240 -0
- use_agent_os-2026.7.14.post1/tests/test_skills/test_multi_search_engine_concurrency.py +49 -0
- use_agent_os-2026.7.14.post1/tests/test_skills/test_openrouter_skill_key_resolution.py +236 -0
- use_agent_os-2026.7.14.post1/tests/test_skills/test_weather_skill_entrypoint.py +99 -0
- use_agent_os-2026.7.14.post1/tests/test_skills_community_copy_contract.py +23 -0
- use_agent_os-2026.7.14.post1/tests/test_skills_default_prompt_contract.py +303 -0
- use_agent_os-2026.7.14.post1/tests/test_skills_hub_github.py +125 -0
- use_agent_os-2026.7.14.post1/tests/test_skills_hub_installer_security.py +224 -0
- use_agent_os-2026.7.14.post1/tests/test_skills_loader_namespaces.py +163 -0
- use_agent_os-2026.7.14.post1/tests/test_skills_memory_contract.py +39 -0
- use_agent_os-2026.7.14.post1/tests/test_skills_paths.py +12 -0
- use_agent_os-2026.7.14.post1/tests/test_skills_provenance_contract.py +86 -0
- use_agent_os-2026.7.14.post1/tests/test_skills_third_party_notices.py +132 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/__snapshots__/test_dispatch_corpus_snapshots.ambr +480 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/dispatch_corpus/__init__.py +1121 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_admin_cron_strict.py +290 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_agents_list_returns_registry_entries.py +46 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_apply_patch_gates.py +497 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_bootstrap_write_notifications.py +82 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_code_exec_python_resolution.py +71 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_dispatch_corpus_snapshots.py +182 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_dispatch_envelope.py +1399 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_dispatch_equivalence.py +211 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_dispatch_legacy_coverage.py +265 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_dispatch_logs.py +101 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_dispatch_preflight.py +272 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_dispatch_properties.py +453 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_dispatch_surface_hardening.py +287 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_execution_status_dispatch.py +193 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_file_authoring_tools.py +230 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_filesystem_read_workspace.py +395 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_git_workdir_policy.py +52 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_init_resilience.py +55 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_media_image.py +104 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_memory_profile_guidance.py +26 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_node_runtime_stubs.py +18 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_path_aliases.py +14 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_path_policy.py +57 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_policy_agents.py +227 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_policy_config_boundary.py +257 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_policy_runtime_boundary.py +182 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_registry_visibility.py +594 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_registry_visibility_boundary.py +196 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_router_control_tool.py +125 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_sandbox_network_hint.py +38 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_sessions_send_errors.py +59 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_sessions_spawn_regressions.py +284 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_sessions_spawn_subagent_gates.py +358 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_shell_approval_policy.py +531 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_shell_background_seatbelt.py +108 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_shell_policy_windows.py +99 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_shell_process_isolation.py +265 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_shell_sensitive.py +143 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_skill_view_resources.py +241 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_subagents_ownership.py +89 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_tool_failure_envelope.py +128 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_web_fetch.py +61 -0
- use_agent_os-2026.7.14.post1/tests/test_tools/test_web_http_request.py +326 -0
- use_agent_os-2026.7.14.post1/tests/unit/chat/test_conversation.py +66 -0
- use_agent_os-2026.7.14.post1/tests/unit/chat/test_history.py +33 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_approval_flow.py +199 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_approval_inline.py +442 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_boundary_keybindings.py +443 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_completer_wiring_preserved.py +143 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_concurrent_turn.py +1266 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_gateway_runtime.py +309 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_history_lock.py +83 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_input_assets.py +135 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_input_bridge.py +151 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_interactive_session_handle_contract.py +90 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_interactive_session_lifecycle.py +181 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_launch_bridge.py +235 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_output_lock.py +339 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_production_stream_paths_use_chat_app.py +427 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_runtime_bridge.py +330 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_signal_handlers.py +338 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_slash_adapter.py +204 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_slash_bridge.py +60 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_slash_policy.py +224 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_standalone_runtime.py +243 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_standalone_slash_adapter.py +326 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_terminal_bridge.py +68 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_terminal_chat_adapter.py +228 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_terminal_renderer.py +109 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_terminal_surface.py +120 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_turn_stream_adapter.py +302 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/repl/test_turn_stream_boundaries.py +346 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/test_startup_screen.py +64 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/tui/test_contracts.py +1078 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/tui/test_output_binding.py +64 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/tui/test_runtime.py +359 -0
- use_agent_os-2026.7.14.post1/tests/unit/cli/tui/test_state.py +41 -0
- use_agent_os-2026.7.14.post1/uv.lock +3562 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Build-context exclusions — keep the image small and reproducible.
|
|
2
|
+
# Anything listed here never enters the build context sent to the daemon.
|
|
3
|
+
|
|
4
|
+
# --- VCS + editor + hidden local state -------------------------------------
|
|
5
|
+
.*
|
|
6
|
+
.vscode
|
|
7
|
+
.idea
|
|
8
|
+
.DS_Store
|
|
9
|
+
|
|
10
|
+
# --- Python runtime state ---------------------------------------------------
|
|
11
|
+
__pycache__
|
|
12
|
+
*.pyc
|
|
13
|
+
*.pyo
|
|
14
|
+
*.pyd
|
|
15
|
+
.pytest_cache
|
|
16
|
+
.ruff_cache
|
|
17
|
+
.mypy_cache
|
|
18
|
+
.coverage
|
|
19
|
+
.coverage.*
|
|
20
|
+
htmlcov
|
|
21
|
+
.tox
|
|
22
|
+
.nox
|
|
23
|
+
|
|
24
|
+
# --- Virtualenvs ------------------------------------------------------------
|
|
25
|
+
.venv
|
|
26
|
+
venv
|
|
27
|
+
env
|
|
28
|
+
|
|
29
|
+
# --- Local data / logs / caches --------------------------------------------
|
|
30
|
+
data
|
|
31
|
+
logs
|
|
32
|
+
*.log
|
|
33
|
+
*.db
|
|
34
|
+
*.db-journal
|
|
35
|
+
*.db-wal
|
|
36
|
+
*.db-shm
|
|
37
|
+
|
|
38
|
+
# --- Docs + tests NOT needed inside the runtime image -----------------------
|
|
39
|
+
tests
|
|
40
|
+
docs
|
|
41
|
+
scripts
|
|
42
|
+
CHANGELOG.md
|
|
43
|
+
KNOWN_LIMITATIONS.md
|
|
44
|
+
|
|
45
|
+
# --- Install scripts (shipped at repo root for host-side install) ----------
|
|
46
|
+
install.sh
|
|
47
|
+
install.ps1
|
|
48
|
+
|
|
49
|
+
# --- Secrets + local config (never shipped) --------------------------------
|
|
50
|
+
.env
|
|
51
|
+
.env.*
|
|
52
|
+
*.pem
|
|
53
|
+
*.key
|
|
54
|
+
|
|
55
|
+
# --- Build artefacts --------------------------------------------------------
|
|
56
|
+
dist
|
|
57
|
+
build
|
|
58
|
+
*.egg-info
|
|
59
|
+
|
|
60
|
+
# --- CI / local tooling -----------------------------------------------------
|
|
61
|
+
uv.lock
|
|
62
|
+
.pre-commit-config.yaml
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# AgentOS API Keys
|
|
2
|
+
# Copy this file to .env and fill in your keys:
|
|
3
|
+
# cp .env.example .env
|
|
4
|
+
|
|
5
|
+
# Required — LLM provider (OpenRouter)
|
|
6
|
+
OPENROUTER_API_KEY=
|
|
7
|
+
|
|
8
|
+
# Optional — Brave Search API (auto-selected over DuckDuckGo when set)
|
|
9
|
+
# Get a key at https://brave.com/search/api/
|
|
10
|
+
BRAVE_SEARCH_API_KEY=
|
|
11
|
+
|
|
12
|
+
# Optional — Web search network proxy.
|
|
13
|
+
# Use this when Brave/DuckDuckGo endpoints are not reachable directly.
|
|
14
|
+
# This affects web_search only; LLM provider proxy is configured separately.
|
|
15
|
+
AGENTOS_GATEWAY_SEARCH_PROXY=
|
|
16
|
+
|
|
17
|
+
# Optional — allow web_search providers to use HTTP_PROXY/HTTPS_PROXY when no
|
|
18
|
+
# explicit search proxy is set. Defaults to false for predictable behavior.
|
|
19
|
+
AGENTOS_GATEWAY_SEARCH_USE_ENV_PROXY=false
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
*.sh text eol=lf
|
|
2
|
+
|
|
3
|
+
# Bundled BGE ONNX export for memory local embedding (relocated from the
|
|
4
|
+
# removed agentos_router v4 bundle).
|
|
5
|
+
src/agentos/memory/models/bge_onnx/*.onnx filter=lfs diff=lfs merge=lfs -text
|
|
6
|
+
src/agentos/memory/models/bge_onnx/*.json text eol=lf
|
|
7
|
+
src/agentos/memory/models/bge_onnx/*.txt text eol=lf
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
name: Bug report
|
|
2
|
+
description: Report a reproducible AgentOS defect
|
|
3
|
+
title: "[Bug]: "
|
|
4
|
+
labels: ["bug"]
|
|
5
|
+
body:
|
|
6
|
+
- type: markdown
|
|
7
|
+
attributes:
|
|
8
|
+
value: |
|
|
9
|
+
Do not include credentials, provider tokens, account identifiers, local paths, or vulnerability details. Use SECURITY.md for suspected vulnerabilities.
|
|
10
|
+
- type: input
|
|
11
|
+
id: version
|
|
12
|
+
attributes:
|
|
13
|
+
label: AgentOS version or commit
|
|
14
|
+
description: Use the release version or commit hash where the issue occurs.
|
|
15
|
+
placeholder: "0.0.1 or commit hash"
|
|
16
|
+
validations:
|
|
17
|
+
required: true
|
|
18
|
+
- type: dropdown
|
|
19
|
+
id: area
|
|
20
|
+
attributes:
|
|
21
|
+
label: Area
|
|
22
|
+
options:
|
|
23
|
+
- CLI
|
|
24
|
+
- Gateway
|
|
25
|
+
- Web UI
|
|
26
|
+
- Provider integration
|
|
27
|
+
- Channel integration
|
|
28
|
+
- Memory
|
|
29
|
+
- Scheduler
|
|
30
|
+
- Tools
|
|
31
|
+
- Packaging or install
|
|
32
|
+
- Other
|
|
33
|
+
validations:
|
|
34
|
+
required: true
|
|
35
|
+
- type: textarea
|
|
36
|
+
id: steps
|
|
37
|
+
attributes:
|
|
38
|
+
label: Reproduction steps
|
|
39
|
+
description: Provide the smallest public reproduction you can share.
|
|
40
|
+
placeholder: |
|
|
41
|
+
1. Run ...
|
|
42
|
+
2. Configure ...
|
|
43
|
+
3. Observe ...
|
|
44
|
+
validations:
|
|
45
|
+
required: true
|
|
46
|
+
- type: textarea
|
|
47
|
+
id: expected
|
|
48
|
+
attributes:
|
|
49
|
+
label: Expected behavior
|
|
50
|
+
validations:
|
|
51
|
+
required: true
|
|
52
|
+
- type: textarea
|
|
53
|
+
id: actual
|
|
54
|
+
attributes:
|
|
55
|
+
label: Actual behavior
|
|
56
|
+
description: Paste minimal sanitized output if it helps.
|
|
57
|
+
validations:
|
|
58
|
+
required: true
|
|
59
|
+
- type: input
|
|
60
|
+
id: environment
|
|
61
|
+
attributes:
|
|
62
|
+
label: Environment
|
|
63
|
+
placeholder: "Windows 11, Python 3.12+, uv version"
|
|
64
|
+
validations:
|
|
65
|
+
required: true
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
blank_issues_enabled: false
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
name: Documentation issue
|
|
2
|
+
description: Report missing, confusing, or outdated AgentOS documentation
|
|
3
|
+
title: "[Docs]: "
|
|
4
|
+
labels: ["documentation"]
|
|
5
|
+
body:
|
|
6
|
+
- type: markdown
|
|
7
|
+
attributes:
|
|
8
|
+
value: |
|
|
9
|
+
Thanks for improving AgentOS's docs. Do not include credentials, provider tokens, private transcripts, account identifiers, or sensitive local paths.
|
|
10
|
+
- type: input
|
|
11
|
+
id: page
|
|
12
|
+
attributes:
|
|
13
|
+
label: Page or section
|
|
14
|
+
description: Link the page, heading, or command example that needs work.
|
|
15
|
+
placeholder: "docs/quickstart.md, docs/features/memory.md, or a GitHub URL"
|
|
16
|
+
validations:
|
|
17
|
+
required: true
|
|
18
|
+
- type: dropdown
|
|
19
|
+
id: issue_type
|
|
20
|
+
attributes:
|
|
21
|
+
label: Issue type
|
|
22
|
+
options:
|
|
23
|
+
- Incorrect command or option
|
|
24
|
+
- Missing setup step
|
|
25
|
+
- Confusing explanation
|
|
26
|
+
- Missing feature guide
|
|
27
|
+
- Broken link
|
|
28
|
+
- Screenshot or UI mismatch
|
|
29
|
+
- Other
|
|
30
|
+
validations:
|
|
31
|
+
required: true
|
|
32
|
+
- type: textarea
|
|
33
|
+
id: problem
|
|
34
|
+
attributes:
|
|
35
|
+
label: What is wrong or missing?
|
|
36
|
+
description: Describe what you expected to learn and where the documentation fell short.
|
|
37
|
+
validations:
|
|
38
|
+
required: true
|
|
39
|
+
- type: textarea
|
|
40
|
+
id: suggestion
|
|
41
|
+
attributes:
|
|
42
|
+
label: Suggested fix
|
|
43
|
+
description: If you know the correction, include the command, wording, or link that would help.
|
|
44
|
+
validations:
|
|
45
|
+
required: false
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
name: Feature request
|
|
2
|
+
description: Propose a focused AgentOS improvement
|
|
3
|
+
title: "[Feature]: "
|
|
4
|
+
labels: ["enhancement"]
|
|
5
|
+
body:
|
|
6
|
+
- type: textarea
|
|
7
|
+
id: problem
|
|
8
|
+
attributes:
|
|
9
|
+
label: Problem
|
|
10
|
+
description: Describe the user-facing problem or workflow gap.
|
|
11
|
+
validations:
|
|
12
|
+
required: true
|
|
13
|
+
- type: textarea
|
|
14
|
+
id: proposal
|
|
15
|
+
attributes:
|
|
16
|
+
label: Proposed behavior
|
|
17
|
+
description: Describe the smallest behavior change that would solve the problem.
|
|
18
|
+
validations:
|
|
19
|
+
required: true
|
|
20
|
+
- type: dropdown
|
|
21
|
+
id: area
|
|
22
|
+
attributes:
|
|
23
|
+
label: Area
|
|
24
|
+
options:
|
|
25
|
+
- CLI
|
|
26
|
+
- Gateway
|
|
27
|
+
- Web UI
|
|
28
|
+
- Provider integration
|
|
29
|
+
- Channel integration
|
|
30
|
+
- Memory
|
|
31
|
+
- Scheduler
|
|
32
|
+
- Tools
|
|
33
|
+
- Packaging or install
|
|
34
|
+
- Documentation
|
|
35
|
+
- Other
|
|
36
|
+
validations:
|
|
37
|
+
required: true
|
|
38
|
+
- type: textarea
|
|
39
|
+
id: alternatives
|
|
40
|
+
attributes:
|
|
41
|
+
label: Alternatives considered
|
|
42
|
+
description: Note any simpler workaround or existing AgentOS behavior you tried.
|
|
43
|
+
validations:
|
|
44
|
+
required: false
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
set -euo pipefail
|
|
3
|
+
|
|
4
|
+
changed_files="${1:?usage: classify-ci-changes.sh <changed-files-list>}"
|
|
5
|
+
output_file="${GITHUB_OUTPUT:?GITHUB_OUTPUT must be set}"
|
|
6
|
+
|
|
7
|
+
docs_only=true
|
|
8
|
+
runtime_changed=false
|
|
9
|
+
test_changed=false
|
|
10
|
+
ci_changed=false
|
|
11
|
+
dependency_changed=false
|
|
12
|
+
release_changed=false
|
|
13
|
+
seen_file=false
|
|
14
|
+
|
|
15
|
+
mark_runtime_changed() {
|
|
16
|
+
docs_only=false
|
|
17
|
+
runtime_changed=true
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
mark_test_changed() {
|
|
21
|
+
docs_only=false
|
|
22
|
+
test_changed=true
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
mark_ci_changed() {
|
|
26
|
+
docs_only=false
|
|
27
|
+
ci_changed=true
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
mark_dependency_changed() {
|
|
31
|
+
mark_runtime_changed
|
|
32
|
+
dependency_changed=true
|
|
33
|
+
release_changed=true
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
mark_release_changed() {
|
|
37
|
+
docs_only=false
|
|
38
|
+
release_changed=true
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
while IFS= read -r path || [[ -n "${path}" ]]; do
|
|
42
|
+
path="${path%$'\r'}"
|
|
43
|
+
[[ -z "${path}" ]] && continue
|
|
44
|
+
seen_file=true
|
|
45
|
+
|
|
46
|
+
case "${path}" in
|
|
47
|
+
.ci/run-all)
|
|
48
|
+
docs_only=false
|
|
49
|
+
runtime_changed=true
|
|
50
|
+
test_changed=true
|
|
51
|
+
ci_changed=true
|
|
52
|
+
dependency_changed=true
|
|
53
|
+
release_changed=true
|
|
54
|
+
;;
|
|
55
|
+
pyproject.toml | uv.lock)
|
|
56
|
+
mark_dependency_changed
|
|
57
|
+
;;
|
|
58
|
+
.github/workflows/wheelhouse-release.yml)
|
|
59
|
+
mark_ci_changed
|
|
60
|
+
mark_release_changed
|
|
61
|
+
;;
|
|
62
|
+
.github/workflows/*)
|
|
63
|
+
mark_ci_changed
|
|
64
|
+
;;
|
|
65
|
+
.github/scripts/*)
|
|
66
|
+
mark_ci_changed
|
|
67
|
+
;;
|
|
68
|
+
tests/test_scripts/test_build_wheelhouse_zip.py | tests/test_install_scripts.py | tests/test_root_start_scripts.py | tests/test_release_consistency.py | tests/test_public_release_hygiene.py)
|
|
69
|
+
mark_test_changed
|
|
70
|
+
mark_release_changed
|
|
71
|
+
;;
|
|
72
|
+
tests/*)
|
|
73
|
+
mark_test_changed
|
|
74
|
+
;;
|
|
75
|
+
scripts/build_wheelhouse_zip.py | scripts/install_source.sh | scripts/install_source.ps1)
|
|
76
|
+
mark_runtime_changed
|
|
77
|
+
mark_release_changed
|
|
78
|
+
;;
|
|
79
|
+
install.sh | install.ps1 | start.sh | start.ps1 | README.release.md | RELEASES.md)
|
|
80
|
+
mark_release_changed
|
|
81
|
+
;;
|
|
82
|
+
src/* | scripts/* | migrations/*)
|
|
83
|
+
mark_runtime_changed
|
|
84
|
+
;;
|
|
85
|
+
docs/* | README.md | README.*.md | CHANGELOG.md | CODE_OF_CONDUCT.md | CONTRIBUTING.md | MIGRATION.md | SECURITY.md | SUPPORT.md | THIRD_PARTY_NOTICES.md | .github/pull_request_template.md | .github/ISSUE_TEMPLATE/*)
|
|
86
|
+
;;
|
|
87
|
+
*)
|
|
88
|
+
mark_runtime_changed
|
|
89
|
+
;;
|
|
90
|
+
esac
|
|
91
|
+
done < "${changed_files}"
|
|
92
|
+
|
|
93
|
+
if [[ "${seen_file}" == "false" ]]; then
|
|
94
|
+
docs_only=false
|
|
95
|
+
runtime_changed=true
|
|
96
|
+
test_changed=true
|
|
97
|
+
ci_changed=true
|
|
98
|
+
dependency_changed=true
|
|
99
|
+
release_changed=true
|
|
100
|
+
fi
|
|
101
|
+
|
|
102
|
+
{
|
|
103
|
+
printf 'docs_only=%s\n' "${docs_only}"
|
|
104
|
+
printf 'runtime_changed=%s\n' "${runtime_changed}"
|
|
105
|
+
printf 'test_changed=%s\n' "${test_changed}"
|
|
106
|
+
printf 'ci_changed=%s\n' "${ci_changed}"
|
|
107
|
+
printf 'dependency_changed=%s\n' "${dependency_changed}"
|
|
108
|
+
printf 'release_changed=%s\n' "${release_changed}"
|
|
109
|
+
} >> "${output_file}"
|
|
@@ -0,0 +1,290 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
"on":
|
|
4
|
+
pull_request:
|
|
5
|
+
push:
|
|
6
|
+
branches: [main, dev]
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
permissions:
|
|
10
|
+
contents: read
|
|
11
|
+
|
|
12
|
+
concurrency:
|
|
13
|
+
group: ${{ github.workflow }}-${{ github.ref }}
|
|
14
|
+
cancel-in-progress: true
|
|
15
|
+
|
|
16
|
+
jobs:
|
|
17
|
+
classify-changes:
|
|
18
|
+
name: Classify changed files
|
|
19
|
+
runs-on: ubuntu-latest
|
|
20
|
+
timeout-minutes: 5
|
|
21
|
+
outputs:
|
|
22
|
+
docs_only: ${{ steps.classify.outputs.docs_only }}
|
|
23
|
+
runtime_changed: ${{ steps.classify.outputs.runtime_changed }}
|
|
24
|
+
test_changed: ${{ steps.classify.outputs.test_changed }}
|
|
25
|
+
ci_changed: ${{ steps.classify.outputs.ci_changed }}
|
|
26
|
+
dependency_changed: ${{ steps.classify.outputs.dependency_changed }}
|
|
27
|
+
release_changed: ${{ steps.classify.outputs.release_changed }}
|
|
28
|
+
steps:
|
|
29
|
+
- name: Check out repository
|
|
30
|
+
uses: actions/checkout@v4
|
|
31
|
+
with:
|
|
32
|
+
fetch-depth: 0
|
|
33
|
+
|
|
34
|
+
- name: List changed files
|
|
35
|
+
shell: bash
|
|
36
|
+
run: |
|
|
37
|
+
set -euo pipefail
|
|
38
|
+
changed_files="${RUNNER_TEMP}/changed-files.txt"
|
|
39
|
+
|
|
40
|
+
case "${{ github.event_name }}" in
|
|
41
|
+
pull_request)
|
|
42
|
+
git diff --name-only \
|
|
43
|
+
"${{ github.event.pull_request.base.sha }}" \
|
|
44
|
+
"${{ github.event.pull_request.head.sha }}" > "${changed_files}"
|
|
45
|
+
;;
|
|
46
|
+
push)
|
|
47
|
+
printf '.ci/run-all\n' > "${changed_files}"
|
|
48
|
+
;;
|
|
49
|
+
*)
|
|
50
|
+
printf '.ci/run-all\n' > "${changed_files}"
|
|
51
|
+
;;
|
|
52
|
+
esac
|
|
53
|
+
|
|
54
|
+
echo "Changed files:"
|
|
55
|
+
sed 's/^/ /' "${changed_files}"
|
|
56
|
+
printf 'CHANGED_FILES=%s\n' "${changed_files}" >> "${GITHUB_ENV}"
|
|
57
|
+
|
|
58
|
+
- name: Classify changed files
|
|
59
|
+
id: classify
|
|
60
|
+
shell: bash
|
|
61
|
+
run: bash .github/scripts/classify-ci-changes.sh "${CHANGED_FILES}"
|
|
62
|
+
|
|
63
|
+
workflow-lint:
|
|
64
|
+
name: Validate GitHub Actions workflows
|
|
65
|
+
runs-on: ubuntu-latest
|
|
66
|
+
timeout-minutes: 10
|
|
67
|
+
steps:
|
|
68
|
+
- name: Check out repository
|
|
69
|
+
uses: actions/checkout@v4
|
|
70
|
+
|
|
71
|
+
- name: Run actionlint
|
|
72
|
+
run: go run github.com/rhysd/actionlint/cmd/actionlint@v1.7.12 -color=false
|
|
73
|
+
|
|
74
|
+
ubuntu-quality:
|
|
75
|
+
name: Lint, test, and build (ubuntu-latest, 3.12)
|
|
76
|
+
needs: classify-changes
|
|
77
|
+
if: needs.classify-changes.outputs.docs_only != 'true'
|
|
78
|
+
runs-on: ubuntu-latest
|
|
79
|
+
timeout-minutes: 20
|
|
80
|
+
|
|
81
|
+
env:
|
|
82
|
+
UV_PYTHON: "3.12"
|
|
83
|
+
PYTHONPATH: ${{ github.workspace }}
|
|
84
|
+
AGENTOS_TURN_CALL_LOG: "0"
|
|
85
|
+
|
|
86
|
+
steps:
|
|
87
|
+
- name: Check out repository
|
|
88
|
+
uses: actions/checkout@v4
|
|
89
|
+
with:
|
|
90
|
+
lfs: true
|
|
91
|
+
|
|
92
|
+
- name: Configure runtime directories
|
|
93
|
+
shell: bash
|
|
94
|
+
run: |
|
|
95
|
+
printf 'AGENTOS_STATE_DIR=%s/agentos-state\n' "$RUNNER_TEMP" >> "$GITHUB_ENV"
|
|
96
|
+
printf 'AGENTOS_LOG_DIR=%s/agentos-logs\n' "$RUNNER_TEMP" >> "$GITHUB_ENV"
|
|
97
|
+
|
|
98
|
+
- name: Set up Python
|
|
99
|
+
uses: actions/setup-python@v5
|
|
100
|
+
with:
|
|
101
|
+
python-version: "3.12"
|
|
102
|
+
|
|
103
|
+
- name: Set up uv
|
|
104
|
+
uses: astral-sh/setup-uv@v5
|
|
105
|
+
with:
|
|
106
|
+
enable-cache: true
|
|
107
|
+
|
|
108
|
+
- name: Install dependencies
|
|
109
|
+
shell: bash
|
|
110
|
+
run: uv sync --extra dev --extra recommended --extra mcp --frozen
|
|
111
|
+
|
|
112
|
+
- name: Lint
|
|
113
|
+
shell: bash
|
|
114
|
+
run: uv run ruff check src tests
|
|
115
|
+
|
|
116
|
+
- name: Type check
|
|
117
|
+
shell: bash
|
|
118
|
+
run: uv run mypy src/agentos --show-error-codes
|
|
119
|
+
|
|
120
|
+
- name: Test
|
|
121
|
+
shell: bash
|
|
122
|
+
run: uv run pytest tests -q
|
|
123
|
+
|
|
124
|
+
- name: Verify metric counter names unchanged
|
|
125
|
+
shell: bash
|
|
126
|
+
run: |
|
|
127
|
+
set -e
|
|
128
|
+
for name in agentos_queue_depth in_flight_turns_total turn_cancellations_total queue_full_errors_total; do
|
|
129
|
+
count=$(grep -c "$name" src/agentos/gateway/task_runtime.py || echo 0)
|
|
130
|
+
if [ "$count" -lt 1 ]; then
|
|
131
|
+
echo "ERROR: metric name '$name' missing from task_runtime.py"
|
|
132
|
+
exit 1
|
|
133
|
+
fi
|
|
134
|
+
done
|
|
135
|
+
|
|
136
|
+
- name: tracemalloc leak smoke test
|
|
137
|
+
shell: bash
|
|
138
|
+
run: |
|
|
139
|
+
uv run python -m pytest tests/test_gateway/test_task_runtime_terminal_cleanup.py::test_no_leak_under_load -v
|
|
140
|
+
|
|
141
|
+
- name: Build wheel
|
|
142
|
+
shell: bash
|
|
143
|
+
run: uv build --wheel
|
|
144
|
+
|
|
145
|
+
windows-compat:
|
|
146
|
+
name: Lint, test, and build (windows-latest, 3.12)
|
|
147
|
+
needs: classify-changes
|
|
148
|
+
if: needs.classify-changes.outputs.docs_only != 'true'
|
|
149
|
+
runs-on: windows-latest
|
|
150
|
+
timeout-minutes: 20
|
|
151
|
+
|
|
152
|
+
env:
|
|
153
|
+
UV_PYTHON: "3.12"
|
|
154
|
+
PYTHONPATH: ${{ github.workspace }}
|
|
155
|
+
AGENTOS_TURN_CALL_LOG: "0"
|
|
156
|
+
|
|
157
|
+
steps:
|
|
158
|
+
- name: Check out repository
|
|
159
|
+
uses: actions/checkout@v4
|
|
160
|
+
with:
|
|
161
|
+
lfs: true
|
|
162
|
+
|
|
163
|
+
- name: Configure runtime directories
|
|
164
|
+
shell: bash
|
|
165
|
+
run: |
|
|
166
|
+
printf 'AGENTOS_STATE_DIR=%s/agentos-state\n' "$RUNNER_TEMP" >> "$GITHUB_ENV"
|
|
167
|
+
printf 'AGENTOS_LOG_DIR=%s/agentos-logs\n' "$RUNNER_TEMP" >> "$GITHUB_ENV"
|
|
168
|
+
|
|
169
|
+
- name: Set up Python
|
|
170
|
+
uses: actions/setup-python@v5
|
|
171
|
+
with:
|
|
172
|
+
python-version: "3.12"
|
|
173
|
+
|
|
174
|
+
- name: Set up uv
|
|
175
|
+
uses: astral-sh/setup-uv@v5
|
|
176
|
+
with:
|
|
177
|
+
enable-cache: true
|
|
178
|
+
|
|
179
|
+
- name: Install dependencies
|
|
180
|
+
shell: bash
|
|
181
|
+
run: uv sync --extra dev --extra recommended --extra mcp --frozen
|
|
182
|
+
|
|
183
|
+
- name: Test
|
|
184
|
+
shell: bash
|
|
185
|
+
run: uv run pytest tests -q
|
|
186
|
+
|
|
187
|
+
release-packaging:
|
|
188
|
+
name: Release packaging contracts
|
|
189
|
+
needs: classify-changes
|
|
190
|
+
if: needs.classify-changes.outputs.release_changed == 'true'
|
|
191
|
+
runs-on: ubuntu-latest
|
|
192
|
+
timeout-minutes: 20
|
|
193
|
+
|
|
194
|
+
env:
|
|
195
|
+
UV_PYTHON: "3.12"
|
|
196
|
+
PYTHONPATH: ${{ github.workspace }}
|
|
197
|
+
AGENTOS_TURN_CALL_LOG: "0"
|
|
198
|
+
|
|
199
|
+
steps:
|
|
200
|
+
- name: Check out repository
|
|
201
|
+
uses: actions/checkout@v4
|
|
202
|
+
with:
|
|
203
|
+
lfs: true
|
|
204
|
+
|
|
205
|
+
- name: Set up Python
|
|
206
|
+
uses: actions/setup-python@v5
|
|
207
|
+
with:
|
|
208
|
+
python-version: "3.12"
|
|
209
|
+
|
|
210
|
+
- name: Set up uv
|
|
211
|
+
uses: astral-sh/setup-uv@v5
|
|
212
|
+
with:
|
|
213
|
+
enable-cache: true
|
|
214
|
+
|
|
215
|
+
- name: Install dependencies
|
|
216
|
+
shell: bash
|
|
217
|
+
run: uv sync --extra dev --extra recommended --extra mcp --frozen
|
|
218
|
+
|
|
219
|
+
- name: Run release packaging contract tests
|
|
220
|
+
shell: bash
|
|
221
|
+
run: |
|
|
222
|
+
uv run pytest \
|
|
223
|
+
tests/test_scripts/test_build_wheelhouse_zip.py \
|
|
224
|
+
tests/test_install_scripts.py \
|
|
225
|
+
tests/test_root_start_scripts.py \
|
|
226
|
+
tests/test_release_consistency.py \
|
|
227
|
+
tests/test_public_release_hygiene.py \
|
|
228
|
+
-q
|
|
229
|
+
|
|
230
|
+
ci-result:
|
|
231
|
+
name: CI result
|
|
232
|
+
needs:
|
|
233
|
+
- classify-changes
|
|
234
|
+
- workflow-lint
|
|
235
|
+
- ubuntu-quality
|
|
236
|
+
- windows-compat
|
|
237
|
+
- release-packaging
|
|
238
|
+
if: always()
|
|
239
|
+
runs-on: ubuntu-latest
|
|
240
|
+
timeout-minutes: 5
|
|
241
|
+
steps:
|
|
242
|
+
- name: Check required CI results
|
|
243
|
+
shell: bash
|
|
244
|
+
run: |
|
|
245
|
+
set -euo pipefail
|
|
246
|
+
|
|
247
|
+
classify_result="${{ needs.classify-changes.result }}"
|
|
248
|
+
workflow_lint_result="${{ needs.workflow-lint.result }}"
|
|
249
|
+
ubuntu_result="${{ needs.ubuntu-quality.result }}"
|
|
250
|
+
windows_result="${{ needs.windows-compat.result }}"
|
|
251
|
+
release_result="${{ needs.release-packaging.result }}"
|
|
252
|
+
docs_only="${{ needs.classify-changes.outputs.docs_only }}"
|
|
253
|
+
runtime_changed="${{ needs.classify-changes.outputs.runtime_changed }}"
|
|
254
|
+
test_changed="${{ needs.classify-changes.outputs.test_changed }}"
|
|
255
|
+
ci_changed="${{ needs.classify-changes.outputs.ci_changed }}"
|
|
256
|
+
dependency_changed="${{ needs.classify-changes.outputs.dependency_changed }}"
|
|
257
|
+
release_changed="${{ needs.classify-changes.outputs.release_changed }}"
|
|
258
|
+
|
|
259
|
+
printf 'classify-changes: %s\n' "${classify_result}"
|
|
260
|
+
printf 'workflow-lint: %s\n' "${workflow_lint_result}"
|
|
261
|
+
printf 'ubuntu-quality: %s\n' "${ubuntu_result}"
|
|
262
|
+
printf 'windows-compat: %s\n' "${windows_result}"
|
|
263
|
+
printf 'release-packaging: %s\n' "${release_result}"
|
|
264
|
+
printf 'docs_only=%s runtime_changed=%s test_changed=%s ci_changed=%s dependency_changed=%s release_changed=%s\n' \
|
|
265
|
+
"${docs_only}" "${runtime_changed}" "${test_changed}" "${ci_changed}" "${dependency_changed}" "${release_changed}"
|
|
266
|
+
|
|
267
|
+
if [[ "${classify_result}" != "success" ]]; then
|
|
268
|
+
echo "Classify changed files must succeed."
|
|
269
|
+
exit 1
|
|
270
|
+
fi
|
|
271
|
+
|
|
272
|
+
if [[ "${workflow_lint_result}" != "success" ]]; then
|
|
273
|
+
echo "Workflow lint must succeed."
|
|
274
|
+
exit 1
|
|
275
|
+
fi
|
|
276
|
+
|
|
277
|
+
if [[ "${docs_only}" != "true" && "${ubuntu_result}" != "success" ]]; then
|
|
278
|
+
echo "Ubuntu quality gate must succeed for non-documentation changes."
|
|
279
|
+
exit 1
|
|
280
|
+
fi
|
|
281
|
+
|
|
282
|
+
if [[ "${docs_only}" != "true" && "${windows_result}" != "success" ]]; then
|
|
283
|
+
echo "Windows compatibility tests must succeed for non-documentation changes."
|
|
284
|
+
exit 1
|
|
285
|
+
fi
|
|
286
|
+
|
|
287
|
+
if [[ "${release_changed}" == "true" && "${release_result}" != "success" ]]; then
|
|
288
|
+
echo "Release packaging contracts must succeed for release-surface changes."
|
|
289
|
+
exit 1
|
|
290
|
+
fi
|