├── .github ├── ISSUE_TEMPLATE │ └── feature_request.md └── workflows │ ├── test-kiro-cli-provider.yml │ └── test-q-cli-provider.yml ├── .gitignore ├── .tmux.conf ├── CODEBASE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOPMENT.md ├── LICENSE ├── NOTICE ├── README.md ├── docs ├── agent-profile.md ├── api.md └── assets │ ├── cao_architecture.mmd │ ├── cao_architecture.png │ ├── handoff-workflow.mmd │ ├── handoff-workflow.png │ ├── multi-role-feature-development.mmd │ ├── multi-role-feature-development.png │ ├── parallel-data-analysis.mmd │ ├── parallel-data-analysis.png │ ├── parallel-test-execution.mmd │ ├── parallel-test-execution.png │ └── tmux_all_windows.png ├── examples ├── assign │ ├── README.md │ ├── analysis_supervisor.md │ ├── data_analyst.md │ └── report_generator.md └── flow │ └── morning-trivia.md ├── mypy.ini ├── pyproject.toml ├── src └── cli_agent_orchestrator │ ├── __init__.py │ ├── agent_store │ ├── code_supervisor.md │ ├── developer.md │ └── reviewer.md │ ├── api │ ├── __init__.py │ └── main.py │ ├── cli │ ├── __init__.py │ ├── commands │ │ ├── __init__.py │ │ ├── flow.py │ │ ├── init.py │ │ ├── install.py │ │ ├── launch.py │ │ └── shutdown.py │ └── main.py │ ├── clients │ ├── database.py │ └── tmux.py │ ├── constants.py │ ├── mcp_server │ ├── __init__.py │ ├── models.py │ ├── server.py │ └── utils.py │ ├── models │ ├── __init__.py │ ├── agent_profile.py │ ├── flow.py │ ├── inbox.py │ ├── kiro_agent.py │ ├── provider.py │ ├── q_agent.py │ ├── session.py │ └── terminal.py │ ├── providers │ ├── __init__.py │ ├── base.py │ ├── claude_code.py │ ├── kiro_cli.py │ ├── manager.py │ └── q_cli.py │ ├── services │ ├── cleanup_service.py │ ├── flow_service.py │ ├── inbox_service.py │ ├── session_service.py │ └── terminal_service.py │ └── utils │ ├── __init__.py │ ├── agent_profiles.py │ ├── logging.py │ ├── template.py │ └── terminal.py ├── test ├── __init__.py └── providers │ ├── README.md │ ├── __init__.py │ ├── fixtures │ ├── __init__.py │ ├── create_handoff_fixtures.py │ ├── generate_fixtures.py │ ├── kiro_cli_completed_output.txt │ ├── kiro_cli_complex_response.txt │ ├── kiro_cli_error_output.txt │ ├── kiro_cli_handoff_error.txt │ ├── kiro_cli_handoff_successful.txt │ ├── kiro_cli_handoff_with_permission.txt │ ├── kiro_cli_idle_output.txt │ ├── kiro_cli_permission_output.txt │ ├── kiro_cli_processing_output.txt │ ├── q_cli_completed_output.txt │ ├── q_cli_complex_response.txt │ ├── q_cli_error_output.txt │ ├── q_cli_handoff_error.txt │ ├── q_cli_handoff_successful.txt │ ├── q_cli_handoff_with_permission.txt │ ├── q_cli_idle_output.txt │ ├── q_cli_permission_output.txt │ └── q_cli_processing_output.txt │ ├── test_kiro_cli_unit.py │ ├── test_q_cli_integration.py │ └── test_q_cli_unit.py ├── tmux-install.sh └── uv.lock /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/test-kiro-cli-provider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/.github/workflows/test-kiro-cli-provider.yml -------------------------------------------------------------------------------- /.github/workflows/test-q-cli-provider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/.github/workflows/test-q-cli-provider.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/.gitignore -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/.tmux.conf -------------------------------------------------------------------------------- /CODEBASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/CODEBASE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/README.md -------------------------------------------------------------------------------- /docs/agent-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/docs/agent-profile.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/assets/cao_architecture.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/docs/assets/cao_architecture.mmd -------------------------------------------------------------------------------- /docs/assets/cao_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/docs/assets/cao_architecture.png -------------------------------------------------------------------------------- /docs/assets/handoff-workflow.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/docs/assets/handoff-workflow.mmd -------------------------------------------------------------------------------- /docs/assets/handoff-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/docs/assets/handoff-workflow.png -------------------------------------------------------------------------------- /docs/assets/multi-role-feature-development.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/docs/assets/multi-role-feature-development.mmd -------------------------------------------------------------------------------- /docs/assets/multi-role-feature-development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/docs/assets/multi-role-feature-development.png -------------------------------------------------------------------------------- /docs/assets/parallel-data-analysis.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/docs/assets/parallel-data-analysis.mmd -------------------------------------------------------------------------------- /docs/assets/parallel-data-analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/docs/assets/parallel-data-analysis.png -------------------------------------------------------------------------------- /docs/assets/parallel-test-execution.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/docs/assets/parallel-test-execution.mmd -------------------------------------------------------------------------------- /docs/assets/parallel-test-execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/docs/assets/parallel-test-execution.png -------------------------------------------------------------------------------- /docs/assets/tmux_all_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/docs/assets/tmux_all_windows.png -------------------------------------------------------------------------------- /examples/assign/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/examples/assign/README.md -------------------------------------------------------------------------------- /examples/assign/analysis_supervisor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/examples/assign/analysis_supervisor.md -------------------------------------------------------------------------------- /examples/assign/data_analyst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/examples/assign/data_analyst.md -------------------------------------------------------------------------------- /examples/assign/report_generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/examples/assign/report_generator.md -------------------------------------------------------------------------------- /examples/flow/morning-trivia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/examples/flow/morning-trivia.md -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/agent_store/code_supervisor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/agent_store/code_supervisor.md -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/agent_store/developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/agent_store/developer.md -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/agent_store/reviewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/agent_store/reviewer.md -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/api/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/api/main.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/cli/commands/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/cli/commands/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/cli/commands/flow.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/cli/commands/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/cli/commands/init.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/cli/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/cli/commands/install.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/cli/commands/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/cli/commands/launch.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/cli/commands/shutdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/cli/commands/shutdown.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/cli/main.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/clients/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/clients/database.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/clients/tmux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/clients/tmux.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/constants.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/mcp_server/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/mcp_server/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/mcp_server/models.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/mcp_server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/mcp_server/server.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/mcp_server/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/mcp_server/utils.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/models/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/models/agent_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/models/agent_profile.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/models/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/models/flow.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/models/inbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/models/inbox.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/models/kiro_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/models/kiro_agent.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/models/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/models/provider.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/models/q_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/models/q_agent.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/models/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/models/session.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/models/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/models/terminal.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/providers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/providers/base.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/providers/claude_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/providers/claude_code.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/providers/kiro_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/providers/kiro_cli.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/providers/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/providers/manager.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/providers/q_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/providers/q_cli.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/services/cleanup_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/services/cleanup_service.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/services/flow_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/services/flow_service.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/services/inbox_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/services/inbox_service.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/services/session_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/services/session_service.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/services/terminal_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/services/terminal_service.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/utils/agent_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/utils/agent_profiles.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/utils/logging.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/utils/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/utils/template.py -------------------------------------------------------------------------------- /src/cli_agent_orchestrator/utils/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/src/cli_agent_orchestrator/utils/terminal.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/providers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/README.md -------------------------------------------------------------------------------- /test/providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/providers/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/providers/fixtures/create_handoff_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/fixtures/create_handoff_fixtures.py -------------------------------------------------------------------------------- /test/providers/fixtures/generate_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/fixtures/generate_fixtures.py -------------------------------------------------------------------------------- /test/providers/fixtures/kiro_cli_completed_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/fixtures/kiro_cli_completed_output.txt -------------------------------------------------------------------------------- /test/providers/fixtures/kiro_cli_complex_response.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/fixtures/kiro_cli_complex_response.txt -------------------------------------------------------------------------------- /test/providers/fixtures/kiro_cli_error_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/fixtures/kiro_cli_error_output.txt -------------------------------------------------------------------------------- /test/providers/fixtures/kiro_cli_handoff_error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/fixtures/kiro_cli_handoff_error.txt -------------------------------------------------------------------------------- /test/providers/fixtures/kiro_cli_handoff_successful.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/fixtures/kiro_cli_handoff_successful.txt -------------------------------------------------------------------------------- /test/providers/fixtures/kiro_cli_handoff_with_permission.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/fixtures/kiro_cli_handoff_with_permission.txt -------------------------------------------------------------------------------- /test/providers/fixtures/kiro_cli_idle_output.txt: -------------------------------------------------------------------------------- 1 | [developer]> -------------------------------------------------------------------------------- /test/providers/fixtures/kiro_cli_permission_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/fixtures/kiro_cli_permission_output.txt -------------------------------------------------------------------------------- /test/providers/fixtures/kiro_cli_processing_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/fixtures/kiro_cli_processing_output.txt -------------------------------------------------------------------------------- /test/providers/fixtures/q_cli_completed_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/fixtures/q_cli_completed_output.txt -------------------------------------------------------------------------------- /test/providers/fixtures/q_cli_complex_response.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/fixtures/q_cli_complex_response.txt -------------------------------------------------------------------------------- /test/providers/fixtures/q_cli_error_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/fixtures/q_cli_error_output.txt -------------------------------------------------------------------------------- /test/providers/fixtures/q_cli_handoff_error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/fixtures/q_cli_handoff_error.txt -------------------------------------------------------------------------------- /test/providers/fixtures/q_cli_handoff_successful.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/fixtures/q_cli_handoff_successful.txt -------------------------------------------------------------------------------- /test/providers/fixtures/q_cli_handoff_with_permission.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/fixtures/q_cli_handoff_with_permission.txt -------------------------------------------------------------------------------- /test/providers/fixtures/q_cli_idle_output.txt: -------------------------------------------------------------------------------- 1 | [developer]> -------------------------------------------------------------------------------- /test/providers/fixtures/q_cli_permission_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/fixtures/q_cli_permission_output.txt -------------------------------------------------------------------------------- /test/providers/fixtures/q_cli_processing_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/fixtures/q_cli_processing_output.txt -------------------------------------------------------------------------------- /test/providers/test_kiro_cli_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/test_kiro_cli_unit.py -------------------------------------------------------------------------------- /test/providers/test_q_cli_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/test_q_cli_integration.py -------------------------------------------------------------------------------- /test/providers/test_q_cli_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/test/providers/test_q_cli_unit.py -------------------------------------------------------------------------------- /tmux-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/tmux-install.sh -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/cli-agent-orchestrator/HEAD/uv.lock --------------------------------------------------------------------------------