.gitignore
CHANGELOG.md
CONTRIBUTING.md
Dockerfile
LICENSE
Makefile
README.md
REQUIREMENTS.md
coverage.json
docker-compose.yml
install.sh
pyproject.toml
tmp_real_test_config.json
.github/workflows/build-launcher.yml
.github/workflows/ci.yml
.github/workflows/release.yml
agent_fabric.egg-info/PKG-INFO
agent_fabric.egg-info/SOURCES.txt
agent_fabric.egg-info/dependency_links.txt
agent_fabric.egg-info/entry_points.txt
agent_fabric.egg-info/requires.txt
agent_fabric.egg-info/top_level.txt
docs/ARCHITECTURE.md
docs/BACKENDS.md
docs/BACKLOG.md
docs/CAPABILITIES.md
docs/DECISIONS.md
docs/DESIGN.md
docs/DESIGN_ASSESSMENT.md
docs/DESIGN_V2.md
docs/ENGINEERING.md
docs/LLM_OPTIONS.md
docs/LOCAL_FIRST_REWORK_PLAN.md
docs/MCP_INTEGRATIONS.md
docs/PLAN.md
docs/README.md
docs/SELF_CONTAINED_LLM.md
docs/STATE.md
docs/USER_GUIDE.md
docs/VERIFICATION_PASSES.md
docs/VISION.md
examples/ollama-fast-verify.json
examples/ollama.json
launcher/Cargo.lock
launcher/Cargo.toml
launcher/rust-toolchain.toml
launcher/src/config.rs
launcher/src/exec.rs
launcher/src/main.rs
launcher/src/setup.rs
launcher/src/update.rs
scripts/generate_signing_key.sh
scripts/validate_full.py
scripts/verify_manual.sh
scripts/verify_working.py
scripts/verify_working_real.py
src/agentic_concierge/__init__.py
src/agentic_concierge/py.typed
src/agentic_concierge.egg-info/PKG-INFO
src/agentic_concierge.egg-info/SOURCES.txt
src/agentic_concierge.egg-info/dependency_links.txt
src/agentic_concierge.egg-info/entry_points.txt
src/agentic_concierge.egg-info/requires.txt
src/agentic_concierge.egg-info/top_level.txt
src/agentic_concierge/application/__init__.py
src/agentic_concierge/application/affinity_executor.py
src/agentic_concierge/application/agent_roles.py
src/agentic_concierge/application/approval.py
src/agentic_concierge/application/doctor.py
src/agentic_concierge/application/execute_task.py
src/agentic_concierge/application/graph_checkpoint.py
src/agentic_concierge/application/graph_executor.py
src/agentic_concierge/application/json_parsing.py
src/agentic_concierge/application/leaf_adapter.py
src/agentic_concierge/application/orchestrator.py
src/agentic_concierge/application/planner.py
src/agentic_concierge/application/ports.py
src/agentic_concierge/application/task_graph.py
src/agentic_concierge/bootstrap/__init__.py
src/agentic_concierge/bootstrap/backend_manager.py
src/agentic_concierge/bootstrap/detected.py
src/agentic_concierge/bootstrap/first_run.py
src/agentic_concierge/bootstrap/model_advisor.py
src/agentic_concierge/bootstrap/system_probe.py
src/agentic_concierge/config/__init__.py
src/agentic_concierge/config/constants.py
src/agentic_concierge/config/external.py
src/agentic_concierge/config/features.py
src/agentic_concierge/config/loader.py
src/agentic_concierge/config/platform.py
src/agentic_concierge/config/schema.py
src/agentic_concierge/config/defaults/README.yaml
src/agentic_concierge/config/defaults/__init__.py
src/agentic_concierge/config/defaults/backends.yaml
src/agentic_concierge/config/defaults/model_profiles.yaml
src/agentic_concierge/config/defaults/model_sources.yaml
src/agentic_concierge/config/defaults/models.yaml
src/agentic_concierge/config/defaults/platform.yaml
src/agentic_concierge/config/defaults/templates/engineering.yaml
src/agentic_concierge/config/defaults/templates/enterprise_research.yaml
src/agentic_concierge/config/defaults/templates/research.yaml
src/agentic_concierge/domain/__init__.py
src/agentic_concierge/domain/errors.py
src/agentic_concierge/domain/models.py
src/agentic_concierge/infrastructure/__init__.py
src/agentic_concierge/infrastructure/llm_bootstrap.py
src/agentic_concierge/infrastructure/llm_discovery.py
src/agentic_concierge/infrastructure/model_profiles.py
src/agentic_concierge/infrastructure/telemetry.py
src/agentic_concierge/infrastructure/approval/__init__.py
src/agentic_concierge/infrastructure/approval/auto.py
src/agentic_concierge/infrastructure/approval/cli_channel.py
src/agentic_concierge/infrastructure/approval/http_channel.py
src/agentic_concierge/infrastructure/backends/__init__.py
src/agentic_concierge/infrastructure/backends/capability_probe.py
src/agentic_concierge/infrastructure/backends/llama_cpp.py
src/agentic_concierge/infrastructure/backends/model_downloader.py
src/agentic_concierge/infrastructure/backends/model_runtime.py
src/agentic_concierge/infrastructure/backends/ollama.py
src/agentic_concierge/infrastructure/backends/protocol.py
src/agentic_concierge/infrastructure/backends/registry.py
src/agentic_concierge/infrastructure/backends/simple_runtime.py
src/agentic_concierge/infrastructure/chat/__init__.py
src/agentic_concierge/infrastructure/chat/_parser.py
src/agentic_concierge/infrastructure/chat/fallback.py
src/agentic_concierge/infrastructure/chat/generic.py
src/agentic_concierge/infrastructure/chat/vllm.py
src/agentic_concierge/infrastructure/mcp/__init__.py
src/agentic_concierge/infrastructure/mcp/augmented_pack.py
src/agentic_concierge/infrastructure/mcp/converter.py
src/agentic_concierge/infrastructure/mcp/session.py
src/agentic_concierge/infrastructure/ollama/__init__.py
src/agentic_concierge/infrastructure/ollama/client.py
src/agentic_concierge/infrastructure/specialists/__init__.py
src/agentic_concierge/infrastructure/specialists/base.py
src/agentic_concierge/infrastructure/specialists/containerised.py
src/agentic_concierge/infrastructure/specialists/dynamic_pack.py
src/agentic_concierge/infrastructure/specialists/finish_schemas.py
src/agentic_concierge/infrastructure/specialists/prompts.py
src/agentic_concierge/infrastructure/specialists/registry.py
src/agentic_concierge/infrastructure/specialists/tool_catalog.py
src/agentic_concierge/infrastructure/specialists/tool_defs.py
src/agentic_concierge/infrastructure/tools/__init__.py
src/agentic_concierge/infrastructure/tools/browser_tool.py
src/agentic_concierge/infrastructure/tools/consult.py
src/agentic_concierge/infrastructure/tools/file_tools.py
src/agentic_concierge/infrastructure/tools/sandbox.py
src/agentic_concierge/infrastructure/tools/shell_tools.py
src/agentic_concierge/infrastructure/tools/test_runner.py
src/agentic_concierge/infrastructure/tools/web_tools.py
src/agentic_concierge/infrastructure/workspace/__init__.py
src/agentic_concierge/infrastructure/workspace/graph_checkpoint.py
src/agentic_concierge/infrastructure/workspace/run_directory.py
src/agentic_concierge/infrastructure/workspace/run_index.py
src/agentic_concierge/infrastructure/workspace/run_index_chroma.py
src/agentic_concierge/infrastructure/workspace/run_log.py
src/agentic_concierge/infrastructure/workspace/run_reader.py
src/agentic_concierge/infrastructure/workspace/run_repository.py
src/agentic_concierge/interfaces/__init__.py
src/agentic_concierge/interfaces/cli.py
src/agentic_concierge/interfaces/http_api.py
tests/__init__.py
tests/conftest.py
tests/e2e_config.json
tests/mock_llm_server.py
tests/test_affinity_executor.py
tests/test_agent_roles.py
tests/test_api_auth.py
tests/test_api_rate_limit.py
tests/test_approval.py
tests/test_backend_manager.py
tests/test_backend_registry.py
tests/test_backends_alignment.py
tests/test_backends_yaml.py
tests/test_browser_tool.py
tests/test_capability_probe.py
tests/test_capability_routing.py
tests/test_chat_fallback.py
tests/test_cli_commands.py
tests/test_config.py
tests/test_consult_model.py
tests/test_containerised_pack.py
tests/test_delegation.py
tests/test_doctor.py
tests/test_doctor_cli.py
tests/test_dynamic_pack.py
tests/test_engineering_pack_quality.py
tests/test_enterprise_research_pack.py
tests/test_escalation.py
tests/test_execute_task.py
tests/test_external_config.py
tests/test_features.py
tests/test_finish_schemas.py
tests/test_first_run.py
tests/test_generic_client.py
tests/test_graph_checkpoint_io.py
tests/test_graph_checkpoint_serialization.py
tests/test_graph_executor.py
tests/test_integration.py
tests/test_json_tools.py
tests/test_leaf_adapter.py
tests/test_llama_cpp_backend.py
tests/test_llm_bootstrap.py
tests/test_llm_discovery.py
tests/test_local_model_runtime.py
tests/test_logs_cli.py
tests/test_mcp_augmented_pack.py
tests/test_mcp_real_github.py
tests/test_mcp_real_server.py
tests/test_mcp_registry.py
tests/test_mcp_session.py
tests/test_model_advisor.py
tests/test_model_downloader.py
tests/test_model_handle.py
tests/test_model_profiles.py
tests/test_models_yaml.py
tests/test_ollama_backend.py
tests/test_ops_items.py
tests/test_orchestrate_task.py
tests/test_orchestrator_dynamic.py
tests/test_packs.py
tests/test_parallel_task_force.py
tests/test_per_specialist_model.py
tests/test_planner.py
tests/test_platform.py
tests/test_preload.py
tests/test_resume_execute_task.py
tests/test_review.py
tests/test_reviewer_model.py
tests/test_routing_model.py
tests/test_run_index.py
tests/test_run_index_chroma.py
tests/test_run_index_semantic.py
tests/test_run_status.py
tests/test_run_streaming.py
tests/test_run_tests_tool.py
tests/test_sandbox.py
tests/test_specialist_marketplace_integration.py
tests/test_specialist_registry.py
tests/test_streaming_cli.py
tests/test_string_coercion.py
tests/test_system_probe.py
tests/test_task_factory.py
tests/test_task_force.py
tests/test_task_graph.py
tests/test_telemetry.py
tests/test_templates_yaml.py
tests/test_tool_catalog.py
tests/test_vllm_client.py
tests/test_workflow_prompt.py