MANIFEST.in
README.md
errors.py
main.py
merlin.py
pyproject.toml
brain/__init__.py
brain/core.py
brain/escalation_policy.py
brain/ordinal_resolver.py
brain/structural_classifier.py
config/app_aliases.yaml
config/app_capabilities.yaml
config/browser.yaml.example
config/email.yaml.example
config/execution.yaml
config/models.yaml
config/paths.yaml
config/routing.yaml
config/skills.yaml
config/telegram.yaml.example
config/whatsapp.yaml
conversation/__init__.py
conversation/frame.py
conversation/outcome.py
cortex/__init__.py
cortex/cognitive_coordinator.py
cortex/context_provider.py
cortex/entity_resolver.py
cortex/fallback.py
cortex/filtered_world_state_provider.py
cortex/intent_engine.py
cortex/json_extraction.py
cortex/mission_cortex.py
cortex/mission_schema.py
cortex/normalizer.py
cortex/parameter_resolver.py
cortex/preference_resolver.py
cortex/scored_discovery.py
cortex/semantic_types.py
cortex/skill_discovery.py
cortex/synonyms.py
cortex/validators.py
cortex/world_state_provider.py
execution/__init__.py
execution/cognitive_context.py
execution/executor.py
execution/metacognition.py
execution/registry.py
execution/scheduler.py
execution/skill_context.py
execution/supervisor.py
infrastructure/__init__.py
infrastructure/app_capabilities.py
infrastructure/app_discovery.py
infrastructure/application_registry.py
infrastructure/browser_controller.py
infrastructure/browser_safety.py
infrastructure/browser_use_adapter.py
infrastructure/browser_use_controller.py
infrastructure/location_config.py
infrastructure/observer.py
infrastructure/search_input_resolver.py
infrastructure/session.py
infrastructure/system_controller.py
infrastructure/voice_factory.py
interface/__init__.py
interface/api_server.py
interface/bridge.py
interface/config_schema.py
interface/ipc.py
interface/log_buffer.py
interface/telegram_bot.py
ir/__init__.py
ir/mission.py
memory/__init__.py
memory/store.py
memory/user_knowledge.py
merlin_assistant/__init__.py
merlin_assistant/cli.py
merlin_assistant/config_discovery.py
merlin_assistant/setup_wizard.py
merlin_assistant.egg-info/PKG-INFO
merlin_assistant.egg-info/SOURCES.txt
merlin_assistant.egg-info/dependency_links.txt
merlin_assistant.egg-info/entry_points.txt
merlin_assistant.egg-info/requires.txt
merlin_assistant.egg-info/top_level.txt
merlin_assistant/default_config/.env.example
merlin_assistant/default_config/app_aliases.yaml
merlin_assistant/default_config/app_capabilities.yaml
merlin_assistant/default_config/execution.yaml
merlin_assistant/default_config/paths.yaml
merlin_assistant/default_config/routing.yaml
merlin_assistant/default_config/skills.yaml
metrics/__init__.py
metrics/collect_compiler_baseline.py
metrics/measure_decision_system.py
metrics/measure_phase3a_world_state_reduction.py
metrics/measure_phase3b_context_reduction.py
models/__init__.py
models/base.py
models/gemini_client.py
models/huggingface_client.py
models/key_pool.py
models/ollama_client.py
models/openrouter_client.py
models/router.py
orchestrator/__init__.py
orchestrator/mission_orchestrator.py
perception/__init__.py
perception/audio_recorder.py
perception/normalize.py
perception/perception_orchestrator.py
perception/speech.py
perception/stt_engine.py
perception/text.py
perception/vision.py
perception/engines/__init__.py
perception/engines/mock_stt.py
perception/engines/whisper_stt.py
providers/__init__.py
providers/communication/__init__.py
providers/communication/base.py
providers/email/__init__.py
providers/email/base.py
providers/email/client.py
providers/email/smtp_provider.py
providers/whatsapp/__init__.py
providers/whatsapp/client.py
providers/whatsapp/connection_manager.py
providers/whatsapp/contact_resolver.py
providers/whatsapp/neonize_provider.py
providers/whatsapp/rate_limiter.py
reporting/__init__.py
reporting/narration.py
reporting/notification_policy.py
reporting/output.py
reporting/report_builder.py
reporting/tts_engine.py
reporting/engines/__init__.py
reporting/engines/pyttsx3_tts.py
reporting/engines/silent_tts.py
runtime/__init__.py
runtime/attention.py
runtime/completion_event.py
runtime/event_loop.py
runtime/json_task_store.py
runtime/reflex_engine.py
runtime/scheduler.py
runtime/task_store.py
runtime/temporal_resolver.py
runtime/tick_scheduler.py
runtime/sources/__init__.py
runtime/sources/base.py
runtime/sources/browser.py
runtime/sources/media.py
runtime/sources/system.py
runtime/sources/time.py
skills/__init__.py
skills/base.py
skills/contract.py
skills/skill_result.py
skills/browser/__init__.py
skills/browser/autonomous_task.py
skills/browser/browser_click.py
skills/browser/browser_fill.py
skills/browser/browser_find_element.py
skills/browser/browser_go_back.py
skills/browser/browser_go_forward.py
skills/browser/browser_keypress.py
skills/browser/browser_navigate.py
skills/browser/browser_scroll.py
skills/browser/browser_search.py
skills/browser/browser_select_result.py
skills/browser/browser_wait_for.py
skills/email/__init__.py
skills/email/draft_message.py
skills/email/modify_draft.py
skills/email/read_inbox.py
skills/email/search_email.py
skills/email/send_message.py
skills/fs/__init__.py
skills/fs/create_folder.py
skills/fs/list_directory.py
skills/fs/read_file.py
skills/fs/search_file.py
skills/fs/write_file.py
skills/memory/__init__.py
skills/memory/memory_skills.py
skills/reasoning/__init__.py
skills/reasoning/generate_text.py
skills/system/__init__.py
skills/system/cancel_job.py
skills/system/close_app.py
skills/system/focus_app.py
skills/system/get_battery.py
skills/system/get_now_playing.py
skills/system/get_system_status.py
skills/system/get_time.py
skills/system/list_apps.py
skills/system/list_jobs.py
skills/system/media_next.py
skills/system/media_pause.py
skills/system/media_play.py
skills/system/media_previous.py
skills/system/mute.py
skills/system/open_app.py
skills/system/set_brightness.py
skills/system/set_volume.py
skills/system/toggle_nightlight.py
skills/system/unmute.py
skills/whatsapp/__init__.py
skills/whatsapp/send_file.py
skills/whatsapp/send_message.py
tests/test_application_registry.py
tests/test_browser_context_propagation.py
tests/test_browser_session_reuse.py
tests/test_browser_skill_outputs.py
tests/test_browser_tier_execution.py
tests/test_clarification_flow.py
tests/test_cognitive_context.py
tests/test_compiler_determinism.py
tests/test_contract_invariants.py
tests/test_conversation_history.py
tests/test_conversation_state.py
tests/test_coordinator_json.py
tests/test_coordinator_scheduling.py
tests/test_cortex_context.py
tests/test_coverage_verification.py
tests/test_decision_engine.py
tests/test_effect_recovery.py
tests/test_email_attachments.py
tests/test_entity_resolution.py
tests/test_entity_resolver.py
tests/test_environment_observer.py
tests/test_errors.py
tests/test_escalation_features.py
tests/test_event_source_attribution.py
tests/test_execution_supervisor.py
tests/test_executor_type_guard.py
tests/test_fallback.py
tests/test_file_index.py
tests/test_filtered_world_state.py
tests/test_fs_skills.py
tests/test_generate_text_skill.py
tests/test_goal_hierarchy.py
tests/test_identity_and_memory.py
tests/test_input_validation.py
tests/test_integration_steps_3_4.py
tests/test_ir_v1_compliance.py
tests/test_job_skills.py
tests/test_json_extraction.py
tests/test_json_task_store.py
tests/test_key_pool.py
tests/test_location_config.py
tests/test_max_tokens.py
tests/test_memory_skill_context.py
tests/test_mission_outcome.py
tests/test_model_router.py
tests/test_multi_provider.py
tests/test_mutation_gate.py
tests/test_normalize.py
tests/test_normalizer.py
tests/test_ordinal_resolver.py
tests/test_output_reference.py
tests/test_output_reference_e2e.py
tests/test_output_style.py
tests/test_pending_mission.py
tests/test_perception_orchestrator.py
tests/test_preference_resolver.py
tests/test_prompt_architecture.py
tests/test_reflex_voice.py
tests/test_report_builder.py
tests/test_retrieval_context_provider.py
tests/test_retry.py
tests/test_safety_and_proactive.py
tests/test_scheduler.py
tests/test_scored_discovery.py
tests/test_session_manager.py
tests/test_skill_loading_integration.py
tests/test_speech_perception.py
tests/test_structural_analyzer.py
tests/test_structural_clustering.py
tests/test_stt_engine.py
tests/test_supervisor_integration.py
tests/test_task_store.py
tests/test_temporal_resolver.py
tests/test_tick_scheduler.py
tests/test_tier_classification.py
tests/test_timeout.py
tests/test_tts_engine.py
tests/test_tts_selfhealing.py
tests/test_url_normalization.py
tests/test_voice_factory.py
tests/test_whatsapp.py
tests/test_world_resolver.py
ui/__init__.py
ui/widget/__init__.py
ui/widget/widget.py
world/__init__.py
world/file_index.py
world/file_ref.py
world/resolver.py
world/snapshot.py
world/state.py
world/timeline.py