alysis-code 0.13.0__py3-none-any.whl
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.
- alysis_code/__init__.py +3 -0
- alysis_code/__main__.py +4 -0
- alysis_code/_build_info.py +14 -0
- alysis_code/account_login.py +468 -0
- alysis_code/agent/README.md +35 -0
- alysis_code/agent/__init__.py +11 -0
- alysis_code/agent/acceptance_contract.py +2217 -0
- alysis_code/agent/blast_radius.py +1403 -0
- alysis_code/agent/cache_keepalive.py +227 -0
- alysis_code/agent/completion_certificate.py +366 -0
- alysis_code/agent/completion_gate.py +306 -0
- alysis_code/agent/empty_response_stall.py +403 -0
- alysis_code/agent/errors.py +28 -0
- alysis_code/agent/llm_calls.py +475 -0
- alysis_code/agent/mutation_classification.py +227 -0
- alysis_code/agent/prompt_context.py +2508 -0
- alysis_code/agent/read_ledger.py +253 -0
- alysis_code/agent/regression_baseline.py +642 -0
- alysis_code/agent/reproduction_first.py +610 -0
- alysis_code/agent/sensitive_output.py +629 -0
- alysis_code/agent/session.py +3218 -0
- alysis_code/agent/steering.py +191 -0
- alysis_code/agent/subagent_execution.py +5177 -0
- alysis_code/agent/subagent_workspace.py +666 -0
- alysis_code/agent/tools_assembly.py +4728 -0
- alysis_code/agent/turn/__init__.py +101 -0
- alysis_code/agent/turn/core.py +8483 -0
- alysis_code/agent/turn/events.py +113 -0
- alysis_code/agent/turn/exploration.py +590 -0
- alysis_code/agent/turn/interventions.py +65 -0
- alysis_code/agent/turn/read_cache.py +420 -0
- alysis_code/agent/turn/snapshot.py +179 -0
- alysis_code/agent/turn_contract.py +661 -0
- alysis_code/agent/turn_path.py +129 -0
- alysis_code/agent/verification.py +2885 -0
- alysis_code/agent/verification_commands.py +512 -0
- alysis_code/agent/verification_evidence.py +738 -0
- alysis_code/agent_loop.py +693 -0
- alysis_code/agent_runtimes/__init__.py +51 -0
- alysis_code/agent_runtimes/base.py +114 -0
- alysis_code/agent_runtimes/builtins.py +129 -0
- alysis_code/agent_runtimes/codex_cli.py +664 -0
- alysis_code/agent_runtimes/host.py +263 -0
- alysis_code/agent_runtimes/registry.py +64 -0
- alysis_code/agent_runtimes/service.py +150 -0
- alysis_code/agentbox_client.py +416 -0
- alysis_code/agentbox_integration.py +310 -0
- alysis_code/alysis_cloud.py +152 -0
- alysis_code/approval_scope.py +276 -0
- alysis_code/assets/README.md +33 -0
- alysis_code/assets/__init__.py +126 -0
- alysis_code/assets/asset_read_core.py +281 -0
- alysis_code/assets/budget_allocator.py +456 -0
- alysis_code/assets/comprehender.py +759 -0
- alysis_code/assets/index.py +654 -0
- alysis_code/assets/ingestion.py +275 -0
- alysis_code/assets/legacy_migration.py +413 -0
- alysis_code/assets/models.py +263 -0
- alysis_code/assets/ocr.py +239 -0
- alysis_code/assets/owl/ascii/f-000.txt +13 -0
- alysis_code/assets/owl/ascii/f-001.txt +13 -0
- alysis_code/assets/owl/ascii/f-002.txt +13 -0
- alysis_code/assets/owl/ascii/f-003.txt +13 -0
- alysis_code/assets/owl/ascii/f-004.txt +13 -0
- alysis_code/assets/owl/ascii/f-005.txt +13 -0
- alysis_code/assets/owl/ascii/f-006.txt +13 -0
- alysis_code/assets/owl/ascii/f-007.txt +13 -0
- alysis_code/assets/owl/ascii/f-008.txt +13 -0
- alysis_code/assets/owl/ascii/f-009.txt +13 -0
- alysis_code/assets/owl/ascii/f-010.txt +13 -0
- alysis_code/assets/owl/ascii/f-011.txt +13 -0
- alysis_code/assets/owl/ascii/f-012.txt +13 -0
- alysis_code/assets/owl/ascii/f-013.txt +13 -0
- alysis_code/assets/owl/ascii/f-014.txt +13 -0
- alysis_code/assets/owl/ascii/f-015.txt +13 -0
- alysis_code/assets/owl/ascii/f-016.txt +13 -0
- alysis_code/assets/owl/ascii/f-017.txt +13 -0
- alysis_code/assets/owl/ascii/f-018.txt +13 -0
- alysis_code/assets/owl/ascii/f-019.txt +13 -0
- alysis_code/assets/owl/ascii/f-020.txt +13 -0
- alysis_code/assets/owl/index.html +98 -0
- alysis_code/assets/owl/show-owl.sh +761 -0
- alysis_code/assets/paths.py +49 -0
- alysis_code/assets/plan_binding.py +326 -0
- alysis_code/assets/planner_context.py +466 -0
- alysis_code/assets/planner_tools.py +184 -0
- alysis_code/assets/prompts.py +101 -0
- alysis_code/assets/replanner_context.py +239 -0
- alysis_code/assets/surface.py +521 -0
- alysis_code/assets/untrusted_content.py +48 -0
- alysis_code/assets/usage_logger.py +94 -0
- alysis_code/assets/worker_mirror.py +428 -0
- alysis_code/assets/worker_section.py +303 -0
- alysis_code/assets/worker_tools.py +468 -0
- alysis_code/atomic_io.py +83 -0
- alysis_code/auth_diagnostics.py +272 -0
- alysis_code/background_runner.py +366 -0
- alysis_code/branding.py +270 -0
- alysis_code/budget_policy.py +390 -0
- alysis_code/build_identity.py +465 -0
- alysis_code/builtin_hooks/__init__.py +7 -0
- alysis_code/builtin_hooks/notify_done_windows.py +65 -0
- alysis_code/bwrap_etc.py +76 -0
- alysis_code/cancellation.py +41 -0
- alysis_code/capabilities.py +137 -0
- alysis_code/chatgpt_codex_static_provider.py +133 -0
- alysis_code/cli.py +51 -0
- alysis_code/cli_impl/__init__.py +1 -0
- alysis_code/cli_impl/assets_cli.py +537 -0
- alysis_code/cli_impl/assets_modal.py +412 -0
- alysis_code/cli_impl/chat/__init__.py +156 -0
- alysis_code/cli_impl/chat/commands.py +2616 -0
- alysis_code/cli_impl/chat/loop.py +4508 -0
- alysis_code/cli_impl/chat/mid_turn_policy.py +125 -0
- alysis_code/cli_impl/chat/rendering.py +444 -0
- alysis_code/cli_impl/chat/state.py +124 -0
- alysis_code/cli_impl/chat_resume.py +830 -0
- alysis_code/cli_impl/chat_slash_completer.py +258 -0
- alysis_code/cli_impl/commands/__init__.py +11 -0
- alysis_code/cli_impl/commands/_shared.py +89 -0
- alysis_code/cli_impl/commands/auth.py +623 -0
- alysis_code/cli_impl/commands/chat_resume_helpers.py +1531 -0
- alysis_code/cli_impl/commands/chat_state.py +158 -0
- alysis_code/cli_impl/commands/chat_status.py +1248 -0
- alysis_code/cli_impl/commands/chat_terminal.py +942 -0
- alysis_code/cli_impl/commands/chat_tui_panels.py +1018 -0
- alysis_code/cli_impl/commands/cli_common.py +1223 -0
- alysis_code/cli_impl/commands/cli_surface.py +77 -0
- alysis_code/cli_impl/commands/config.py +131 -0
- alysis_code/cli_impl/commands/conventions.py +85 -0
- alysis_code/cli_impl/commands/execution_helpers.py +350 -0
- alysis_code/cli_impl/commands/extensions.py +401 -0
- alysis_code/cli_impl/commands/forge.py +1282 -0
- alysis_code/cli_impl/commands/forge_asset_view.py +121 -0
- alysis_code/cli_impl/commands/forge_helpers.py +1215 -0
- alysis_code/cli_impl/commands/hooks.py +737 -0
- alysis_code/cli_impl/commands/ide_bridge.py +31 -0
- alysis_code/cli_impl/commands/mcp.py +700 -0
- alysis_code/cli_impl/commands/profile.py +453 -0
- alysis_code/cli_impl/commands/prompt_helpers.py +307 -0
- alysis_code/cli_impl/commands/report.py +88 -0
- alysis_code/cli_impl/commands/root.py +1118 -0
- alysis_code/cli_impl/commands/sandbox.py +184 -0
- alysis_code/cli_impl/commands/server.py +54 -0
- alysis_code/cli_impl/commands/sessions.py +252 -0
- alysis_code/cli_impl/commands/skills.py +404 -0
- alysis_code/cli_impl/commands/startup.py +946 -0
- alysis_code/cli_impl/commands/tools.py +335 -0
- alysis_code/cli_impl/commands/update.py +364 -0
- alysis_code/cli_impl/commands/welcome.py +972 -0
- alysis_code/cli_impl/config_menu.py +3882 -0
- alysis_code/cli_impl/forge.py +4509 -0
- alysis_code/cli_impl/forge_recovery.py +485 -0
- alysis_code/cli_impl/setup_wizard.py +2409 -0
- alysis_code/cli_impl/tui/__init__.py +58 -0
- alysis_code/cli_impl/tui/app.py +4551 -0
- alysis_code/cli_impl/tui/config.py +32 -0
- alysis_code/cli_impl/tui/config_flow.py +2754 -0
- alysis_code/cli_impl/tui/config_overlay.py +566 -0
- alysis_code/cli_impl/tui/content.py +78 -0
- alysis_code/cli_impl/tui/footer.py +218 -0
- alysis_code/cli_impl/tui/forge_status.py +136 -0
- alysis_code/cli_impl/tui/markdown.py +244 -0
- alysis_code/cli_impl/tui/owl.py +109 -0
- alysis_code/cli_impl/tui/plan_meta.py +477 -0
- alysis_code/cli_impl/tui/setup_app.py +519 -0
- alysis_code/cli_impl/tui/setup_flow.py +1622 -0
- alysis_code/cli_impl/tui/state.py +101 -0
- alysis_code/cli_impl/tui/subagent_identity.py +66 -0
- alysis_code/cli_impl/tui/subagent_panel.py +186 -0
- alysis_code/cli_impl/tui/surface.py +796 -0
- alysis_code/cli_impl/tui/transcript.py +514 -0
- alysis_code/cli_impl/tui/update_prompt.py +79 -0
- alysis_code/cli_impl/tui/workspace_guard.py +384 -0
- alysis_code/clipboard.py +172 -0
- alysis_code/code_review.py +1211 -0
- alysis_code/compaction/__init__.py +28 -0
- alysis_code/compaction/conversation_compactor.py +2932 -0
- alysis_code/compaction/importance.py +177 -0
- alysis_code/compaction/settings.py +297 -0
- alysis_code/compaction/tool_output_offload.py +447 -0
- alysis_code/config.py +3509 -0
- alysis_code/conflict_auto_resolver.py +895 -0
- alysis_code/context/__init__.py +1 -0
- alysis_code/context/tool_schema_budgeter.py +220 -0
- alysis_code/crash_diagnostics.py +282 -0
- alysis_code/custom_tools/README.md +34 -0
- alysis_code/custom_tools/__init__.py +43 -0
- alysis_code/custom_tools/discovery.py +903 -0
- alysis_code/custom_tools/runtime.py +1516 -0
- alysis_code/custom_tools/session.py +227 -0
- alysis_code/custom_tools/trust.py +232 -0
- alysis_code/diff_paths.py +113 -0
- alysis_code/direction_change.py +293 -0
- alysis_code/dispatch_timing.py +306 -0
- alysis_code/durable_service_manager.py +1236 -0
- alysis_code/edit_discipline.py +659 -0
- alysis_code/error_text.py +73 -0
- alysis_code/execution_budget.py +411 -0
- alysis_code/execution_context.py +915 -0
- alysis_code/execution_deadline.py +1065 -0
- alysis_code/execution_shared.py +1904 -0
- alysis_code/extensions/README.md +30 -0
- alysis_code/extensions/__init__.py +93 -0
- alysis_code/extensions/activation.py +138 -0
- alysis_code/extensions/install.py +1436 -0
- alysis_code/extensions/manifest.py +487 -0
- alysis_code/extensions/models.py +74 -0
- alysis_code/extensions/paths.py +56 -0
- alysis_code/extensions/registry.json +4 -0
- alysis_code/extensions/registry.py +52 -0
- alysis_code/extensions/state.py +83 -0
- alysis_code/extensions/workspace_trust.py +101 -0
- alysis_code/failed_task_evidence.py +369 -0
- alysis_code/failure_category.py +315 -0
- alysis_code/feedback_report.py +1647 -0
- alysis_code/file_classification.py +485 -0
- alysis_code/forge.py +2064 -0
- alysis_code/forge_completion.py +362 -0
- alysis_code/forge_events.py +475 -0
- alysis_code/frontmatter_utils.py +95 -0
- alysis_code/git_evidence.py +1181 -0
- alysis_code/git_ops.py +560 -0
- alysis_code/git_safe.py +62 -0
- alysis_code/git_worktrees.py +190 -0
- alysis_code/hooks/README.md +33 -0
- alysis_code/hooks/__init__.py +67 -0
- alysis_code/hooks/audit.py +171 -0
- alysis_code/hooks/config.py +225 -0
- alysis_code/hooks/dispatcher.py +1110 -0
- alysis_code/hooks/models.py +447 -0
- alysis_code/hooks/trust.py +202 -0
- alysis_code/host_actions.py +543 -0
- alysis_code/host_browser.py +103 -0
- alysis_code/ide/__init__.py +5 -0
- alysis_code/ide/activity_events.py +399 -0
- alysis_code/ide/approvals.py +337 -0
- alysis_code/ide/artifacts.py +153 -0
- alysis_code/ide/browser_egress_proxy.py +1076 -0
- alysis_code/ide/cdp_websocket_transport.py +1192 -0
- alysis_code/ide/change_ledger.py +1721 -0
- alysis_code/ide/context_blocks.py +979 -0
- alysis_code/ide/event_stream.py +531 -0
- alysis_code/ide/forge_protocol.py +3112 -0
- alysis_code/ide/forge_request_ledger.py +737 -0
- alysis_code/ide/health.py +965 -0
- alysis_code/ide/managed_browser.py +2251 -0
- alysis_code/ide/management_protocol.py +3414 -0
- alysis_code/ide/mcp_oauth_coordinator.py +744 -0
- alysis_code/ide/mcp_oauth_lifecycle.py +1504 -0
- alysis_code/ide/prompt_queue.py +1070 -0
- alysis_code/ide/protocol.py +191 -0
- alysis_code/ide/resumable_swarm.py +1543 -0
- alysis_code/ide/session_search.py +295 -0
- alysis_code/ide/stdio_bridge.py +9935 -0
- alysis_code/ide/structured_state.py +1579 -0
- alysis_code/ide/swarm_protocol.py +816 -0
- alysis_code/integration_gate.py +506 -0
- alysis_code/interactive_input_guard.py +39 -0
- alysis_code/interactive_plan_mode.py +26 -0
- alysis_code/internal_artifacts.py +179 -0
- alysis_code/knowledge_base.py +1409 -0
- alysis_code/knowledge_capture.py +1190 -0
- alysis_code/knowledge_librarian.py +605 -0
- alysis_code/language_policy.py +34 -0
- alysis_code/litellm_static_provider.py +535 -0
- alysis_code/llm/__init__.py +1 -0
- alysis_code/llm/anthropic_messages.py +2288 -0
- alysis_code/llm/base.py +71 -0
- alysis_code/llm/cache_capabilities.py +985 -0
- alysis_code/llm/cache_control_blocks.py +244 -0
- alysis_code/llm/cache_policy.py +388 -0
- alysis_code/llm/factory.py +373 -0
- alysis_code/llm/gemini_generate_content.py +2652 -0
- alysis_code/llm/gemini_interactions.py +739 -0
- alysis_code/llm/metadata.py +450 -0
- alysis_code/llm/openai_compat.py +2947 -0
- alysis_code/llm/openai_responses.py +2604 -0
- alysis_code/llm/protocols.py +609 -0
- alysis_code/llm/provider_limits.py +525 -0
- alysis_code/llm/request_plan.py +389 -0
- alysis_code/llm/request_shape.py +238 -0
- alysis_code/llm/streaming.py +108 -0
- alysis_code/llm/temperature_compat.py +78 -0
- alysis_code/llm/types.py +195 -0
- alysis_code/llm/usage_normalization.py +222 -0
- alysis_code/llm_error_display.py +315 -0
- alysis_code/logging_redaction.py +326 -0
- alysis_code/managed_host_deadline.py +196 -0
- alysis_code/mcp/README.md +33 -0
- alysis_code/mcp/__init__.py +24 -0
- alysis_code/mcp/client.py +1137 -0
- alysis_code/mcp/config.py +597 -0
- alysis_code/mcp/errors.py +113 -0
- alysis_code/mcp/forge_scope.py +154 -0
- alysis_code/mcp/jsonrpc.py +214 -0
- alysis_code/mcp/manager.py +2308 -0
- alysis_code/mcp/models.py +666 -0
- alysis_code/mcp/oauth.py +972 -0
- alysis_code/mcp/oauth_runtime.py +310 -0
- alysis_code/mcp/oauth_store.py +276 -0
- alysis_code/mcp/prompts.py +329 -0
- alysis_code/mcp/resources.py +295 -0
- alysis_code/mcp/roots.py +106 -0
- alysis_code/mcp/server_requests.py +75 -0
- alysis_code/mcp/token_store.py +859 -0
- alysis_code/mcp/transport_http.py +1338 -0
- alysis_code/mcp/transport_stdio.py +1267 -0
- alysis_code/mcp/untrusted_content.py +119 -0
- alysis_code/merge_conflict_reviewer.py +729 -0
- alysis_code/model_catalog/__init__.py +1 -0
- alysis_code/model_catalog/chatgpt_codex_subscription_snapshot.json +186 -0
- alysis_code/model_catalog/litellm_model_prices_snapshot.json +44715 -0
- alysis_code/model_catalog/litellm_model_prices_snapshot.meta.json +17 -0
- alysis_code/model_metadata_policy.py +223 -0
- alysis_code/model_metadata_utils.py +103 -0
- alysis_code/model_registry.py +1420 -0
- alysis_code/model_router.py +147 -0
- alysis_code/permission_policy.py +1016 -0
- alysis_code/personas.py +451 -0
- alysis_code/pipeline_facts.py +233 -0
- alysis_code/plan_assistant.py +4763 -0
- alysis_code/plan_mode.py +393 -0
- alysis_code/plan_reconciliation.py +1228 -0
- alysis_code/plan_repair.py +652 -0
- alysis_code/plan_validation.py +1099 -0
- alysis_code/planning_constraints.py +904 -0
- alysis_code/policy.py +95 -0
- alysis_code/preview_server.py +457 -0
- alysis_code/process_reaping.py +566 -0
- alysis_code/profile_presets.py +1834 -0
- alysis_code/profiles.py +666 -0
- alysis_code/provider_auth/__init__.py +29 -0
- alysis_code/provider_auth/base.py +99 -0
- alysis_code/provider_auth/openai_codex.py +951 -0
- alysis_code/provider_auth/registry.py +76 -0
- alysis_code/provider_auth/store.py +125 -0
- alysis_code/provider_diagnostics.py +1209 -0
- alysis_code/provider_model_catalog.py +685 -0
- alysis_code/provider_telemetry.py +1699 -0
- alysis_code/provider_url.py +75 -0
- alysis_code/reasoning_contracts.py +911 -0
- alysis_code/remote_sync.py +350 -0
- alysis_code/replanning.py +1195 -0
- alysis_code/repo_scan.py +1152 -0
- alysis_code/request_estimation.py +296 -0
- alysis_code/review_gate.py +617 -0
- alysis_code/run_lock.py +1141 -0
- alysis_code/run_outcome.py +58 -0
- alysis_code/run_provenance.py +774 -0
- alysis_code/run_state.py +445 -0
- alysis_code/runtime_artifacts.py +116 -0
- alysis_code/runtime_context_features.py +78 -0
- alysis_code/runtime_kind.py +52 -0
- alysis_code/safety/__init__.py +11 -0
- alysis_code/safety/mcp_sanitize.py +29 -0
- alysis_code/safety/safe_http.py +297 -0
- alysis_code/safety/subagent_report.py +184 -0
- alysis_code/sandbox_doctor.py +682 -0
- alysis_code/sandbox_runner.py +1025 -0
- alysis_code/sandbox_settings.py +423 -0
- alysis_code/serialized_paths.py +355 -0
- alysis_code/server/__init__.py +3 -0
- alysis_code/server/app.py +367 -0
- alysis_code/server/auth.py +34 -0
- alysis_code/server/job_config.py +30 -0
- alysis_code/server/settings.py +215 -0
- alysis_code/server/store.py +193 -0
- alysis_code/server/worker_runner.py +657 -0
- alysis_code/service_persistence.py +355 -0
- alysis_code/session_artifacts.py +108 -0
- alysis_code/session_metrics.py +331 -0
- alysis_code/session_store.py +624 -0
- alysis_code/skills/README.md +34 -0
- alysis_code/skills/__init__.py +104 -0
- alysis_code/skills/conventions.py +84 -0
- alysis_code/skills/discovery.py +176 -0
- alysis_code/skills/eval_models.py +232 -0
- alysis_code/skills/eval_runner.py +372 -0
- alysis_code/skills/evals.py +1344 -0
- alysis_code/skills/install.py +293 -0
- alysis_code/skills/loader.py +118 -0
- alysis_code/skills/matching.py +103 -0
- alysis_code/skills/models.py +71 -0
- alysis_code/skills/paths.py +56 -0
- alysis_code/skills/prompting.py +500 -0
- alysis_code/skills/scaffold.py +142 -0
- alysis_code/skills/state.py +441 -0
- alysis_code/skills/transactions.py +125 -0
- alysis_code/skills/validation.py +304 -0
- alysis_code/step_budget.py +238 -0
- alysis_code/subagent_labels.py +49 -0
- alysis_code/subagents.py +1072 -0
- alysis_code/surface/__init__.py +80 -0
- alysis_code/surface/base.py +305 -0
- alysis_code/surface/console.py +387 -0
- alysis_code/surface/events.py +372 -0
- alysis_code/surface/hidden_surface.py +529 -0
- alysis_code/surface/noop_surface.py +219 -0
- alysis_code/surface/rich_surface.py +1555 -0
- alysis_code/surface/styles.py +67 -0
- alysis_code/surface/theme.py +455 -0
- alysis_code/surface/types.py +100 -0
- alysis_code/swarm_backend.py +926 -0
- alysis_code/swarm_orchestrator.py +4020 -0
- alysis_code/swarm_scheduler.py +441 -0
- alysis_code/swarm_trace.py +429 -0
- alysis_code/swarm_worker.py +2119 -0
- alysis_code/swarm_write_guard.py +348 -0
- alysis_code/task_dependencies.py +170 -0
- alysis_code/task_readiness.py +992 -0
- alysis_code/task_scope.py +2148 -0
- alysis_code/terminal_manager.py +762 -0
- alysis_code/terminal_ownership.py +460 -0
- alysis_code/text_normalization.py +30 -0
- alysis_code/token_budget.py +97 -0
- alysis_code/tools/README.md +34 -0
- alysis_code/tools/__init__.py +1 -0
- alysis_code/tools/artifacts.py +127 -0
- alysis_code/tools/availability.py +188 -0
- alysis_code/tools/fs.py +1456 -0
- alysis_code/tools/git.py +461 -0
- alysis_code/tools/history.py +229 -0
- alysis_code/tools/http_timeout.py +78 -0
- alysis_code/tools/image_generation.py +552 -0
- alysis_code/tools/registry.py +2936 -0
- alysis_code/tools/repo_map.py +476 -0
- alysis_code/tools/search.py +563 -0
- alysis_code/tools/shell.py +135 -0
- alysis_code/tools/symbols.py +1350 -0
- alysis_code/tools/test_discovery.py +643 -0
- alysis_code/tools/web.py +482 -0
- alysis_code/tools/web_search.py +2012 -0
- alysis_code/tools/web_search_dashscope.py +557 -0
- alysis_code/tools/web_search_ddgs.py +221 -0
- alysis_code/tools/web_search_provider_adapters.py +1429 -0
- alysis_code/tools/web_search_tavily.py +194 -0
- alysis_code/updates.py +933 -0
- alysis_code/usage_tracker.py +1990 -0
- alysis_code/verification_command_analysis.py +1004 -0
- alysis_code/verification_contract.py +574 -0
- alysis_code/verification_failure_summary.py +273 -0
- alysis_code/verification_repair.py +385 -0
- alysis_code/verify_gate.py +3129 -0
- alysis_code/web_research.py +1872 -0
- alysis_code/web_search_adapters.py +66 -0
- alysis_code/web_search_policy.py +27 -0
- alysis_code/workspace_binding.py +389 -0
- alysis_code/workspace_binding_ui.py +408 -0
- alysis_code/workspace_context.py +273 -0
- alysis_code/workspace_isolation.py +138 -0
- alysis_code/workspace_provisioning.py +455 -0
- alysis_code-0.13.0.dist-info/METADATA +507 -0
- alysis_code-0.13.0.dist-info/RECORD +458 -0
- alysis_code-0.13.0.dist-info/WHEEL +4 -0
- alysis_code-0.13.0.dist-info/entry_points.txt +3 -0
- alysis_code-0.13.0.dist-info/licenses/LICENSE +176 -0
- alysis_code-0.13.0.dist-info/licenses/NOTICE +4 -0
|
@@ -0,0 +1,965 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from typing import Any
|
|
4
|
+
|
|
5
|
+
from .. import __version__
|
|
6
|
+
from ..host_actions import (
|
|
7
|
+
HOST_ACTION_MAX_ARGUMENT_BYTES,
|
|
8
|
+
HOST_ACTION_MAX_RESULT_BYTES,
|
|
9
|
+
HOST_ACTION_PROTOCOL_VERSION,
|
|
10
|
+
HOST_ACTIONS,
|
|
11
|
+
)
|
|
12
|
+
from ..surface.events import EVENT_REGISTRY
|
|
13
|
+
from .activity_events import activity_capabilities
|
|
14
|
+
from .context_blocks import context_capabilities
|
|
15
|
+
from .management_protocol import MANAGEMENT_FEATURES
|
|
16
|
+
from .protocol import PROTOCOL_VERSION
|
|
17
|
+
|
|
18
|
+
DEFAULT_APPROVAL_TIMEOUT_SECONDS = 300
|
|
19
|
+
|
|
20
|
+
SUPPORTED_METHODS = (
|
|
21
|
+
"initialize",
|
|
22
|
+
"health",
|
|
23
|
+
"getCapabilities",
|
|
24
|
+
"bridge.shutdown",
|
|
25
|
+
"session.create",
|
|
26
|
+
"chat.send",
|
|
27
|
+
"chat.queue.list",
|
|
28
|
+
"chat.queue.get",
|
|
29
|
+
"chat.queue.delete",
|
|
30
|
+
"checkpoint.list",
|
|
31
|
+
"checkpoint.diff",
|
|
32
|
+
"checkpoint.revert",
|
|
33
|
+
"checkpoint.redo",
|
|
34
|
+
"checkpoint.branch",
|
|
35
|
+
"session.tasks.get",
|
|
36
|
+
"session.tasks.replace",
|
|
37
|
+
"session.questions.create",
|
|
38
|
+
"session.questions.get",
|
|
39
|
+
"session.questions.list",
|
|
40
|
+
"session.questions.answer",
|
|
41
|
+
"session.questions.cancel",
|
|
42
|
+
"run.start",
|
|
43
|
+
"session.status",
|
|
44
|
+
"session.usage",
|
|
45
|
+
"session.history",
|
|
46
|
+
"session.search",
|
|
47
|
+
"session.context",
|
|
48
|
+
"session.compact",
|
|
49
|
+
"session.resume",
|
|
50
|
+
"session.images.list",
|
|
51
|
+
"session.images.add",
|
|
52
|
+
"session.images.clear",
|
|
53
|
+
"session.setMode",
|
|
54
|
+
"session.setModel",
|
|
55
|
+
"session.setStream",
|
|
56
|
+
"session.setActiveWorkdir",
|
|
57
|
+
"session.modelInfo",
|
|
58
|
+
"session.personas.list",
|
|
59
|
+
"session.persona.set",
|
|
60
|
+
"session.subagents.status",
|
|
61
|
+
"session.subagents.setEnabled",
|
|
62
|
+
"session.trace.status",
|
|
63
|
+
"session.trace.setLevel",
|
|
64
|
+
"session.trace.listEvents",
|
|
65
|
+
"session.trace.readArtifact",
|
|
66
|
+
"session.trace.clear",
|
|
67
|
+
"session.terminals.list",
|
|
68
|
+
"session.terminals.show",
|
|
69
|
+
"session.terminals.kill",
|
|
70
|
+
"session.terminals.clear",
|
|
71
|
+
"session.clear",
|
|
72
|
+
"session.cancel",
|
|
73
|
+
"approval.respond",
|
|
74
|
+
"host.action.respond",
|
|
75
|
+
"permission.rules.list",
|
|
76
|
+
"permission.rules.grant",
|
|
77
|
+
"permission.rules.revoke",
|
|
78
|
+
"permission.evaluate",
|
|
79
|
+
"permission.session.list",
|
|
80
|
+
"permission.session.revoke",
|
|
81
|
+
"code.review.start",
|
|
82
|
+
"code.review.result",
|
|
83
|
+
"job.status",
|
|
84
|
+
"session.list",
|
|
85
|
+
"session.getEvents",
|
|
86
|
+
"artifact.list",
|
|
87
|
+
"artifact.read",
|
|
88
|
+
"browser.start",
|
|
89
|
+
"browser.navigate",
|
|
90
|
+
"browser.snapshot",
|
|
91
|
+
"browser.screenshot",
|
|
92
|
+
"browser.artifact.read",
|
|
93
|
+
"browser.diagnostics",
|
|
94
|
+
"browser.click",
|
|
95
|
+
"browser.type",
|
|
96
|
+
"browser.status",
|
|
97
|
+
"browser.list",
|
|
98
|
+
"browser.close",
|
|
99
|
+
"forge.plan",
|
|
100
|
+
"forge.plan.start",
|
|
101
|
+
"forge.plan.result",
|
|
102
|
+
"forge.list",
|
|
103
|
+
"forge.open",
|
|
104
|
+
"forge.resume",
|
|
105
|
+
"forge.status",
|
|
106
|
+
"forge.attach",
|
|
107
|
+
"forge.show",
|
|
108
|
+
"forge.plan.getState",
|
|
109
|
+
"forge.plan.setAssistant",
|
|
110
|
+
"forge.plan.setGoal",
|
|
111
|
+
"forge.plan.updateTask",
|
|
112
|
+
"forge.plan.validate",
|
|
113
|
+
"forge.plan.regenerate",
|
|
114
|
+
"forge.plan.regenerate.start",
|
|
115
|
+
"forge.plan.regenerate.result",
|
|
116
|
+
"forge.review",
|
|
117
|
+
"forge.review.start",
|
|
118
|
+
"forge.review.result",
|
|
119
|
+
"forge.assets.list",
|
|
120
|
+
"forge.assets.show",
|
|
121
|
+
"forge.assets.add",
|
|
122
|
+
"forge.assets.delete",
|
|
123
|
+
"forge.assets.edit",
|
|
124
|
+
"forge.assets.refresh",
|
|
125
|
+
"forge.assets.cancelPending",
|
|
126
|
+
"forge.assets.checkPlan",
|
|
127
|
+
"forge.assets.pruneLegacy",
|
|
128
|
+
"forge.executePreview",
|
|
129
|
+
"forge.execute",
|
|
130
|
+
"forge.cancel",
|
|
131
|
+
"forge.swarm.start",
|
|
132
|
+
"forge.swarm.resume",
|
|
133
|
+
"forge.swarm.list",
|
|
134
|
+
"forge.swarm.status",
|
|
135
|
+
"forge.swarm.result",
|
|
136
|
+
"forge.swarm.cancel",
|
|
137
|
+
"forge.swarm.reconcile",
|
|
138
|
+
"forge.swarm.review",
|
|
139
|
+
"forge.swarm.apply",
|
|
140
|
+
"forge.swarm.discard",
|
|
141
|
+
"diff.list",
|
|
142
|
+
"diff.get",
|
|
143
|
+
"config.get",
|
|
144
|
+
"config.set",
|
|
145
|
+
"config.schema",
|
|
146
|
+
"config.validate",
|
|
147
|
+
"profile.list",
|
|
148
|
+
"profile.show",
|
|
149
|
+
"profile.add",
|
|
150
|
+
"profile.remove",
|
|
151
|
+
"profile.use",
|
|
152
|
+
"profile.rename",
|
|
153
|
+
"profile.presets",
|
|
154
|
+
"profile.preset",
|
|
155
|
+
"profile.convert",
|
|
156
|
+
"session.show",
|
|
157
|
+
"session.score",
|
|
158
|
+
"tools.catalog",
|
|
159
|
+
"tool.list",
|
|
160
|
+
"tool.info",
|
|
161
|
+
"tool.trust",
|
|
162
|
+
"tool.untrust",
|
|
163
|
+
"skill.list",
|
|
164
|
+
"skill.info",
|
|
165
|
+
"skill.init",
|
|
166
|
+
"skill.validate",
|
|
167
|
+
"skill.install",
|
|
168
|
+
"skill.enable",
|
|
169
|
+
"skill.disable",
|
|
170
|
+
"skill.remove",
|
|
171
|
+
"doctor.summary",
|
|
172
|
+
"doctor.providers",
|
|
173
|
+
"doctor.providers.live",
|
|
174
|
+
"doctor.bundle",
|
|
175
|
+
"sandbox.doctor",
|
|
176
|
+
"sandbox.setup",
|
|
177
|
+
"sandbox.pull",
|
|
178
|
+
"update.check",
|
|
179
|
+
"report.create",
|
|
180
|
+
"mcp.status",
|
|
181
|
+
"mcp.server.status",
|
|
182
|
+
"mcp.server.enable",
|
|
183
|
+
"mcp.server.disable",
|
|
184
|
+
"mcp.server.restart",
|
|
185
|
+
"mcp.prompts.list",
|
|
186
|
+
"mcp.prompts.get",
|
|
187
|
+
"mcp.auth.status",
|
|
188
|
+
"mcp.auth.login.start",
|
|
189
|
+
"mcp.auth.login.status",
|
|
190
|
+
"mcp.auth.login.cancel",
|
|
191
|
+
"mcp.auth.logout",
|
|
192
|
+
"hooks.list",
|
|
193
|
+
"hooks.doctor",
|
|
194
|
+
"hooks.trace",
|
|
195
|
+
"hooks.test",
|
|
196
|
+
"hooks.trust",
|
|
197
|
+
"hooks.untrust",
|
|
198
|
+
"hooks.init",
|
|
199
|
+
"hooks.effective",
|
|
200
|
+
"hooks.enable",
|
|
201
|
+
"hooks.disable",
|
|
202
|
+
"conventions.list",
|
|
203
|
+
"conventions.render",
|
|
204
|
+
"ext.search",
|
|
205
|
+
"ext.list",
|
|
206
|
+
"ext.info",
|
|
207
|
+
"ext.install",
|
|
208
|
+
"ext.uninstall",
|
|
209
|
+
"ext.enable",
|
|
210
|
+
"ext.disable",
|
|
211
|
+
)
|
|
212
|
+
|
|
213
|
+
SUPPORTED_MODES = ("readonly", "review", "auto")
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
def capabilities_payload() -> dict[str, Any]:
|
|
217
|
+
return {
|
|
218
|
+
"protocol_version": PROTOCOL_VERSION,
|
|
219
|
+
"methods": list(SUPPORTED_METHODS),
|
|
220
|
+
"events": sorted(EVENT_REGISTRY),
|
|
221
|
+
"modes": list(SUPPORTED_MODES),
|
|
222
|
+
"transport": "stdio-jsonl",
|
|
223
|
+
"features": {
|
|
224
|
+
"structured_surface_events": True,
|
|
225
|
+
"graceful_shutdown": {
|
|
226
|
+
"supported": True,
|
|
227
|
+
"method": "bridge.shutdown",
|
|
228
|
+
"closes_sessions": True,
|
|
229
|
+
"terminates_background_processes": True,
|
|
230
|
+
},
|
|
231
|
+
"semantic_activity": activity_capabilities(),
|
|
232
|
+
"typed_ide_context": context_capabilities(),
|
|
233
|
+
"host_actions": {
|
|
234
|
+
"supported": True,
|
|
235
|
+
"protocol_version": HOST_ACTION_PROTOCOL_VERSION,
|
|
236
|
+
"session_negotiated": True,
|
|
237
|
+
"workspace_trust_required": True,
|
|
238
|
+
"workspace_fenced": True,
|
|
239
|
+
"capability_fenced": True,
|
|
240
|
+
"request_event": "host_action_requested",
|
|
241
|
+
"cancellation_event": "host_action_cancelled",
|
|
242
|
+
"session_closed_event": "session_closed",
|
|
243
|
+
"response_method": "host.action.respond",
|
|
244
|
+
"actions": list(HOST_ACTIONS),
|
|
245
|
+
"max_argument_bytes": HOST_ACTION_MAX_ARGUMENT_BYTES,
|
|
246
|
+
"max_result_bytes": HOST_ACTION_MAX_RESULT_BYTES,
|
|
247
|
+
"late_responses_rejected": True,
|
|
248
|
+
"duplicate_responses_rejected": True,
|
|
249
|
+
},
|
|
250
|
+
"prompt_queue": {
|
|
251
|
+
"supported": True,
|
|
252
|
+
"durable": True,
|
|
253
|
+
"ordered_per_session": True,
|
|
254
|
+
"idempotency_keys": True,
|
|
255
|
+
"initial_run_workspace_scoped_idempotency": True,
|
|
256
|
+
"initial_run_payload_conflict_detection": True,
|
|
257
|
+
"initial_run_orphan_reconciliation": True,
|
|
258
|
+
"delete_pending": True,
|
|
259
|
+
"fenced_leases": True,
|
|
260
|
+
"restart_recovery": True,
|
|
261
|
+
"methods": [
|
|
262
|
+
"chat.queue.list",
|
|
263
|
+
"chat.queue.get",
|
|
264
|
+
"chat.queue.delete",
|
|
265
|
+
],
|
|
266
|
+
},
|
|
267
|
+
"checkpoints": {
|
|
268
|
+
"supported": True,
|
|
269
|
+
"external_storage": True,
|
|
270
|
+
"project_git_untouched": True,
|
|
271
|
+
"sensitive_files_excluded": True,
|
|
272
|
+
"optimistic_revert": True,
|
|
273
|
+
"redo": True,
|
|
274
|
+
"methods": [
|
|
275
|
+
"checkpoint.list",
|
|
276
|
+
"checkpoint.diff",
|
|
277
|
+
"checkpoint.revert",
|
|
278
|
+
"checkpoint.redo",
|
|
279
|
+
"checkpoint.branch",
|
|
280
|
+
],
|
|
281
|
+
},
|
|
282
|
+
"permission_policy": {
|
|
283
|
+
"supported": True,
|
|
284
|
+
"effects": ["allow", "ask", "deny"],
|
|
285
|
+
"ordered_rules": True,
|
|
286
|
+
"explainable_decisions": True,
|
|
287
|
+
"persistent_rules": True,
|
|
288
|
+
"session_exact_grants": True,
|
|
289
|
+
"list_and_revoke": True,
|
|
290
|
+
"sensitive_override_bypassable": False,
|
|
291
|
+
"external_directory_override_bypassable": False,
|
|
292
|
+
"command_patterns_redacted": True,
|
|
293
|
+
"methods": [
|
|
294
|
+
"permission.rules.list",
|
|
295
|
+
"permission.rules.grant",
|
|
296
|
+
"permission.rules.revoke",
|
|
297
|
+
"permission.evaluate",
|
|
298
|
+
"permission.session.list",
|
|
299
|
+
"permission.session.revoke",
|
|
300
|
+
],
|
|
301
|
+
},
|
|
302
|
+
"session_search": {
|
|
303
|
+
"supported": True,
|
|
304
|
+
"workspace_scoped": True,
|
|
305
|
+
"owner_scoped": True,
|
|
306
|
+
"bounded": True,
|
|
307
|
+
"redacted": True,
|
|
308
|
+
"attachable_context_type": "past_session",
|
|
309
|
+
"methods": ["session.search"],
|
|
310
|
+
},
|
|
311
|
+
"structured_state": {
|
|
312
|
+
"supported": True,
|
|
313
|
+
"durable": True,
|
|
314
|
+
"external_storage": True,
|
|
315
|
+
"workspace_and_session_scoped": True,
|
|
316
|
+
"task_revision_cas": True,
|
|
317
|
+
"one_active_task": True,
|
|
318
|
+
"question_idempotency": True,
|
|
319
|
+
"question_resolution_fenced": True,
|
|
320
|
+
"restart_recovery": True,
|
|
321
|
+
"methods": [
|
|
322
|
+
"session.tasks.get",
|
|
323
|
+
"session.tasks.replace",
|
|
324
|
+
"session.questions.create",
|
|
325
|
+
"session.questions.get",
|
|
326
|
+
"session.questions.list",
|
|
327
|
+
"session.questions.answer",
|
|
328
|
+
"session.questions.cancel",
|
|
329
|
+
],
|
|
330
|
+
},
|
|
331
|
+
"resumable_swarm": {
|
|
332
|
+
"supported": True,
|
|
333
|
+
"durable": True,
|
|
334
|
+
"external_storage": True,
|
|
335
|
+
"workspace_and_session_scoped": True,
|
|
336
|
+
"idempotent_start": True,
|
|
337
|
+
"explicit_resume": True,
|
|
338
|
+
"fresh_permission_fingerprint_required": True,
|
|
339
|
+
"fenced_worker_leases": True,
|
|
340
|
+
"restart_recovery": True,
|
|
341
|
+
"atomic_cancellation": True,
|
|
342
|
+
"exactly_once_usage_events": True,
|
|
343
|
+
"methods": [
|
|
344
|
+
"forge.swarm.start",
|
|
345
|
+
"forge.swarm.resume",
|
|
346
|
+
"forge.swarm.list",
|
|
347
|
+
"forge.swarm.status",
|
|
348
|
+
"forge.swarm.result",
|
|
349
|
+
"forge.swarm.cancel",
|
|
350
|
+
],
|
|
351
|
+
},
|
|
352
|
+
"managed_browser": {
|
|
353
|
+
"supported": True,
|
|
354
|
+
"owned_chromium_processes": True,
|
|
355
|
+
"loopback_cdp_only": True,
|
|
356
|
+
"private_profiles_outside_workspaces": True,
|
|
357
|
+
"guarded_navigation": True,
|
|
358
|
+
"redirect_and_subresource_interception": True,
|
|
359
|
+
"persistent_child_target_interception": True,
|
|
360
|
+
"validating_egress_proxy": True,
|
|
361
|
+
"dns_resolution_pinned_to_numeric_connect": True,
|
|
362
|
+
"no_direct_network_fallback": True,
|
|
363
|
+
"loopback_proxy_bypass_removed": True,
|
|
364
|
+
"non_proxied_udp_disabled": True,
|
|
365
|
+
"public_destinations_by_default": True,
|
|
366
|
+
"local_destinations_require_confirmation": True,
|
|
367
|
+
"direct_loopback_scope": True,
|
|
368
|
+
"direct_loopback_scope_agent_isolated": True,
|
|
369
|
+
"direct_loopback_scope_denies_lan_and_link_local": True,
|
|
370
|
+
"bounded_snapshots": True,
|
|
371
|
+
"chunked_screenshot_artifacts": True,
|
|
372
|
+
"bounded_diagnostics": True,
|
|
373
|
+
"session_cleanup": True,
|
|
374
|
+
"methods": [
|
|
375
|
+
"browser.start",
|
|
376
|
+
"browser.navigate",
|
|
377
|
+
"browser.snapshot",
|
|
378
|
+
"browser.screenshot",
|
|
379
|
+
"browser.artifact.read",
|
|
380
|
+
"browser.diagnostics",
|
|
381
|
+
"browser.click",
|
|
382
|
+
"browser.type",
|
|
383
|
+
"browser.status",
|
|
384
|
+
"browser.list",
|
|
385
|
+
"browser.close",
|
|
386
|
+
],
|
|
387
|
+
},
|
|
388
|
+
"live_mcp_lifecycle": {
|
|
389
|
+
"supported": True,
|
|
390
|
+
"session_owned_manager": True,
|
|
391
|
+
"workspace_bound": True,
|
|
392
|
+
"server_bound": True,
|
|
393
|
+
"single_client_lease_per_server": True,
|
|
394
|
+
"status_materializes_connection": False,
|
|
395
|
+
"status_checks_stdio_process_liveness": True,
|
|
396
|
+
"mutations_require_workspace_trust": True,
|
|
397
|
+
"mutations_require_idle_session": True,
|
|
398
|
+
"disable_fail_closed": True,
|
|
399
|
+
"reconnect_catalog_fenced": True,
|
|
400
|
+
"reconnect_atomic": True,
|
|
401
|
+
"server_diagnostics_in_protocol": False,
|
|
402
|
+
"session_cleanup": True,
|
|
403
|
+
"methods": [
|
|
404
|
+
"mcp.server.status",
|
|
405
|
+
"mcp.server.enable",
|
|
406
|
+
"mcp.server.disable",
|
|
407
|
+
"mcp.server.restart",
|
|
408
|
+
],
|
|
409
|
+
},
|
|
410
|
+
"code_review": {
|
|
411
|
+
"supported": True,
|
|
412
|
+
"asynchronous": True,
|
|
413
|
+
"scopes": ["working_tree", "branch", "commit", "range"],
|
|
414
|
+
"structured_findings": True,
|
|
415
|
+
"bounded": True,
|
|
416
|
+
"sensitive_files_excluded": True,
|
|
417
|
+
"methods": ["code.review.start", "code.review.result"],
|
|
418
|
+
},
|
|
419
|
+
"terminal_output_scraping": False,
|
|
420
|
+
"workspace_fail_closed": True,
|
|
421
|
+
"secret_redaction": True,
|
|
422
|
+
"artifacts": True,
|
|
423
|
+
"run_chat_options": {
|
|
424
|
+
"temperature": True,
|
|
425
|
+
"stream": True,
|
|
426
|
+
"verify_commands": True,
|
|
427
|
+
"image_paths": True,
|
|
428
|
+
"image_binary_jsonl": False,
|
|
429
|
+
"model_override": True,
|
|
430
|
+
"base_url_override": True,
|
|
431
|
+
"max_steps": True,
|
|
432
|
+
"no_log": True,
|
|
433
|
+
"yes": True,
|
|
434
|
+
"subagents_enabled_config_default": True,
|
|
435
|
+
"active_workdir": True,
|
|
436
|
+
"terminal_output_scraping": False,
|
|
437
|
+
"session_methods": [
|
|
438
|
+
"session.status",
|
|
439
|
+
"session.usage",
|
|
440
|
+
"session.history",
|
|
441
|
+
"session.context",
|
|
442
|
+
"session.compact",
|
|
443
|
+
"session.resume",
|
|
444
|
+
"session.images.list",
|
|
445
|
+
"session.images.add",
|
|
446
|
+
"session.images.clear",
|
|
447
|
+
"session.setMode",
|
|
448
|
+
"session.setModel",
|
|
449
|
+
"session.setStream",
|
|
450
|
+
"session.setActiveWorkdir",
|
|
451
|
+
"session.modelInfo",
|
|
452
|
+
"session.subagents.status",
|
|
453
|
+
"session.subagents.setEnabled",
|
|
454
|
+
"session.trace.status",
|
|
455
|
+
"session.trace.setLevel",
|
|
456
|
+
"session.trace.listEvents",
|
|
457
|
+
"session.trace.readArtifact",
|
|
458
|
+
"session.trace.clear",
|
|
459
|
+
"session.terminals.list",
|
|
460
|
+
"session.terminals.show",
|
|
461
|
+
"session.terminals.kill",
|
|
462
|
+
"session.terminals.clear",
|
|
463
|
+
"session.clear",
|
|
464
|
+
],
|
|
465
|
+
"session_method_capabilities": {
|
|
466
|
+
"session.modelInfo": {
|
|
467
|
+
"supported": True,
|
|
468
|
+
"provider_metadata": True,
|
|
469
|
+
"redacted_base_url": True,
|
|
470
|
+
"secret_values_included": False,
|
|
471
|
+
"source_values": [
|
|
472
|
+
"provider_reported",
|
|
473
|
+
"config",
|
|
474
|
+
"registry",
|
|
475
|
+
"unknown",
|
|
476
|
+
],
|
|
477
|
+
},
|
|
478
|
+
"session.subagents": {
|
|
479
|
+
"supported": True,
|
|
480
|
+
"status_method": "session.subagents.status",
|
|
481
|
+
"set_enabled_method": "session.subagents.setEnabled",
|
|
482
|
+
"status_toggle_only": True,
|
|
483
|
+
"explicit_execution_supported": False,
|
|
484
|
+
"trust_required_for_toggle": True,
|
|
485
|
+
"lifecycle_event": "subagent_state_changed",
|
|
486
|
+
"execution_lifecycle": "in_turn_parent_owned",
|
|
487
|
+
"cancellation": "parent_job",
|
|
488
|
+
"independently_resumable": False,
|
|
489
|
+
"approvals": "host_managed_parent_session",
|
|
490
|
+
"background_worker_surface": "forge.swarm",
|
|
491
|
+
"forge_execute_subagents_supported": False,
|
|
492
|
+
},
|
|
493
|
+
"session.trace": {
|
|
494
|
+
"supported": True,
|
|
495
|
+
"methods": [
|
|
496
|
+
"session.trace.status",
|
|
497
|
+
"session.trace.setLevel",
|
|
498
|
+
"session.trace.listEvents",
|
|
499
|
+
"session.trace.readArtifact",
|
|
500
|
+
"session.trace.clear",
|
|
501
|
+
],
|
|
502
|
+
"levels": ["off", "compact", "full"],
|
|
503
|
+
"full_trace_requires_confirmation": True,
|
|
504
|
+
"clear_mutates": True,
|
|
505
|
+
"clear_trust_required": False,
|
|
506
|
+
"replay_preserved_after_clear": True,
|
|
507
|
+
"redacted": True,
|
|
508
|
+
"secret_values_included": False,
|
|
509
|
+
"bounded": True,
|
|
510
|
+
"raw_provider_headers_included": False,
|
|
511
|
+
"environment_variables_included": False,
|
|
512
|
+
"source": "structured_protocol_events_and_scoped_artifacts",
|
|
513
|
+
},
|
|
514
|
+
"session.terminals": {
|
|
515
|
+
"supported": True,
|
|
516
|
+
"methods": [
|
|
517
|
+
"session.terminals.list",
|
|
518
|
+
"session.terminals.show",
|
|
519
|
+
"session.terminals.kill",
|
|
520
|
+
"session.terminals.clear",
|
|
521
|
+
],
|
|
522
|
+
"manager_required": True,
|
|
523
|
+
"unavailable_result_when_no_manager": True,
|
|
524
|
+
"arbitrary_shell_execution": False,
|
|
525
|
+
"interactive_pty_streaming": False,
|
|
526
|
+
"redacted": True,
|
|
527
|
+
"secret_values_included": False,
|
|
528
|
+
"bounded_output": True,
|
|
529
|
+
"kill_trust_required": True,
|
|
530
|
+
"clear_trust_required": True,
|
|
531
|
+
"mutation_confirmation_required": True,
|
|
532
|
+
},
|
|
533
|
+
"session.history": {
|
|
534
|
+
"supported": True,
|
|
535
|
+
"redacted": True,
|
|
536
|
+
"secret_values_included": False,
|
|
537
|
+
"bounded_results": True,
|
|
538
|
+
"default_max_results": 50,
|
|
539
|
+
"max_results_upper_bound": 500,
|
|
540
|
+
"default_max_text_chars": 500,
|
|
541
|
+
"max_text_chars_upper_bound": 4000,
|
|
542
|
+
},
|
|
543
|
+
"session.context": {
|
|
544
|
+
"supported": True,
|
|
545
|
+
"token_accounting": "tokenizer_estimate",
|
|
546
|
+
"token_accounting_approximate": True,
|
|
547
|
+
"message_count_supported": True,
|
|
548
|
+
"source": "live_session_tokenizer_estimate",
|
|
549
|
+
"source_values": [
|
|
550
|
+
"provider_reported",
|
|
551
|
+
"tokenizer_estimate",
|
|
552
|
+
"approximate",
|
|
553
|
+
"unavailable",
|
|
554
|
+
],
|
|
555
|
+
},
|
|
556
|
+
"session.compact": {
|
|
557
|
+
"supported": True,
|
|
558
|
+
"real_compaction_supported": True,
|
|
559
|
+
"mutates_context": True,
|
|
560
|
+
"token_accounting": "tokenizer_estimate",
|
|
561
|
+
"token_accounting_approximate": True,
|
|
562
|
+
"behavior": "uses_live_cli_conversation_compactor_when_enabled_for_session",
|
|
563
|
+
},
|
|
564
|
+
"session.resume": {
|
|
565
|
+
"supported": True,
|
|
566
|
+
"model_context_replay_supported": True,
|
|
567
|
+
"retained_history_metadata_supported": True,
|
|
568
|
+
"bounded_replay": True,
|
|
569
|
+
"redacts_replayed_messages": True,
|
|
570
|
+
"behavior": "bounded_retained_session_log_replay_into_live_session",
|
|
571
|
+
},
|
|
572
|
+
"session.images": {
|
|
573
|
+
"supported": True,
|
|
574
|
+
"methods": [
|
|
575
|
+
"session.images.list",
|
|
576
|
+
"session.images.add",
|
|
577
|
+
"session.images.clear",
|
|
578
|
+
],
|
|
579
|
+
"workspace_scoped_paths": True,
|
|
580
|
+
"rejects_symlinks": True,
|
|
581
|
+
"binary_jsonl": False,
|
|
582
|
+
"paste_image": {
|
|
583
|
+
"supported": True,
|
|
584
|
+
"clipboard_binary_jsonl": False,
|
|
585
|
+
"vscode_file_picker_fallback": True,
|
|
586
|
+
"stores_workspace_scoped_paths": True,
|
|
587
|
+
},
|
|
588
|
+
"clears_after_successful_turn": True,
|
|
589
|
+
"retained_on_failed_turn": True,
|
|
590
|
+
},
|
|
591
|
+
},
|
|
592
|
+
},
|
|
593
|
+
"forge": {
|
|
594
|
+
"plan": {
|
|
595
|
+
"supported": True,
|
|
596
|
+
"schema": "ide_forge_plan_v1",
|
|
597
|
+
"async": True,
|
|
598
|
+
"start_method": "forge.plan.start",
|
|
599
|
+
"result_method": "forge.plan.result",
|
|
600
|
+
"compat_method": "forge.plan",
|
|
601
|
+
"durable_acceptance": True,
|
|
602
|
+
"external_private_storage": True,
|
|
603
|
+
"idempotency_key_supported": True,
|
|
604
|
+
"idempotency_key_and_payload_hashed": True,
|
|
605
|
+
"payload_conflict_detection": True,
|
|
606
|
+
"acknowledgement_after_durable_acceptance": True,
|
|
607
|
+
"stable_job_id_across_bridge_restart": True,
|
|
608
|
+
"job_status_restart_recovery": True,
|
|
609
|
+
"result_restart_recovery": True,
|
|
610
|
+
"fenced_worker_leases": True,
|
|
611
|
+
"worker_heartbeat": True,
|
|
612
|
+
"expired_running_lease": "indeterminate_no_automatic_reexecution",
|
|
613
|
+
"legacy_sync_exactly_once": False,
|
|
614
|
+
"terminal_output_scraping": False,
|
|
615
|
+
"planner": "forge_planner",
|
|
616
|
+
"shallow_fallback": False,
|
|
617
|
+
},
|
|
618
|
+
"list": {"supported": True, "durable": True},
|
|
619
|
+
"open": {"supported": True, "durable": True},
|
|
620
|
+
"resume": {"supported": True, "alias": "forge.open"},
|
|
621
|
+
"status": {"supported": True},
|
|
622
|
+
"attach": {
|
|
623
|
+
"supported": True,
|
|
624
|
+
"method": "forge.attach",
|
|
625
|
+
"mutates": True,
|
|
626
|
+
"trust_required": True,
|
|
627
|
+
"path_scoped": True,
|
|
628
|
+
"terminal_output_scraping": False,
|
|
629
|
+
},
|
|
630
|
+
"show": {
|
|
631
|
+
"supported": True,
|
|
632
|
+
"method": "forge.show",
|
|
633
|
+
"mutates": False,
|
|
634
|
+
"trust_required": False,
|
|
635
|
+
},
|
|
636
|
+
"plan_editing": {
|
|
637
|
+
"supported": True,
|
|
638
|
+
"methods": {
|
|
639
|
+
"forge.plan.getState": {
|
|
640
|
+
"supported": True,
|
|
641
|
+
"mutates": False,
|
|
642
|
+
"trust_required": False,
|
|
643
|
+
},
|
|
644
|
+
"forge.plan.setAssistant": {
|
|
645
|
+
"supported": True,
|
|
646
|
+
"mutates": True,
|
|
647
|
+
"trust_required": True,
|
|
648
|
+
"optimistic_revision": True,
|
|
649
|
+
},
|
|
650
|
+
"forge.plan.setGoal": {
|
|
651
|
+
"supported": True,
|
|
652
|
+
"mutates": True,
|
|
653
|
+
"trust_required": True,
|
|
654
|
+
"optimistic_revision": True,
|
|
655
|
+
},
|
|
656
|
+
"forge.plan.updateTask": {
|
|
657
|
+
"supported": True,
|
|
658
|
+
"mutates": True,
|
|
659
|
+
"trust_required": True,
|
|
660
|
+
"optimistic_revision": True,
|
|
661
|
+
"mutable_fields": ["title", "body", "status"],
|
|
662
|
+
},
|
|
663
|
+
"forge.plan.validate": {
|
|
664
|
+
"supported": True,
|
|
665
|
+
"mutates": False,
|
|
666
|
+
"trust_required": False,
|
|
667
|
+
},
|
|
668
|
+
"forge.plan.regenerate": {
|
|
669
|
+
"supported": True,
|
|
670
|
+
"mutates": True,
|
|
671
|
+
"trust_required": True,
|
|
672
|
+
"optimistic_revision": True,
|
|
673
|
+
"terminal_output_scraping": False,
|
|
674
|
+
"unsafe_execution_exposed": False,
|
|
675
|
+
"async": True,
|
|
676
|
+
"start_method": "forge.plan.regenerate.start",
|
|
677
|
+
"result_method": "forge.plan.regenerate.result",
|
|
678
|
+
"compat_method": "forge.plan.regenerate",
|
|
679
|
+
"cancellation": "cooperative_checkpoint_cancellation",
|
|
680
|
+
"conflict_detection": "optimistic_revision_commit_check",
|
|
681
|
+
"lock_free_planner": True,
|
|
682
|
+
},
|
|
683
|
+
},
|
|
684
|
+
"terminal_output_scraping": False,
|
|
685
|
+
"unsafe_execution_exposed": False,
|
|
686
|
+
},
|
|
687
|
+
"review": {
|
|
688
|
+
"supported": True,
|
|
689
|
+
"method": "forge.review",
|
|
690
|
+
"mutates": True,
|
|
691
|
+
"trust_required": True,
|
|
692
|
+
"inline_secrets_in_params": False,
|
|
693
|
+
"terminal_prompts": False,
|
|
694
|
+
"async": True,
|
|
695
|
+
"start_method": "forge.review.start",
|
|
696
|
+
"result_method": "forge.review.result",
|
|
697
|
+
"compat_method": "forge.review",
|
|
698
|
+
"cancellation": "cooperative_checkpoint_cancellation",
|
|
699
|
+
"cancellation_granularity": "before_and_after_provider_call",
|
|
700
|
+
},
|
|
701
|
+
"assets": {
|
|
702
|
+
"supported": True,
|
|
703
|
+
"path_scoped": True,
|
|
704
|
+
"rejects_symlinks": True,
|
|
705
|
+
"max_source_bytes": 26214400,
|
|
706
|
+
"methods": {
|
|
707
|
+
"forge.assets.list": {
|
|
708
|
+
"supported": True,
|
|
709
|
+
"mutates": False,
|
|
710
|
+
"trust_required": False,
|
|
711
|
+
},
|
|
712
|
+
"forge.assets.show": {
|
|
713
|
+
"supported": True,
|
|
714
|
+
"mutates": False,
|
|
715
|
+
"trust_required": False,
|
|
716
|
+
},
|
|
717
|
+
"forge.assets.add": {
|
|
718
|
+
"supported": True,
|
|
719
|
+
"mutates": True,
|
|
720
|
+
"trust_required": True,
|
|
721
|
+
},
|
|
722
|
+
"forge.assets.delete": {
|
|
723
|
+
"supported": True,
|
|
724
|
+
"mutates": True,
|
|
725
|
+
"trust_required": True,
|
|
726
|
+
"confirmation_required": True,
|
|
727
|
+
},
|
|
728
|
+
"forge.assets.edit": {
|
|
729
|
+
"supported": True,
|
|
730
|
+
"mutates": True,
|
|
731
|
+
"trust_required": True,
|
|
732
|
+
},
|
|
733
|
+
"forge.assets.refresh": {
|
|
734
|
+
"supported": True,
|
|
735
|
+
"mutates": True,
|
|
736
|
+
"trust_required": True,
|
|
737
|
+
"async_background": False,
|
|
738
|
+
},
|
|
739
|
+
"forge.assets.cancelPending": {
|
|
740
|
+
"supported": True,
|
|
741
|
+
"mutates": False,
|
|
742
|
+
"trust_required": False,
|
|
743
|
+
},
|
|
744
|
+
"forge.assets.checkPlan": {
|
|
745
|
+
"supported": True,
|
|
746
|
+
"mutates": False,
|
|
747
|
+
"trust_required": False,
|
|
748
|
+
},
|
|
749
|
+
"forge.assets.pruneLegacy": {
|
|
750
|
+
"supported": True,
|
|
751
|
+
"mutates": True,
|
|
752
|
+
"trust_required": True,
|
|
753
|
+
"confirmation_required": True,
|
|
754
|
+
},
|
|
755
|
+
},
|
|
756
|
+
},
|
|
757
|
+
"execute_preview": {
|
|
758
|
+
"supported": True,
|
|
759
|
+
"method": "forge.executePreview",
|
|
760
|
+
"dry_run_method": "forge.execute",
|
|
761
|
+
"mutates": False,
|
|
762
|
+
"runs_tools": False,
|
|
763
|
+
"runs_shell_commands": False,
|
|
764
|
+
"starts_workers": False,
|
|
765
|
+
},
|
|
766
|
+
"execute": {
|
|
767
|
+
"supported": True,
|
|
768
|
+
"supported_modes": ["review"],
|
|
769
|
+
"selected_task_ids_required": True,
|
|
770
|
+
"job_based": True,
|
|
771
|
+
"approval_gated": True,
|
|
772
|
+
"workspace_trust_required": True,
|
|
773
|
+
"sandbox_required": True,
|
|
774
|
+
"dry_run_supported": True,
|
|
775
|
+
"preview_method": "forge.executePreview",
|
|
776
|
+
"behavior": "review_mode_only",
|
|
777
|
+
"max_steps_param": True,
|
|
778
|
+
"no_log_param": True,
|
|
779
|
+
"subagents_supported": False,
|
|
780
|
+
"job_status_model": "data_outcome_completed_with_result",
|
|
781
|
+
"subagents_policy": "disabled_for_ide_forge_execute_v1",
|
|
782
|
+
"subagents_rationale": (
|
|
783
|
+
"IDE Forge Execute keeps subagents disabled until worker lifecycle, "
|
|
784
|
+
"sandbox, approval, and cancellation semantics are strong enough."
|
|
785
|
+
),
|
|
786
|
+
"auto_mode": "unsupported_fail_closed",
|
|
787
|
+
"unsafe_modes": {
|
|
788
|
+
"supported": False,
|
|
789
|
+
"blocked_until_security_model": ["auto", "fullaccess"],
|
|
790
|
+
"experimental_flags": {
|
|
791
|
+
"auto": False,
|
|
792
|
+
"fullaccess": False,
|
|
793
|
+
"forge.swarm": False,
|
|
794
|
+
},
|
|
795
|
+
"enable_by_default": False,
|
|
796
|
+
"required_before_reassessment": [
|
|
797
|
+
"real_active_runtime_cancellation",
|
|
798
|
+
"worker_lifecycle_ownership",
|
|
799
|
+
"sandbox_guarantees",
|
|
800
|
+
"approval_ux_for_broad_mutation",
|
|
801
|
+
],
|
|
802
|
+
"reason": (
|
|
803
|
+
"Auto/fullaccess execution remains blocked because IDE v1 lacks "
|
|
804
|
+
"strong enough cancellation, worker lifecycle, sandbox, and approval "
|
|
805
|
+
"guarantees for broad mutation."
|
|
806
|
+
),
|
|
807
|
+
},
|
|
808
|
+
"cancellation": "cooperative_checkpoint_cancellation",
|
|
809
|
+
"active_cancellation_supported": True,
|
|
810
|
+
},
|
|
811
|
+
"cancel": {
|
|
812
|
+
"supported": True,
|
|
813
|
+
"callable": True,
|
|
814
|
+
"behavior": "cooperative_checkpoint_cancellation",
|
|
815
|
+
"covered_job_kinds": [
|
|
816
|
+
"forge_plan",
|
|
817
|
+
"forge_plan_regenerate",
|
|
818
|
+
"forge_review",
|
|
819
|
+
"forge_execute",
|
|
820
|
+
"forge_swarm",
|
|
821
|
+
],
|
|
822
|
+
"lifecycle_states": [
|
|
823
|
+
"queued",
|
|
824
|
+
"running",
|
|
825
|
+
"cancellation_requested",
|
|
826
|
+
"cancelled",
|
|
827
|
+
"completed",
|
|
828
|
+
"failed",
|
|
829
|
+
],
|
|
830
|
+
"unsupported_lifecycle_states": [],
|
|
831
|
+
"interrupt_kind": "cooperative",
|
|
832
|
+
"checks_between_steps": True,
|
|
833
|
+
"hard_interrupt": False,
|
|
834
|
+
"must_not_mark_cancelled_without_interrupt": False,
|
|
835
|
+
},
|
|
836
|
+
"swarm": {
|
|
837
|
+
"supported": True,
|
|
838
|
+
"async": True,
|
|
839
|
+
"job_based": True,
|
|
840
|
+
"start_method": "forge.swarm.start",
|
|
841
|
+
"status_method": "forge.swarm.status",
|
|
842
|
+
"result_method": "forge.swarm.result",
|
|
843
|
+
"cancel_method": "forge.swarm.cancel",
|
|
844
|
+
"reconcile_method": "forge.swarm.reconcile",
|
|
845
|
+
"workspace_trust_required": True,
|
|
846
|
+
"parallel_max": 8,
|
|
847
|
+
"cancellation": "cooperative_checkpoint_cancellation",
|
|
848
|
+
"interrupted_task_status": "interrupted",
|
|
849
|
+
"interrupted_worktrees_preserved": True,
|
|
850
|
+
"disjoint_write_scopes": "guaranteed_by_scheduler_invariant",
|
|
851
|
+
"write_scope_guard": "swarm_layer_tool_dispatch_guard",
|
|
852
|
+
"approvals": {
|
|
853
|
+
"yes_auto_approval": False,
|
|
854
|
+
"routing": "host_managed_per_session_with_task_attribution",
|
|
855
|
+
"timeout_behavior": "task_stays_paused_never_auto_denied",
|
|
856
|
+
"siblings_continue_while_paused": True,
|
|
857
|
+
"pending_event_state": "approval_pending",
|
|
858
|
+
},
|
|
859
|
+
"approval_scope_grants": {
|
|
860
|
+
"supported": True,
|
|
861
|
+
"shape": "array_of_kind_scope_objects",
|
|
862
|
+
"semantics": "recorded_as_allow_for_session_scopes_at_launch",
|
|
863
|
+
"max_entries": 32,
|
|
864
|
+
},
|
|
865
|
+
"task_event_states": [
|
|
866
|
+
"scheduled",
|
|
867
|
+
"started",
|
|
868
|
+
"progress",
|
|
869
|
+
"approval_pending",
|
|
870
|
+
"interrupted",
|
|
871
|
+
"failed",
|
|
872
|
+
"merged",
|
|
873
|
+
],
|
|
874
|
+
"task_event_type": "swarm_worker_state_changed",
|
|
875
|
+
"reconcile": {
|
|
876
|
+
"read_only_report": True,
|
|
877
|
+
"actions": ["report", "harvest", "discard"],
|
|
878
|
+
"harvest_trust_required": True,
|
|
879
|
+
"discard_trust_required": True,
|
|
880
|
+
"discard_confirmation_required": True,
|
|
881
|
+
"idempotent": True,
|
|
882
|
+
},
|
|
883
|
+
"merge_behavior": "review_only_per_task_apply_discard",
|
|
884
|
+
"review": {
|
|
885
|
+
"list_method": "forge.swarm.review",
|
|
886
|
+
"apply_method": "forge.swarm.apply",
|
|
887
|
+
"discard_method": "forge.swarm.discard",
|
|
888
|
+
"working_tree_touched_only_on_apply": True,
|
|
889
|
+
"never_commits": True,
|
|
890
|
+
"untracked_files_surfaced": True,
|
|
891
|
+
"apply_trust_required": True,
|
|
892
|
+
"discard_trust_required": True,
|
|
893
|
+
"discard_confirmation_required": True,
|
|
894
|
+
"failure_recovery_offer": "regenerate_subtree_via_forge.plan.regenerate.start",
|
|
895
|
+
},
|
|
896
|
+
},
|
|
897
|
+
},
|
|
898
|
+
"diffs": {
|
|
899
|
+
"supported": True,
|
|
900
|
+
"opaque_ids": True,
|
|
901
|
+
"arbitrary_file_reads": False,
|
|
902
|
+
"default_max_bytes": 65536,
|
|
903
|
+
"max_bytes": 1048576,
|
|
904
|
+
"redaction": "protocol_preview",
|
|
905
|
+
},
|
|
906
|
+
"cancellation": {
|
|
907
|
+
"idle_sessions": True,
|
|
908
|
+
"active_jobs": True,
|
|
909
|
+
"close_when_idle": True,
|
|
910
|
+
"close_when_idle_cancels_queued_prompts": True,
|
|
911
|
+
"close_when_idle_releases_owned_resources": True,
|
|
912
|
+
"behavior": "cooperative_checkpoint_cancellation",
|
|
913
|
+
"lifecycle_states": [
|
|
914
|
+
"queued",
|
|
915
|
+
"running",
|
|
916
|
+
"cancellation_requested",
|
|
917
|
+
"cancelled",
|
|
918
|
+
"completed",
|
|
919
|
+
"failed",
|
|
920
|
+
],
|
|
921
|
+
"unsupported_lifecycle_states": [],
|
|
922
|
+
"interrupt_kind": "cooperative",
|
|
923
|
+
"checks_between_steps": True,
|
|
924
|
+
"hard_interrupt": False,
|
|
925
|
+
"stale_active_jobs_reconciled": True,
|
|
926
|
+
},
|
|
927
|
+
"management": MANAGEMENT_FEATURES,
|
|
928
|
+
"approvals": {
|
|
929
|
+
"round_trip": True,
|
|
930
|
+
"default_deny": True,
|
|
931
|
+
"session_scoped_allow": True,
|
|
932
|
+
"supported_kinds_for_session_allow": [
|
|
933
|
+
"shell_run",
|
|
934
|
+
"shell_background",
|
|
935
|
+
"custom_tool_run",
|
|
936
|
+
"mcp_tool_run",
|
|
937
|
+
"fs_write",
|
|
938
|
+
"fs_edit",
|
|
939
|
+
"fs_move",
|
|
940
|
+
"fs_copy",
|
|
941
|
+
"fs_delete",
|
|
942
|
+
"fs_mkdir",
|
|
943
|
+
"git_apply_patch",
|
|
944
|
+
"verify_run",
|
|
945
|
+
],
|
|
946
|
+
"timeout_seconds_default": DEFAULT_APPROVAL_TIMEOUT_SECONDS,
|
|
947
|
+
},
|
|
948
|
+
"event_replay": {
|
|
949
|
+
"bounded": True,
|
|
950
|
+
"default_retained_events": 1000,
|
|
951
|
+
"max_response_events": 500,
|
|
952
|
+
"preserved_across_trace_clear": True,
|
|
953
|
+
},
|
|
954
|
+
},
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
|
|
958
|
+
def health_payload() -> dict[str, Any]:
|
|
959
|
+
return {
|
|
960
|
+
"ok": True,
|
|
961
|
+
"name": "alysis-ide-bridge",
|
|
962
|
+
"alysis_version": __version__,
|
|
963
|
+
"protocol_version": PROTOCOL_VERSION,
|
|
964
|
+
"capabilities": capabilities_payload(),
|
|
965
|
+
}
|