LICENSE
README.md
pyproject.toml
src/diploid_agent/__init__.py
src/diploid_agent/config.py
src/diploid_agent/dispatch.py
src/diploid_agent/harness.py
src/diploid_agent/mcp.py
src/diploid_agent/mcp_stdio.py
src/diploid_agent/memory.py
src/diploid_agent/memory_mcp.py
src/diploid_agent/metrics.py
src/diploid_agent/models.py
src/diploid_agent/notifier.py
src/diploid_agent/persona_composer.py
src/diploid_agent/plugin_incidents.py
src/diploid_agent/plugin_sandbox.py
src/diploid_agent/skills.py
src/diploid_agent/telegram_ingress.py
src/diploid_agent/telegram_poll.py
src/diploid_agent.egg-info/PKG-INFO
src/diploid_agent.egg-info/SOURCES.txt
src/diploid_agent.egg-info/dependency_links.txt
src/diploid_agent.egg-info/requires.txt
src/diploid_agent.egg-info/top_level.txt
src/diploid_agent/acp_client/__init__.py
src/diploid_agent/acp_client/client.py
src/diploid_agent/acp_client/control.py
src/diploid_agent/acp_client/errors.py
src/diploid_agent/acp_client/lifecycle.py
src/diploid_agent/acp_client/sandbox.py
src/diploid_agent/acp_client/sessions.py
src/diploid_agent/acp_client/transport.py
src/diploid_agent/acp_client/types.py
src/diploid_agent/acp_client/utils.py
src/diploid_agent/acp_client/watchdog.py
src/diploid_agent/context/__init__.py
src/diploid_agent/context/builder.py
src/diploid_agent/engine/__init__.py
src/diploid_agent/engine/acp.py
src/diploid_agent/engine/base.py
src/diploid_agent/engine/factory.py
src/diploid_agent/engine/fake.py
src/diploid_agent/engine/router.py
src/diploid_agent/plan/__init__.py
src/diploid_agent/plan/manager.py
src/diploid_agent/plan/models.py
src/diploid_agent/plugins/__init__.py
src/diploid_agent/plugins/base.py
src/diploid_agent/plugins/broken.py
src/diploid_agent/plugins/contexts.py
src/diploid_agent/plugins/json_state.py
src/diploid_agent/plugins/manager.py
src/diploid_agent/runtime/__init__.py
src/diploid_agent/runtime/actions.py
src/diploid_agent/runtime/agent_runtime.py
src/diploid_agent/runtime/config_manager.py
src/diploid_agent/runtime/event_bus.py
src/diploid_agent/runtime/events.py
src/diploid_agent/runtime/instance.py
src/diploid_agent/runtime/mcp_skills.py
src/diploid_agent/runtime/metrics.py
src/diploid_agent/runtime/outbox.py
src/diploid_agent/runtime/planning.py
src/diploid_agent/runtime/plugin_runtime.py
src/diploid_agent/runtime/plugins.py
src/diploid_agent/runtime/prompts.py
src/diploid_agent/runtime/store.py
src/diploid_agent/runtime/subagent.py
src/diploid_agent/runtime/timer_service.py
src/diploid_agent/runtime/turn_controller.py
src/diploid_agent/runtime/wake_queue.py
src/diploid_agent/task/__init__.py
src/diploid_agent/task/engine.py
src/diploid_agent/task/worker.py
src/diploid_agent/testing/__init__.py
src/diploid_agent/testing/fake_runtime.py
src/diploid_agent/transport/__init__.py
src/diploid_agent/transport/base.py
src/diploid_agent/transport/command_handler.py
src/diploid_agent/transport/ingress.py
src/diploid_agent/transport/interactive.py
src/diploid_agent/transport/telegram_format.py
src/diploid_agent/transport/http/__init__.py
src/diploid_agent/transport/http/app.py
src/diploid_agent/transport/http/models.py
src/diploid_agent/transport/http/utils.py
src/diploid_agent/transport/http/routes/__init__.py
src/diploid_agent/transport/http/routes/chat.py
src/diploid_agent/transport/http/routes/config.py
src/diploid_agent/transport/http/routes/health.py
src/diploid_agent/transport/http/routes/mesh.py
src/diploid_agent/transport/http/routes/models.py
src/diploid_agent/transport/http/routes/plans.py
src/diploid_agent/transport/http/routes/plugins.py
src/diploid_agent/transport/http/routes/runtime.py
src/diploid_agent/transport/http/routes/sessions.py
src/diploid_agent/transport/http/routes/skills.py
src/diploid_agent/transport/http/routes/state.py
src/diploid_agent/transport/http/routes/webhook.py
src/diploid_agent/transport/telegram/__init__.py
src/diploid_agent/transport/telegram/commands.py
src/diploid_agent/transport/telegram/formatting.py
src/diploid_agent/transport/telegram/models.py
src/diploid_agent/transport/telegram/poller.py
src/diploid_agent/transport/telegram/sender.py
src/diploid_agent/transport/telegram/state.py
src/diploid_agent/transport/telegram/transport.py
src/diploid_agent/transport/telegram/workers.py
src/diploid_agent/turn/__init__.py
src/diploid_agent/turn/controller.py
src/diploid_agent/turn/dispatch.py
src/diploid_agent/turn/notifier.py
src/diploid_agent/turn/process.py
src/diploid_agent/turn/rehydrate.py
src/diploid_agent/turn/session.py
tests/test_acp_client.py
tests/test_acp_client_timeout.py
tests/test_acp_control.py
tests/test_acp_reader.py
tests/test_acp_resume.py
tests/test_acp_transport.py
tests/test_config.py
tests/test_config_endpoint.py
tests/test_context.py
tests/test_dispatch.py
tests/test_dispatch_wake.py
tests/test_engine.py
tests/test_engine_factory.py
tests/test_event_bus.py
tests/test_harness.py
tests/test_harness_self_state.py
tests/test_health.py
tests/test_http_plan.py
tests/test_http_plugin_hot_swap.py
tests/test_http_runtime.py
tests/test_http_wake.py
tests/test_ingress.py
tests/test_instance.py
tests/test_interactive.py
tests/test_mcp.py
tests/test_memory.py
tests/test_memory_mcp.py
tests/test_metrics.py
tests/test_model_router.py
tests/test_models_wake_partial.py
tests/test_notifier.py
tests/test_persona_composer.py
tests/test_plan.py
tests/test_plan_notifications.py
tests/test_plugin_contract.py
tests/test_plugin_create.py
tests/test_plugin_hot_swap.py
tests/test_plugin_incidents.py
tests/test_plugin_lifecycle.py
tests/test_plugin_loading.py
tests/test_plugin_m5_hooks.py
tests/test_plugin_reload.py
tests/test_plugin_runtime.py
tests/test_plugin_safety.py
tests/test_plugin_sandbox.py
tests/test_plugin_state_restore.py
tests/test_plugin_transport.py
tests/test_prompt_watchdog.py
tests/test_runtime.py
tests/test_runtime_lifecycle.py
tests/test_runtime_wake.py
tests/test_skills.py
tests/test_smoke.py
tests/test_task_engine.py
tests/test_telegram_format.py
tests/test_telegram_ingress.py
tests/test_telegram_mixins.py
tests/test_telegram_poll.py
tests/test_timer_service.py
tests/test_turn_status.py
tests/test_wake_context.py
tests/test_wake_queue.py
tests/test_watchdog.py