LICENSE
MANIFEST.in
pyproject.toml
readme.md
requirements.txt
src/agentmatrix/__init__.py
src/agentmatrix/cli.py
src/agentmatrix/agents/__init__.py
src/agentmatrix/agents/base.py
src/agentmatrix/agents/deep_researcher.py
src/agentmatrix/agents/micro_agent.py
src/agentmatrix/agents/post_office.py
src/agentmatrix/agents/user_proxy.py
src/agentmatrix/backends/__init__.py
src/agentmatrix/backends/llm_client.py
src/agentmatrix/backends/mock_llm.py
src/agentmatrix/core/__init__.py
src/agentmatrix/core/action.py
src/agentmatrix/core/cerebellum.py
src/agentmatrix/core/config.py
src/agentmatrix/core/config_schemas.py
src/agentmatrix/core/config_verifier.py
src/agentmatrix/core/docker_manager.py
src/agentmatrix/core/events.py
src/agentmatrix/core/exceptions.py
src/agentmatrix/core/id_generator.py
src/agentmatrix/core/loader.py
src/agentmatrix/core/log_config.py
src/agentmatrix/core/log_util.py
src/agentmatrix/core/message.py
src/agentmatrix/core/paths.py
src/agentmatrix/core/readable_id_generator.py
src/agentmatrix/core/runtime.py
src/agentmatrix/core/scheduler_service.py
src/agentmatrix/core/service_monitor.py
src/agentmatrix/core/session_manager.py
src/agentmatrix/core/system_status_collector.py
src/agentmatrix/core/browser/bing.py
src/agentmatrix/core/browser/browser_adapter.py
src/agentmatrix/core/browser/browser_common.py
src/agentmatrix/core/browser/drission_page_adapter.py
src/agentmatrix/core/browser/google.py
src/agentmatrix/core/config_sections/__init__.py
src/agentmatrix/core/config_sections/container_config.py
src/agentmatrix/core/container/__init__.py
src/agentmatrix/core/container/compat.py
src/agentmatrix/core/container/container_manager.py
src/agentmatrix/core/container/docker_adapter.py
src/agentmatrix/core/container/podman_adapter.py
src/agentmatrix/core/container/runtime_adapter.py
src/agentmatrix/core/container/runtime_factory.py
src/agentmatrix/db/__init__.py
src/agentmatrix/db/agent_matrix_db.py
src/agentmatrix/profiles/deep_researcher.yml
src/agentmatrix/profiles/mark.yml
src/agentmatrix/profiles/planner.yml
src/agentmatrix/profiles/researcher.yml
src/agentmatrix/profiles/system_admin.yml
src/agentmatrix/profiles/user_proxy.yml
src/agentmatrix/services/__init__.py
src/agentmatrix/services/config_service.py
src/agentmatrix/services/email_proxy_service.py
src/agentmatrix/skills/__init__.py
src/agentmatrix/skills/base.py
src/agentmatrix/skills/browser_skill.py
src/agentmatrix/skills/file_skill.py
src/agentmatrix/skills/md_parser.py
src/agentmatrix/skills/parser_utils.py
src/agentmatrix/skills/registry.py
src/agentmatrix/skills/agent_admin/__init__.py
src/agentmatrix/skills/agent_admin/skill.py
src/agentmatrix/skills/base/skill.py
src/agentmatrix/skills/deep_researcher/__init__.py
src/agentmatrix/skills/deep_researcher/filesystem_spec.md
src/agentmatrix/skills/deep_researcher/helpers.py
src/agentmatrix/skills/deep_researcher/prompts.py
src/agentmatrix/skills/deep_researcher/skill.py
src/agentmatrix/skills/deep_researcher_helper/__init__.py
src/agentmatrix/skills/deep_researcher_helper/skill.py
src/agentmatrix/skills/deprecated/report_writer.py
src/agentmatrix/skills/deprecated/report_writer_utils.py
src/agentmatrix/skills/email/__init__.py
src/agentmatrix/skills/email/skill.py
src/agentmatrix/skills/experiment/browser_vision_divider.py
src/agentmatrix/skills/experiment/browser_vision_locator.py
src/agentmatrix/skills/experiment/browser_vision_prompts.py
src/agentmatrix/skills/git-workflow/skill.md
src/agentmatrix/skills/markdown/__init__.py
src/agentmatrix/skills/markdown/ast.py
src/agentmatrix/skills/markdown/parser.py
src/agentmatrix/skills/markdown/renderer.py
src/agentmatrix/skills/markdown/skill.py
src/agentmatrix/skills/memory/__init__.py
src/agentmatrix/skills/memory/parser_utils.py
src/agentmatrix/skills/memory/skill.py
src/agentmatrix/skills/memory/storage.py
src/agentmatrix/skills/memory/utils.py
src/agentmatrix/skills/old_skills/browser_use_skill.py
src/agentmatrix/skills/old_skills/browser_use_skill_README.md
src/agentmatrix/skills/old_skills/crawler_helpers.py
src/agentmatrix/skills/old_skills/data_crawler.py
src/agentmatrix/skills/old_skills/deep_researcher.py
src/agentmatrix/skills/old_skills/deep_researcher_helper.py
src/agentmatrix/skills/old_skills/file_operations_skill.py
src/agentmatrix/skills/old_skills/file_skill_old.py
src/agentmatrix/skills/old_skills/filesystem.py
src/agentmatrix/skills/old_skills/markdown_editor.py
src/agentmatrix/skills/old_skills/project_management.py
src/agentmatrix/skills/old_skills/search_results_parser.py
src/agentmatrix/skills/old_skills/search_tool.py
src/agentmatrix/skills/old_skills/skill_helpers.py
src/agentmatrix/skills/old_skills/terminal_ctrl.py
src/agentmatrix/skills/old_skills/utils.py
src/agentmatrix/skills/old_skills/web_search_skill.py
src/agentmatrix/skills/old_skills/web_searcher.py
src/agentmatrix/skills/old_skills/web_searcher_v2.py
src/agentmatrix/skills/scheduler/__init__.py
src/agentmatrix/skills/scheduler/skill.py
src/agentmatrix/skills/scheduler/time_utils.py
src/agentmatrix/skills/simple_web_search/crawler_helpers.py
src/agentmatrix/skills/simple_web_search/search_results_parser.py
src/agentmatrix/skills/simple_web_search/skill.py
src/agentmatrix/skills/simple_web_search/utils.py
src/agentmatrix/skills/system_admin/__init__.py
src/agentmatrix/skills/system_admin/skill.py
src/agentmatrix/utils/__init__.py
src/agentmatrix/utils/parser_utils.py
src/agentmatrix/utils/token_utils.py
src/matrix_for_agents.egg-info/PKG-INFO
src/matrix_for_agents.egg-info/SOURCES.txt
src/matrix_for_agents.egg-info/dependency_links.txt
src/matrix_for_agents.egg-info/requires.txt
src/matrix_for_agents.egg-info/top_level.txt