iac-code 0.13.1__tar.gz → 0.14.0__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.
- {iac_code-0.13.1 → iac_code-0.14.0}/PKG-INFO +2 -1
- {iac_code-0.13.1 → iac_code-0.14.0}/pyproject.toml +9 -0
- iac_code-0.14.0/src/iac_code/__init__.py +2 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/app.py +45 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/backup.py +2 -1
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/client.py +136 -4
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/events.py +137 -53
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/executor.py +776 -88
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/input_required.py +396 -29
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/pipeline_events.py +19 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/pipeline_executor.py +299 -40
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/pipeline_stream.py +210 -35
- iac_code-0.14.0/src/iac_code/a2a/request_mode.py +28 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/task_store.py +37 -6
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/transports/dispatcher.py +164 -5
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/agent/agent_loop.py +597 -7
- iac_code-0.14.0/src/iac_code/agui/__init__.py +1 -0
- iac_code-0.14.0/src/iac_code/agui/adapter.py +1439 -0
- iac_code-0.14.0/src/iac_code/agui/app.py +341 -0
- iac_code-0.14.0/src/iac_code/agui/errors.py +111 -0
- iac_code-0.14.0/src/iac_code/agui/events.py +933 -0
- iac_code-0.14.0/src/iac_code/agui/inputs.py +190 -0
- iac_code-0.14.0/src/iac_code/agui/process.py +94 -0
- iac_code-0.14.0/src/iac_code/agui/server.py +84 -0
- iac_code-0.14.0/src/iac_code/agui/state.py +131 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/cli/main.py +119 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/config.py +3 -3
- iac_code-0.14.0/src/iac_code/i18n/locales/de/LC_MESSAGES/messages.mo +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/locales/de/LC_MESSAGES/messages.po +347 -3
- iac_code-0.14.0/src/iac_code/i18n/locales/es/LC_MESSAGES/messages.mo +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/locales/es/LC_MESSAGES/messages.po +349 -3
- iac_code-0.14.0/src/iac_code/i18n/locales/fr/LC_MESSAGES/messages.mo +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/locales/fr/LC_MESSAGES/messages.po +347 -3
- iac_code-0.14.0/src/iac_code/i18n/locales/ja/LC_MESSAGES/messages.mo +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/locales/ja/LC_MESSAGES/messages.po +341 -3
- iac_code-0.14.0/src/iac_code/i18n/locales/pt/LC_MESSAGES/messages.mo +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/locales/pt/LC_MESSAGES/messages.po +347 -3
- iac_code-0.14.0/src/iac_code/i18n/locales/zh/LC_MESSAGES/messages.mo +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/locales/zh/LC_MESSAGES/messages.po +341 -3
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/mcp/manager.py +18 -4
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/mcp/oauth.py +6 -5
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/mcp/storage.py +3 -7
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/mcp/types.py +17 -4
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/pipeline_runner.py +117 -2
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/step_executor.py +4 -1
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/tools/ros_deploy_tool.py +4 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/dashscope_provider.py +13 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/manager.py +21 -3
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/registry.py +19 -2
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/thinking.py +44 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/zhipu_provider.py +1 -1
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/agent_factory.py +1 -1
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/context_manager.py +13 -0
- iac_code-0.14.0/src/iac_code/services/permission_wait.py +1280 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/permissions/pipeline.py +30 -8
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/session_layout.py +8 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/session_storage.py +1 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/telemetry/constants.py +10 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/aliyun_api.py +11 -2
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/types/stream_events.py +27 -1
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/state_io.py +37 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/app.py +161 -10
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/permissions.py +2 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/pipeline_actions.py +92 -15
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/runtime.py +217 -35
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/session_manager.py +394 -4
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code.egg-info/PKG-INFO +2 -1
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code.egg-info/SOURCES.txt +11 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code.egg-info/requires.txt +6 -0
- iac_code-0.13.1/src/iac_code/__init__.py +0 -2
- iac_code-0.13.1/src/iac_code/i18n/locales/de/LC_MESSAGES/messages.mo +0 -0
- iac_code-0.13.1/src/iac_code/i18n/locales/es/LC_MESSAGES/messages.mo +0 -0
- iac_code-0.13.1/src/iac_code/i18n/locales/fr/LC_MESSAGES/messages.mo +0 -0
- iac_code-0.13.1/src/iac_code/i18n/locales/ja/LC_MESSAGES/messages.mo +0 -0
- iac_code-0.13.1/src/iac_code/i18n/locales/pt/LC_MESSAGES/messages.mo +0 -0
- iac_code-0.13.1/src/iac_code/i18n/locales/zh/LC_MESSAGES/messages.mo +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/LICENSE +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/MANIFEST.in +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/README.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/setup.cfg +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/setup.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/agent_card.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/artifacts.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/exposure.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/jsonrpc_passthrough.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/metadata_redaction.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/metrics.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/parts.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/persistence.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/pipeline_delta_coalescing.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/pipeline_flow_monitor.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/pipeline_journal.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/pipeline_outbound.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/pipeline_paths.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/pipeline_performance.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/pipeline_recovery.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/pipeline_snapshot.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/pipeline_transport_delivery.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/projection.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/push.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/push_queue.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/push_secrets.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/push_worker.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/router.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/runtime_overrides.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/runtime_registry.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/signing.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/thinking_metadata.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/transport.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/transports/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/transports/base.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/transports/grpc.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/transports/grpc_jsonrpc.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/transports/http.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/transports/redis_streams.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/transports/stdio.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/transports/unix.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/transports/websocket.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/a2a/types.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/acp/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/acp/convert.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/acp/http_sse.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/acp/mcp.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/acp/metrics.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/acp/runner.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/acp/server.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/acp/session.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/acp/slash_registry.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/acp/state.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/acp/tools.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/acp/types.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/acp/version.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/agent/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/agent/agent_tool.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/agent/agent_types.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/agent/message.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/agent/system_prompt.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/cli/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/cli/headless.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/cli/install_git_bash.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/cli/output_formats.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/cli/process_events.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/cli/process_mode.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/cli/process_protocol.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/cli/update.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/commands/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/commands/auth.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/commands/clear.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/commands/compact.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/commands/debug.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/commands/effort.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/commands/exit.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/commands/help.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/commands/mcp.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/commands/memory.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/commands/model.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/commands/prompt.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/commands/registry.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/commands/rename.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/commands/resume.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/commands/skills.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/commands/status.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/commands/tasks.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/commands/thinking_enabled.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/desktop/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/desktop/__main__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/desktop/control.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/desktop/controller.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/desktop/diagnostics.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/desktop/download_journal.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/desktop/external_env.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/desktop/git_bash.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/desktop/install_lock.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/desktop/loop_runner.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/desktop/native_preload_manifest.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/desktop/ports.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/desktop/probe_worker.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/desktop/runtime.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/desktop/tool_paths.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/html_extractor.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/locales/de/LC_MESSAGES/webui.mo +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/locales/de/LC_MESSAGES/webui.po +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/locales/es/LC_MESSAGES/webui.mo +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/locales/es/LC_MESSAGES/webui.po +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/locales/fr/LC_MESSAGES/webui.mo +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/locales/fr/LC_MESSAGES/webui.po +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/locales/ja/LC_MESSAGES/webui.mo +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/locales/ja/LC_MESSAGES/webui.po +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/locales/pt/LC_MESSAGES/webui.mo +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/locales/pt/LC_MESSAGES/webui.po +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/locales/zh/LC_MESSAGES/webui.mo +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/i18n/locales/zh/LC_MESSAGES/webui.po +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/mcp/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/mcp/cli.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/mcp/client.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/mcp/config.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/mcp/env_expansion.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/mcp/errors.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/mcp/output.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/mcp/progress.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/mcp/prompt_dispatch.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/mcp/prompts.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/mcp/redaction.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/mcp/skills.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/mcp/tools.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/memory/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/memory/memory_manager.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/memory/memory_tools.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/memory/project_memory.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/memory/recall.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/config.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/constants.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/display_names.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/architecture_graph.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/architecture_meta.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/architecture_metas/Categories.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/architecture_metas/config.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/architecture_metas/products.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/architecture_resource_inventory.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/architecture_rule_candidates.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/architecture_rule_drafts.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/architecture_rule_facts.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/architecture_rules.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/architecture_rules.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/architecture_semantic_planning.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/ask_user_question_tool.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/cleanup.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/complete_step_tool.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/completion_guard_state.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/context.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/display_replay.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/events.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/handoff.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/hard_constraints.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/interrupt.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/loader.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/observability.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/prerequisites.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/prompts/interrupt_judge.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/public_errors.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/recovery.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/resume_recovery.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/session.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/show_diagram_tool.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/state_machine.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/step_spec.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/sub_pipeline_executor.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/transcript_storage.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/types.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/ui_contract.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/engine/user_input.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/hooks/deploying.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/pipeline.yaml +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/prompts/architecture_planning.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/prompts/confirm_and_select.a2a.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/prompts/confirm_and_select.a2a.rich.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/prompts/confirm_and_select.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/prompts/cost_estimating.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/prompts/deploying.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/prompts/evaluate_candidates.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/prompts/intent_parsing.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/prompts/reviewing.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/prompts/template_generating.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/references/cloud-products/ecs.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/references/cloud-products/ga.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/references/cloud-products/oss.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/references/cloud-products/rds.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/references/cloud-products/redis.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/references/cloud-products/slb.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/references/cloud-products/vpc.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/references/ros-template.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/references/solutions/iac-code-web.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/references/solutions/iac-code-web.ros.yml +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/references/template-parameter-recommendation.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/references/template-parameters.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/references/terraform-template.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-architecture/SKILL.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-architecture/evals.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-cost/SKILL.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-cost/evals.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-cost/references/cloud-products/ecs.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-cost/references/cloud-products/ga.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-cost/references/cloud-products/oss.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-cost/references/cloud-products/rds.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-cost/references/cloud-products/redis.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-cost/references/cloud-products/slb.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-cost/references/cloud-products/vpc.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-cost/references/ros-template.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-cost/references/solutions/iac-code-web.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-cost/references/solutions/iac-code-web.ros.yml +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-cost/references/template-parameter-recommendation.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-cost/references/template-parameters.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-cost/references/terraform-template.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-deploying/SKILL.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-deploying/evals.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-deploying/references/cloud-products/ecs.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-deploying/references/cloud-products/ga.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-deploying/references/cloud-products/oss.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-deploying/references/cloud-products/rds.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-deploying/references/cloud-products/redis.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-deploying/references/cloud-products/slb.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-deploying/references/cloud-products/vpc.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-deploying/references/ros-template.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-deploying/references/solutions/iac-code-web.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-deploying/references/solutions/iac-code-web.ros.yml +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-deploying/references/template-parameter-recommendation.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-deploying/references/template-parameters.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-deploying/references/terraform-template.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-intent/SKILL.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-intent/evals.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-review/SKILL.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-review/evals.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-template-generating/SKILL.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-template-generating/evals.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-template-generating/references/cloud-products/ecs.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-template-generating/references/cloud-products/ga.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-template-generating/references/cloud-products/oss.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-template-generating/references/cloud-products/rds.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-template-generating/references/cloud-products/redis.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-template-generating/references/cloud-products/slb.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-template-generating/references/cloud-products/vpc.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-template-generating/references/ros-template.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-template-generating/references/solutions/iac-code-web.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-template-generating/references/solutions/iac-code-web.ros.yml +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-template-generating/references/template-parameter-recommendation.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-template-generating/references/template-parameters.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/skills/iac-aliyun-template-generating/references/terraform-template.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/tools/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/tools/infraguard_scan_tool.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/tools/ros_template_tools.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/pipeline/selling/tools/show_candidate_detail_tool.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/anthropic_provider.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/azure_openai_provider.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/base.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/deepseek_provider.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/gemini_provider.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/kimi_provider.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/lmstudio_provider.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/minimax_provider.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/modelscope_provider.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/ollama_provider.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/openai_provider.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/openrouter_provider.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/request_logging.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/request_policy.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/retry.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/siliconflow_provider.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/stream_watchdog.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/providers/volcengine_provider.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/capabilities/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/capabilities/auto_detect.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/capabilities/multimodal.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/cloud_credentials.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/configuration_readiness.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/git_bash.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/permissions/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/permissions/audit.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/permissions/loader.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/permissions/rule_scope.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/permissions/storage.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/permissions/trusted_roots.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/providers/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/providers/aliyun.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/providers/aliyun_credentials_runtime.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/providers/aliyun_oauth.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/qwenpaw_source.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/session_backup.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/session_backup_staging.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/session_backup_state.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/session_index.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/session_logging.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/session_metadata.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/session_resolver.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/session_usage.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/telemetry/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/telemetry/attributes.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/telemetry/client.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/telemetry/config.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/telemetry/content_serializer.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/telemetry/events.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/telemetry/fallback.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/telemetry/identity.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/telemetry/metrics.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/telemetry/names.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/telemetry/sanitize.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/telemetry/scope.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/telemetry/sink.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/telemetry/tracing.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/telemetry/types.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/token_budget.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/token_counter.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/services/update_checker.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/auto_trigger.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/iac_aliyun/SKILL.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/iac_aliyun/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/iac_aliyun/auto_trigger.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/iac_aliyun/references/cloud-products/ecs.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/iac_aliyun/references/cloud-products/ga.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/iac_aliyun/references/cloud-products/oss.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/iac_aliyun/references/cloud-products/rds.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/iac_aliyun/references/cloud-products/redis.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/iac_aliyun/references/cloud-products/slb.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/iac_aliyun/references/cloud-products/vpc.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/iac_aliyun/references/ros-template.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/iac_aliyun/references/solutions/iac-code-web.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/iac_aliyun/references/solutions/iac-code-web.ros.yml +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/iac_aliyun/references/template-parameter-recommendation.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/iac_aliyun/references/template-parameters.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/iac_aliyun/references/terraform-template.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/iac_aliyun/scripts/tf2ros.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/pac_aliyun/SKILL.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/pac_aliyun/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/pac_aliyun/auto_trigger.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/pac_aliyun/references/infraguard-policy-generation.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/bundled/simplify.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/discovery.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/frontmatter.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/listing.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/loader.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/management.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/processor.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/renderer.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/settings.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/skill_definition.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/skills/skill_tool.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/state/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/state/app_state.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tasks/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tasks/notification_queue.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tasks/task_state.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tasks/task_tools.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/base.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/bash/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/bash/argv_safety.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/bash/bash_tool.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/bash/command_parser.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/bash/mode_validation.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/bash/path_validation.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/bash/permissions.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/bash/readonly_commands.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/bash/rule_matching.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/bash/safety_checks.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/acs3_transport.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/aliyun_api_doc.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/aliyun_doc_search.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/api_contract.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/api_hooks.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/api_identifiers.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/contract_store.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/data/README.md +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/data/endpoints/catalog.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/data/endpoints/generation_report.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/data/endpoints/legacy.yml +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/data/endpoints/overrides.yml +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/data/endpoints/unavailable.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/data/openmeta/api_overrides.yml +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/data/openmeta/exclusions.yml +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/data/openmeta/product_aliases.yml +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/data/openmeta/product_catalog.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/data/oss/operation_catalog.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/data/validation/judgments.yml +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/data/validation/overrides.yml +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ecs_credential_errors.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/endpoint_resolver.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/hooks/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/hooks/ros_parameters.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/hooks/ros_validate.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/openmeta.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/oss_v4_adapter.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/product_resolver.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/public_errors.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/result_contract.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/retry_policy.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_client.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_lifecycle.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_stack.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_stack_instances.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_template_tools.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/action_policy.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/analyzer.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/association_property_specs.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/count.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/data/ros_association_property_specs.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/data/ros_official_resource_index.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/data/ros_resource_value_specs.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/data/ros_template_body_action_policies.json +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/facts.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/function_specs.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/model.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/outcome.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/parser.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/renderer.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/resource_value_specs.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/rules/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/rules/association_property.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/rules/base.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/rules/registry.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/symbols.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/template_kind.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/types.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_validation/validator.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/ros_yaml.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/runtime.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/template_source.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/user_agent.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/aliyun/validation_policy.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/base_api.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/base_stack.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/registry.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/cloud/types.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/edit_file.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/glob.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/grep.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/list_files.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/path_safety.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/read_file.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/result_storage.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/tool_executor.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/web_fetch.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/tools/write_file.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/types/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/types/permissions.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/types/skill_source.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/assets/iac-code-terminal-logo.png +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/banner.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/components/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/components/candidate_selection.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/components/dialog.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/components/divider.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/components/fuzzy_picker.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/components/parallel_tabs.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/components/progress_bar.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/components/search_box.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/components/select.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/components/status_icon.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/components/tabs.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/core/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/core/in_place_render.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/core/input_history.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/core/key_event.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/core/prompt_input.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/core/raw_input.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/core/raw_input_win.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/core/screen.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/diagram_rendering.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/dialogs/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/dialogs/global_search.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/dialogs/history_search.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/dialogs/mcp_manager.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/dialogs/memory.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/dialogs/memory_editor.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/dialogs/model_picker.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/dialogs/quick_open.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/dialogs/resume_picker.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/dialogs/skills_picker.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/keybindings/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/keybindings/manager.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/pipeline_display_replay.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/pipeline_styles.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/renderer.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/repl.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/spinner.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/stream_accumulator.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/suggestions/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/suggestions/aggregator.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/suggestions/command_provider.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/suggestions/directory_provider.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/suggestions/file_provider.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/suggestions/shell_history_provider.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/suggestions/skill_provider.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/suggestions/token_extractor.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/suggestions/types.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/terminal_image.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/ui/transcript_view.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/async_lifecycle.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/background_housekeeping.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/cleanup.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/console.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/file_security.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/image/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/image/clipboard.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/image/format_detect.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/image/pasted_content.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/image/processor.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/image/resizer.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/image/store.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/json_utils.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/log.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/path_components.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/path_locks.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/platform.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/project_paths.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/public_errors.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/public_paths.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/signals.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/tool_input_parser.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/tool_result_redaction.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/utils/windows_paths.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/__init__.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/cleanup.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/commands.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/diagram_cache.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/diagram_optimizer.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/diagrams.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/events.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/files.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/images.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/mcp_settings.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/memory.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/outputs.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/pipeline.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/pipeline_prerequisites.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/pipeline_transcript.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/security.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/server.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/session_titler.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/settings.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/shell.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/skills.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/icons/iac-code-logo.svg +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/icons/sidebar-new-thread.svg +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/icons/sidebar-project-open.svg +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/icons/sidebar-search.svg +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/icons/sidebar-settings.svg +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/icons/sidebar-skills.svg +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/index.html +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/js/api.js +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/js/app.js +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/js/components/blocking.js +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/js/components/composer.js +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/js/components/image_lightbox.js +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/js/components/output_panel.js +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/js/components/pipeline.js +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/js/components/tool_cards.js +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/js/components/workspace.js +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/js/events.js +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/js/i18n.js +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/js/mermaid_render.js +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/js/token_transport.js +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/js/vendor/markdown-it.LICENSE +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/js/vendor/markdown-it.min.js +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/js/vendor/mermaid.LICENSE +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/js/vendor/mermaid.min.js +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/js/vendor/token-crypto.js +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/static/styles.css +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code/web/token_transport.py +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code.egg-info/dependency_links.txt +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code.egg-info/entry_points.txt +0 -0
- {iac_code-0.13.1 → iac_code-0.14.0}/src/iac_code.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: iac_code
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.14.0
|
|
4
4
|
Summary: Your AI-powered Infrastructure as Code assistant
|
|
5
5
|
Classifier: Programming Language :: Python :: 3
|
|
6
6
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -14,6 +14,7 @@ Provides-Extra: a2a
|
|
|
14
14
|
Provides-Extra: a2a-grpc
|
|
15
15
|
Provides-Extra: a2a-redis
|
|
16
16
|
Provides-Extra: a2a-signing
|
|
17
|
+
Provides-Extra: agui
|
|
17
18
|
Provides-Extra: diagram
|
|
18
19
|
Provides-Extra: http
|
|
19
20
|
License-File: LICENSE
|
|
@@ -74,6 +74,12 @@ a2a-grpc = [
|
|
|
74
74
|
a2a-redis = [
|
|
75
75
|
"redis>=5.0.0",
|
|
76
76
|
]
|
|
77
|
+
agui = [
|
|
78
|
+
"ag-ui-protocol==0.1.20",
|
|
79
|
+
"a2a-sdk[http-server,signing]>=1.0.2,<2",
|
|
80
|
+
"starlette>=0.39.0",
|
|
81
|
+
"uvicorn[standard]>=0.30.0",
|
|
82
|
+
]
|
|
77
83
|
diagram = ["termaid>=0.1; python_version >= '3.11'"]
|
|
78
84
|
|
|
79
85
|
[dependency-groups]
|
|
@@ -146,6 +152,9 @@ default = true
|
|
|
146
152
|
|
|
147
153
|
[tool.pytest.ini_options]
|
|
148
154
|
timeout = 30
|
|
155
|
+
markers = [
|
|
156
|
+
"integration: process-level integration tests that use local services only",
|
|
157
|
+
]
|
|
149
158
|
|
|
150
159
|
[tool.coverage.run]
|
|
151
160
|
source_pkgs = ["iac_code"]
|
|
@@ -39,9 +39,12 @@ from iac_code.a2a.projection import (
|
|
|
39
39
|
resolve_a2a_public_path_roots,
|
|
40
40
|
resolve_a2a_public_path_roots_for_data,
|
|
41
41
|
)
|
|
42
|
+
from iac_code.a2a.types import validate_protocol_id
|
|
42
43
|
from iac_code.i18n import _
|
|
43
44
|
from iac_code.pipeline.config import get_run_mode
|
|
44
45
|
from iac_code.services.configuration_readiness import configuration_readiness
|
|
46
|
+
from iac_code.services.session_backup import SessionBackupError
|
|
47
|
+
from iac_code.services.session_storage import SessionStorage
|
|
45
48
|
|
|
46
49
|
logger = logging.getLogger(__name__)
|
|
47
50
|
_V03_JSONRPC_METHODS = frozenset(
|
|
@@ -392,6 +395,7 @@ def create_app(
|
|
|
392
395
|
supported_interfaces: list[dict[str, str]] | None = None,
|
|
393
396
|
agent_extensions: object | None = None,
|
|
394
397
|
auto_approve_permissions: bool = False,
|
|
398
|
+
permission_wait: object | None = None,
|
|
395
399
|
thinking_exposure: object | None = None,
|
|
396
400
|
idle_shutdown_seconds: float = 0,
|
|
397
401
|
idle_shutdown_callback: Callable[[], None] | None = None,
|
|
@@ -423,6 +427,7 @@ def create_app(
|
|
|
423
427
|
supported_interfaces=supported_interfaces,
|
|
424
428
|
agent_extensions=agent_extensions,
|
|
425
429
|
auto_approve_permissions=auto_approve_permissions,
|
|
430
|
+
permission_wait=permission_wait,
|
|
426
431
|
thinking_exposure=thinking_exposure,
|
|
427
432
|
)
|
|
428
433
|
from iac_code.a2a.pipeline_recovery import A2APipelineRecoveryService
|
|
@@ -475,6 +480,42 @@ def create_app(
|
|
|
475
480
|
async def get_readiness(request: Request) -> JSONResponse:
|
|
476
481
|
return JSONResponse(configuration_readiness(model=model))
|
|
477
482
|
|
|
483
|
+
async def ensure_session_restored(request: Request) -> JSONResponse:
|
|
484
|
+
try:
|
|
485
|
+
payload = await request.json()
|
|
486
|
+
except Exception:
|
|
487
|
+
return JSONResponse({"error": "Invalid session restore request."}, status_code=400)
|
|
488
|
+
if not isinstance(payload, dict):
|
|
489
|
+
return JSONResponse({"error": "Invalid session restore request."}, status_code=400)
|
|
490
|
+
raw_cwd = payload.get("cwd")
|
|
491
|
+
raw_session_id = payload.get("sessionId")
|
|
492
|
+
if not isinstance(raw_cwd, str) or not raw_cwd or not isinstance(raw_session_id, str):
|
|
493
|
+
return JSONResponse({"error": "Invalid session restore request."}, status_code=400)
|
|
494
|
+
|
|
495
|
+
executor = getattr(components.handler, "agent_executor", None)
|
|
496
|
+
resolve_cwd = getattr(executor, "_resolve_cwd", None)
|
|
497
|
+
backup_service = components.backup_service
|
|
498
|
+
if not callable(resolve_cwd) or backup_service is None:
|
|
499
|
+
return JSONResponse({"error": "Session restore is unavailable."}, status_code=503)
|
|
500
|
+
try:
|
|
501
|
+
session_id = validate_protocol_id(raw_session_id)
|
|
502
|
+
cwd = resolve_cwd({"iac_code": {"cwd": raw_cwd}})
|
|
503
|
+
result = await asyncio.to_thread(backup_service.reconcile_session, cwd, session_id)
|
|
504
|
+
exists = SessionStorage().exists(cwd, session_id)
|
|
505
|
+
except ValueError:
|
|
506
|
+
return JSONResponse({"error": "Invalid session restore request."}, status_code=400)
|
|
507
|
+
except SessionBackupError as exc:
|
|
508
|
+
logger.warning("A2A session restore failed error_type=%s", type(exc).__name__)
|
|
509
|
+
return JSONResponse({"error": "Unable to restore the A2A session."}, status_code=503)
|
|
510
|
+
except Exception as exc:
|
|
511
|
+
logger.warning("A2A session restore failed error_type=%s", type(exc).__name__)
|
|
512
|
+
return JSONResponse({"error": "Unable to restore the A2A session."}, status_code=503)
|
|
513
|
+
|
|
514
|
+
if not exists:
|
|
515
|
+
return JSONResponse({"status": "not_found"}, status_code=404)
|
|
516
|
+
status = "restored" if getattr(result, "action", None) == "restored" else "current"
|
|
517
|
+
return JSONResponse({"status": status})
|
|
518
|
+
|
|
478
519
|
recovery_service = A2APipelineRecoveryService(task_store=components.task_store)
|
|
479
520
|
|
|
480
521
|
async def recovery_path_roots(*, context_id: str | None, task_id: str | None) -> list[dict[str, str]]:
|
|
@@ -521,6 +562,7 @@ def create_app(
|
|
|
521
562
|
Route("/health", health, methods=["GET"]),
|
|
522
563
|
Route(AGENT_CARD_WELL_KNOWN_PATH, get_agent_card, methods=["GET"]),
|
|
523
564
|
Route("/iac-code/readiness", get_readiness, methods=["GET"]),
|
|
565
|
+
Route("/iac-code/session/ensure-restored", ensure_session_restored, methods=["POST"]),
|
|
524
566
|
Route("/iac-code/pipeline/state", get_pipeline_state, methods=["GET"]),
|
|
525
567
|
]
|
|
526
568
|
install_jsonrpc_error_data_passthrough()
|
|
@@ -607,6 +649,7 @@ def run_server(
|
|
|
607
649
|
push_consumer_name: str | None = None,
|
|
608
650
|
push_lease_timeout_ms: int = 300_000,
|
|
609
651
|
auto_approve_permissions: bool = False,
|
|
652
|
+
permission_wait: object | None = None,
|
|
610
653
|
thinking_exposure: object | None = None,
|
|
611
654
|
idle_shutdown_seconds: float = 0,
|
|
612
655
|
) -> None:
|
|
@@ -678,6 +721,7 @@ def run_server(
|
|
|
678
721
|
"push_lease_timeout_ms": push_lease_timeout_ms,
|
|
679
722
|
"supported_interfaces": supported_interfaces,
|
|
680
723
|
"auto_approve_permissions": auto_approve_permissions,
|
|
724
|
+
"permission_wait": permission_wait,
|
|
681
725
|
"thinking_exposure": thinking_exposure,
|
|
682
726
|
}
|
|
683
727
|
|
|
@@ -783,6 +827,7 @@ def run_server(
|
|
|
783
827
|
push_lease_timeout_ms=push_lease_timeout_ms,
|
|
784
828
|
supported_interfaces=supported_interfaces,
|
|
785
829
|
auto_approve_permissions=auto_approve_permissions,
|
|
830
|
+
permission_wait=permission_wait,
|
|
786
831
|
thinking_exposure=thinking_exposure,
|
|
787
832
|
idle_shutdown_seconds=idle_shutdown_seconds,
|
|
788
833
|
idle_shutdown_callback=request_idle_shutdown,
|
|
@@ -41,13 +41,14 @@ async def backup_session_async(
|
|
|
41
41
|
critical: bool,
|
|
42
42
|
metrics: Any | None = None,
|
|
43
43
|
publication_proofs: dict[str, BackupPublicationProof] | None = None,
|
|
44
|
+
backup_call: Callable[..., Any] | None = None,
|
|
44
45
|
) -> Any | None:
|
|
45
46
|
failed_recorded = False
|
|
46
47
|
try:
|
|
47
48
|
kwargs: dict[str, Any] = {"reason": reason, "critical": critical}
|
|
48
49
|
if publication_proofs is not None:
|
|
49
50
|
kwargs["publication_proofs"] = publication_proofs
|
|
50
|
-
result = await run_sync_fenced(backup_service.backup_session, cwd, session_id, **kwargs)
|
|
51
|
+
result = await run_sync_fenced(backup_call or backup_service.backup_session, cwd, session_id, **kwargs)
|
|
51
52
|
retry_count = _retry_count(result)
|
|
52
53
|
if getattr(result, "enabled", False) and not getattr(result, "succeeded", True):
|
|
53
54
|
message = str(
|
|
@@ -154,22 +154,29 @@ class A2AClient:
|
|
|
154
154
|
*,
|
|
155
155
|
cwd: str,
|
|
156
156
|
context_id: str | None = None,
|
|
157
|
+
task_id: str | None = None,
|
|
158
|
+
message_id: str | None = None,
|
|
157
159
|
model: str | None = None,
|
|
158
160
|
iac_code_api_key: str | None = None,
|
|
159
161
|
thinking_enabled: bool | None = None,
|
|
160
162
|
thinking_effort: str | None = None,
|
|
161
163
|
thinking_budget: int | None = None,
|
|
164
|
+
iac_code_metadata: Mapping[str, Any] | None = None,
|
|
162
165
|
) -> A2AClientResponse:
|
|
163
166
|
payload = self._message_payload(
|
|
164
167
|
method="SendMessage",
|
|
165
168
|
prompt=prompt,
|
|
169
|
+
parts=None,
|
|
166
170
|
cwd=cwd,
|
|
167
171
|
context_id=context_id,
|
|
172
|
+
task_id=task_id,
|
|
173
|
+
message_id=message_id,
|
|
168
174
|
model=model,
|
|
169
175
|
iac_code_api_key=iac_code_api_key,
|
|
170
176
|
thinking_enabled=thinking_enabled,
|
|
171
177
|
thinking_effort=thinking_effort,
|
|
172
178
|
thinking_budget=thinking_budget,
|
|
179
|
+
additional_iac_code_metadata=iac_code_metadata,
|
|
173
180
|
)
|
|
174
181
|
transport = self._make_transport_client(url)
|
|
175
182
|
response = await transport.send(payload)
|
|
@@ -182,22 +189,101 @@ class A2AClient:
|
|
|
182
189
|
*,
|
|
183
190
|
cwd: str,
|
|
184
191
|
context_id: str | None = None,
|
|
192
|
+
task_id: str | None = None,
|
|
193
|
+
message_id: str | None = None,
|
|
185
194
|
model: str | None = None,
|
|
186
195
|
iac_code_api_key: str | None = None,
|
|
187
196
|
thinking_enabled: bool | None = None,
|
|
188
197
|
thinking_effort: str | None = None,
|
|
189
198
|
thinking_budget: int | None = None,
|
|
199
|
+
iac_code_metadata: Mapping[str, Any] | None = None,
|
|
190
200
|
) -> AsyncIterator[dict[str, Any]]:
|
|
191
201
|
payload = self._message_payload(
|
|
192
202
|
method="SendStreamingMessage",
|
|
193
203
|
prompt=prompt,
|
|
204
|
+
parts=None,
|
|
194
205
|
cwd=cwd,
|
|
195
206
|
context_id=context_id,
|
|
207
|
+
task_id=task_id,
|
|
208
|
+
message_id=message_id,
|
|
196
209
|
model=model,
|
|
197
210
|
iac_code_api_key=iac_code_api_key,
|
|
198
211
|
thinking_enabled=thinking_enabled,
|
|
199
212
|
thinking_effort=thinking_effort,
|
|
200
213
|
thinking_budget=thinking_budget,
|
|
214
|
+
additional_iac_code_metadata=iac_code_metadata,
|
|
215
|
+
)
|
|
216
|
+
transport = self._make_transport_client(url)
|
|
217
|
+
async for event in transport.stream(payload):
|
|
218
|
+
yield event
|
|
219
|
+
|
|
220
|
+
async def send_message_parts(
|
|
221
|
+
self,
|
|
222
|
+
url: str,
|
|
223
|
+
parts: Sequence[Mapping[str, Any]],
|
|
224
|
+
*,
|
|
225
|
+
cwd: str,
|
|
226
|
+
context_id: str,
|
|
227
|
+
task_id: str | None = None,
|
|
228
|
+
message_id: str | None = None,
|
|
229
|
+
model: str | None = None,
|
|
230
|
+
iac_code_api_key: str | None = None,
|
|
231
|
+
thinking_enabled: bool | None = None,
|
|
232
|
+
thinking_effort: str | None = None,
|
|
233
|
+
thinking_budget: int | None = None,
|
|
234
|
+
iac_code_metadata: Mapping[str, Any] | None = None,
|
|
235
|
+
) -> A2AClientResponse:
|
|
236
|
+
"""Send pre-validated A2A parts while preserving iac-code request metadata."""
|
|
237
|
+
payload = self._message_payload(
|
|
238
|
+
method="SendMessage",
|
|
239
|
+
prompt=None,
|
|
240
|
+
parts=parts,
|
|
241
|
+
cwd=cwd,
|
|
242
|
+
context_id=context_id,
|
|
243
|
+
task_id=task_id,
|
|
244
|
+
message_id=message_id,
|
|
245
|
+
model=model,
|
|
246
|
+
iac_code_api_key=iac_code_api_key,
|
|
247
|
+
thinking_enabled=thinking_enabled,
|
|
248
|
+
thinking_effort=thinking_effort,
|
|
249
|
+
thinking_budget=thinking_budget,
|
|
250
|
+
additional_iac_code_metadata=iac_code_metadata,
|
|
251
|
+
)
|
|
252
|
+
transport = self._make_transport_client(url)
|
|
253
|
+
response = await transport.send(payload)
|
|
254
|
+
return A2AClientResponse(payload=response)
|
|
255
|
+
|
|
256
|
+
async def stream_message_parts(
|
|
257
|
+
self,
|
|
258
|
+
url: str,
|
|
259
|
+
parts: Sequence[Mapping[str, Any]],
|
|
260
|
+
*,
|
|
261
|
+
cwd: str,
|
|
262
|
+
context_id: str,
|
|
263
|
+
task_id: str | None = None,
|
|
264
|
+
message_id: str | None = None,
|
|
265
|
+
model: str | None = None,
|
|
266
|
+
iac_code_api_key: str | None = None,
|
|
267
|
+
thinking_enabled: bool | None = None,
|
|
268
|
+
thinking_effort: str | None = None,
|
|
269
|
+
thinking_budget: int | None = None,
|
|
270
|
+
iac_code_metadata: Mapping[str, Any] | None = None,
|
|
271
|
+
) -> AsyncIterator[dict[str, Any]]:
|
|
272
|
+
"""Stream a message whose parts were validated by an embedding protocol adapter."""
|
|
273
|
+
payload = self._message_payload(
|
|
274
|
+
method="SendStreamingMessage",
|
|
275
|
+
prompt=None,
|
|
276
|
+
parts=parts,
|
|
277
|
+
cwd=cwd,
|
|
278
|
+
context_id=context_id,
|
|
279
|
+
task_id=task_id,
|
|
280
|
+
message_id=message_id,
|
|
281
|
+
model=model,
|
|
282
|
+
iac_code_api_key=iac_code_api_key,
|
|
283
|
+
thinking_enabled=thinking_enabled,
|
|
284
|
+
thinking_effort=thinking_effort,
|
|
285
|
+
thinking_budget=thinking_budget,
|
|
286
|
+
additional_iac_code_metadata=iac_code_metadata,
|
|
201
287
|
)
|
|
202
288
|
transport = self._make_transport_client(url)
|
|
203
289
|
async for event in transport.stream(payload):
|
|
@@ -209,6 +295,43 @@ class A2AClient:
|
|
|
209
295
|
params["historyLength"] = history_length
|
|
210
296
|
return await self._send_jsonrpc(url, method="GetTask", params=params)
|
|
211
297
|
|
|
298
|
+
async def get_pipeline_state(
|
|
299
|
+
self,
|
|
300
|
+
url: str,
|
|
301
|
+
*,
|
|
302
|
+
task_id: str,
|
|
303
|
+
after_sequence: int | None = None,
|
|
304
|
+
) -> dict[str, Any] | None:
|
|
305
|
+
"""Read iac-code's existing A2A pipeline recovery extension over HTTP."""
|
|
306
|
+
|
|
307
|
+
endpoint = url.rstrip("/") + "/iac-code/pipeline/state"
|
|
308
|
+
params = _without_none({"taskId": task_id, "afterSequence": after_sequence})
|
|
309
|
+
response = await self._http_client.get(endpoint, params=params, headers=self._jsonrpc_headers())
|
|
310
|
+
if response.status_code == 404:
|
|
311
|
+
return None
|
|
312
|
+
response.raise_for_status()
|
|
313
|
+
data = response.json()
|
|
314
|
+
if not isinstance(data, dict):
|
|
315
|
+
raise ValueError("A2A pipeline state response must be a JSON object")
|
|
316
|
+
return data
|
|
317
|
+
|
|
318
|
+
async def ensure_session_restored(self, url: str, *, cwd: str, session_id: str) -> bool:
|
|
319
|
+
"""Ensure the A2A session payload is locally available before a cold resume."""
|
|
320
|
+
|
|
321
|
+
endpoint = url.rstrip("/") + "/iac-code/session/ensure-restored"
|
|
322
|
+
response = await self._http_client.post(
|
|
323
|
+
endpoint,
|
|
324
|
+
json={"cwd": cwd, "sessionId": session_id},
|
|
325
|
+
headers=self._jsonrpc_headers(),
|
|
326
|
+
)
|
|
327
|
+
if response.status_code == 404:
|
|
328
|
+
return False
|
|
329
|
+
response.raise_for_status()
|
|
330
|
+
data = response.json()
|
|
331
|
+
if not isinstance(data, dict) or data.get("status") not in {"current", "restored"}:
|
|
332
|
+
raise ValueError("A2A session restore response must report a ready session")
|
|
333
|
+
return True
|
|
334
|
+
|
|
212
335
|
async def list_tasks(
|
|
213
336
|
self,
|
|
214
337
|
url: str,
|
|
@@ -397,16 +520,23 @@ class A2AClient:
|
|
|
397
520
|
self,
|
|
398
521
|
*,
|
|
399
522
|
method: str,
|
|
400
|
-
prompt: str,
|
|
523
|
+
prompt: str | None,
|
|
524
|
+
parts: Sequence[Mapping[str, Any]] | None,
|
|
401
525
|
cwd: str,
|
|
402
526
|
context_id: str | None,
|
|
527
|
+
task_id: str | None,
|
|
528
|
+
message_id: str | None,
|
|
403
529
|
model: str | None,
|
|
404
530
|
iac_code_api_key: str | None,
|
|
405
531
|
thinking_enabled: bool | None,
|
|
406
532
|
thinking_effort: str | None,
|
|
407
533
|
thinking_budget: int | None,
|
|
534
|
+
additional_iac_code_metadata: Mapping[str, Any] | None,
|
|
408
535
|
) -> dict[str, Any]:
|
|
409
|
-
|
|
536
|
+
if (prompt is None) == (parts is None):
|
|
537
|
+
raise ValueError("Exactly one of prompt or parts is required")
|
|
538
|
+
iac_code_metadata: dict[str, Any] = dict(additional_iac_code_metadata or {})
|
|
539
|
+
iac_code_metadata["cwd"] = cwd
|
|
410
540
|
if model:
|
|
411
541
|
stripped_model = model.strip()
|
|
412
542
|
if stripped_model:
|
|
@@ -427,13 +557,15 @@ class A2AClient:
|
|
|
427
557
|
if thinking:
|
|
428
558
|
iac_code_metadata["thinking"] = thinking
|
|
429
559
|
message: dict[str, Any] = {
|
|
430
|
-
"messageId": str(uuid.uuid4()),
|
|
560
|
+
"messageId": message_id or str(uuid.uuid4()),
|
|
431
561
|
"role": "ROLE_USER",
|
|
432
|
-
"parts": [{"text": prompt}],
|
|
562
|
+
"parts": [{"text": prompt}] if prompt is not None else [dict(part) for part in parts or ()],
|
|
433
563
|
"metadata": {"iac_code": iac_code_metadata},
|
|
434
564
|
}
|
|
435
565
|
if context_id:
|
|
436
566
|
message["contextId"] = context_id
|
|
567
|
+
if task_id:
|
|
568
|
+
message["taskId"] = task_id
|
|
437
569
|
return self._jsonrpc_payload(
|
|
438
570
|
method=method,
|
|
439
571
|
params={
|
|
@@ -82,7 +82,13 @@ def _truncate(value: Any, *, _depth: int = 0) -> Any:
|
|
|
82
82
|
|
|
83
83
|
|
|
84
84
|
def _public_tool_input_metadata(tool_name: str, tool_input: dict[str, Any]) -> dict[str, Any]:
|
|
85
|
-
return {
|
|
85
|
+
return {
|
|
86
|
+
"inputSummary": build_input_summary(tool_name, tool_input),
|
|
87
|
+
# This is protocol data consumed as AG-UI TOOL_CALL_ARGS, not an audit
|
|
88
|
+
# record. Keep the canonical arguments here; the A2A wire boundary
|
|
89
|
+
# applies the existing path-only safe-mode projection to a copy.
|
|
90
|
+
"toolInput": copy.deepcopy(tool_input),
|
|
91
|
+
}
|
|
86
92
|
|
|
87
93
|
|
|
88
94
|
def _public_permission_input_metadata(tool_name: str, tool_input: dict[str, Any]) -> dict[str, Any]:
|
|
@@ -288,6 +294,9 @@ async def publish_stream_event(
|
|
|
288
294
|
auto_approve_permissions: bool = False,
|
|
289
295
|
exposure_types: Any = None,
|
|
290
296
|
iac_code_session_id: str | None = None,
|
|
297
|
+
permission_wait_cwd: str | None = None,
|
|
298
|
+
permission_wait_backup_service: Any | None = None,
|
|
299
|
+
permission_wait_metrics: Any | None = None,
|
|
291
300
|
) -> str | None:
|
|
292
301
|
enabled_exposure_types = normalize_a2a_exposure_types(exposure_types)
|
|
293
302
|
|
|
@@ -437,56 +446,18 @@ async def publish_stream_event(
|
|
|
437
446
|
permission_event = _permission_request_event(event)
|
|
438
447
|
if permission_event is not None:
|
|
439
448
|
if permission_input_registry is not None and permission_resolver is None and not auto_approve_permissions:
|
|
440
|
-
|
|
441
|
-
|
|
449
|
+
await publish_interactive_permission_boundary(
|
|
450
|
+
event_queue,
|
|
451
|
+
permission_event=permission_event,
|
|
452
|
+
permission_input_registry=permission_input_registry,
|
|
442
453
|
task_id=task_id,
|
|
443
454
|
context_id=context_id,
|
|
455
|
+
iac_code_session_id=iac_code_session_id,
|
|
456
|
+
permission_wait_cwd=permission_wait_cwd,
|
|
457
|
+
permission_wait_backup_service=permission_wait_backup_service,
|
|
458
|
+
permission_wait_metrics=permission_wait_metrics,
|
|
459
|
+
wait_for_response=True,
|
|
444
460
|
)
|
|
445
|
-
try:
|
|
446
|
-
await _enqueue_status(
|
|
447
|
-
event_queue,
|
|
448
|
-
task_id=task_id,
|
|
449
|
-
context_id=context_id,
|
|
450
|
-
state=TaskState.TASK_STATE_INPUT_REQUIRED,
|
|
451
|
-
metadata={
|
|
452
|
-
"iac_code": {
|
|
453
|
-
"input": pending.envelope(),
|
|
454
|
-
"permission": {
|
|
455
|
-
"autoApproved": False,
|
|
456
|
-
"pending": True,
|
|
457
|
-
"toolName": permission_event.tool_name,
|
|
458
|
-
"toolUseId": permission_event.tool_use_id,
|
|
459
|
-
},
|
|
460
|
-
}
|
|
461
|
-
},
|
|
462
|
-
iac_code_session_id=iac_code_session_id,
|
|
463
|
-
)
|
|
464
|
-
future = permission_event.response_future
|
|
465
|
-
if future is None:
|
|
466
|
-
await permission_input_registry.fail(pending)
|
|
467
|
-
return None
|
|
468
|
-
await asyncio.shield(future)
|
|
469
|
-
await _enqueue_status(
|
|
470
|
-
event_queue,
|
|
471
|
-
task_id=task_id,
|
|
472
|
-
context_id=context_id,
|
|
473
|
-
state=TaskState.TASK_STATE_WORKING,
|
|
474
|
-
metadata={
|
|
475
|
-
"iac_code": {
|
|
476
|
-
"inputReceived": {
|
|
477
|
-
"kind": "permission",
|
|
478
|
-
"inputId": pending.input_id,
|
|
479
|
-
"toolUseId": permission_event.tool_use_id,
|
|
480
|
-
}
|
|
481
|
-
}
|
|
482
|
-
},
|
|
483
|
-
iac_code_session_id=iac_code_session_id,
|
|
484
|
-
)
|
|
485
|
-
except BaseException:
|
|
486
|
-
await permission_input_registry.fail(pending)
|
|
487
|
-
raise
|
|
488
|
-
finally:
|
|
489
|
-
await permission_input_registry.complete(pending)
|
|
490
461
|
return None
|
|
491
462
|
approved = auto_approve_permissions
|
|
492
463
|
if permission_resolver is not None:
|
|
@@ -525,6 +496,20 @@ async def publish_stream_event(
|
|
|
525
496
|
return None
|
|
526
497
|
|
|
527
498
|
if isinstance(event, MessageEndEvent):
|
|
499
|
+
usage = {
|
|
500
|
+
"inputTokens": event.usage.input_tokens,
|
|
501
|
+
"outputTokens": event.usage.output_tokens,
|
|
502
|
+
"totalTokens": event.usage.total_tokens,
|
|
503
|
+
}
|
|
504
|
+
provider = getattr(event.usage, "provider", None)
|
|
505
|
+
model = getattr(event.usage, "model", None)
|
|
506
|
+
cached_input_tokens = getattr(event.usage, "cache_read_input_tokens", None)
|
|
507
|
+
if isinstance(provider, str) and provider:
|
|
508
|
+
usage["provider"] = provider
|
|
509
|
+
if isinstance(model, str) and model:
|
|
510
|
+
usage["model"] = model
|
|
511
|
+
if isinstance(cached_input_tokens, int) and not isinstance(cached_input_tokens, bool):
|
|
512
|
+
usage["cachedInputTokens"] = cached_input_tokens
|
|
528
513
|
await _enqueue_status(
|
|
529
514
|
event_queue,
|
|
530
515
|
task_id=task_id,
|
|
@@ -532,11 +517,7 @@ async def publish_stream_event(
|
|
|
532
517
|
state=TaskState.TASK_STATE_WORKING,
|
|
533
518
|
metadata={
|
|
534
519
|
"iac_code": {
|
|
535
|
-
"usage":
|
|
536
|
-
"inputTokens": event.usage.input_tokens,
|
|
537
|
-
"outputTokens": event.usage.output_tokens,
|
|
538
|
-
"totalTokens": event.usage.total_tokens,
|
|
539
|
-
}
|
|
520
|
+
"usage": usage
|
|
540
521
|
}
|
|
541
522
|
},
|
|
542
523
|
iac_code_session_id=iac_code_session_id,
|
|
@@ -571,6 +552,107 @@ async def publish_stream_event(
|
|
|
571
552
|
return None
|
|
572
553
|
|
|
573
554
|
|
|
555
|
+
async def publish_interactive_permission_boundary(
|
|
556
|
+
event_queue: Any,
|
|
557
|
+
*,
|
|
558
|
+
permission_event: PermissionRequestEvent,
|
|
559
|
+
permission_input_registry: Any,
|
|
560
|
+
task_id: str,
|
|
561
|
+
context_id: str,
|
|
562
|
+
iac_code_session_id: str | None,
|
|
563
|
+
permission_wait_cwd: str | None,
|
|
564
|
+
permission_wait_backup_service: Any | None,
|
|
565
|
+
permission_wait_metrics: Any | None = None,
|
|
566
|
+
wait_for_response: bool,
|
|
567
|
+
) -> Any:
|
|
568
|
+
"""Publish one real external permission wait, optionally detaching Normal SSE."""
|
|
569
|
+
|
|
570
|
+
pending = await permission_input_registry.register(
|
|
571
|
+
permission_event,
|
|
572
|
+
task_id=task_id,
|
|
573
|
+
context_id=context_id,
|
|
574
|
+
)
|
|
575
|
+
try:
|
|
576
|
+
if (
|
|
577
|
+
iac_code_session_id is not None
|
|
578
|
+
and permission_wait_cwd is not None
|
|
579
|
+
and permission_wait_backup_service is not None
|
|
580
|
+
):
|
|
581
|
+
await permission_input_registry.open_durable_boundary(
|
|
582
|
+
pending,
|
|
583
|
+
cwd=permission_wait_cwd,
|
|
584
|
+
session_id=iac_code_session_id,
|
|
585
|
+
permission_class="normal",
|
|
586
|
+
backup_service=permission_wait_backup_service,
|
|
587
|
+
metrics=permission_wait_metrics,
|
|
588
|
+
)
|
|
589
|
+
await _enqueue_status(
|
|
590
|
+
event_queue,
|
|
591
|
+
task_id=task_id,
|
|
592
|
+
context_id=context_id,
|
|
593
|
+
state=TaskState.TASK_STATE_INPUT_REQUIRED,
|
|
594
|
+
metadata={
|
|
595
|
+
"iac_code": {
|
|
596
|
+
"input": pending.envelope(),
|
|
597
|
+
"permission": {
|
|
598
|
+
"autoApproved": False,
|
|
599
|
+
"pending": True,
|
|
600
|
+
"toolName": permission_event.tool_name,
|
|
601
|
+
"toolUseId": permission_event.tool_use_id,
|
|
602
|
+
},
|
|
603
|
+
}
|
|
604
|
+
},
|
|
605
|
+
iac_code_session_id=iac_code_session_id,
|
|
606
|
+
)
|
|
607
|
+
if not wait_for_response:
|
|
608
|
+
return pending
|
|
609
|
+
future = permission_event.response_future
|
|
610
|
+
if future is None:
|
|
611
|
+
await permission_input_registry.fail(pending)
|
|
612
|
+
return pending
|
|
613
|
+
outcome = await asyncio.shield(future)
|
|
614
|
+
from iac_code.types.stream_events import PermissionWaitOutcome
|
|
615
|
+
|
|
616
|
+
if outcome is PermissionWaitOutcome.SUSPEND:
|
|
617
|
+
return pending
|
|
618
|
+
await publish_permission_input_received(
|
|
619
|
+
event_queue,
|
|
620
|
+
pending=pending,
|
|
621
|
+
iac_code_session_id=iac_code_session_id,
|
|
622
|
+
)
|
|
623
|
+
return pending
|
|
624
|
+
except BaseException:
|
|
625
|
+
await permission_input_registry.fail(pending)
|
|
626
|
+
raise
|
|
627
|
+
finally:
|
|
628
|
+
if wait_for_response:
|
|
629
|
+
await permission_input_registry.complete(pending)
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
async def publish_permission_input_received(
|
|
633
|
+
event_queue: Any,
|
|
634
|
+
*,
|
|
635
|
+
pending: Any,
|
|
636
|
+
iac_code_session_id: str | None,
|
|
637
|
+
) -> None:
|
|
638
|
+
await _enqueue_status(
|
|
639
|
+
event_queue,
|
|
640
|
+
task_id=pending.task_id,
|
|
641
|
+
context_id=pending.context_id,
|
|
642
|
+
state=TaskState.TASK_STATE_WORKING,
|
|
643
|
+
metadata={
|
|
644
|
+
"iac_code": {
|
|
645
|
+
"inputReceived": {
|
|
646
|
+
"kind": "permission",
|
|
647
|
+
"inputId": pending.input_id,
|
|
648
|
+
"toolUseId": pending.request.tool_use_id,
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
},
|
|
652
|
+
iac_code_session_id=iac_code_session_id,
|
|
653
|
+
)
|
|
654
|
+
|
|
655
|
+
|
|
574
656
|
def _emit_auto_permission_audit(
|
|
575
657
|
request: PermissionRequestEvent,
|
|
576
658
|
approved: bool,
|
|
@@ -601,6 +683,8 @@ def _emit_resolver_permission_audit(
|
|
|
601
683
|
*,
|
|
602
684
|
persistence_failure: bool = False,
|
|
603
685
|
) -> bool:
|
|
686
|
+
if request.permission_decision_audited and not persistence_failure:
|
|
687
|
+
return True
|
|
604
688
|
source = "a2a_resolver"
|
|
605
689
|
reason_type = "a2a_resolver"
|
|
606
690
|
reason_detail = "allow" if approved else "deny"
|