gitextract_tp1xyq09/ ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── config.researchclaw.example.yaml ├── docs/ │ ├── BUG_FIX_DOCUMENT_20260316.md │ ├── BUG_TRACKER.md │ ├── CHANGELOG_ANTHROPIC_ADAPTER.md │ ├── PIPELINE_TEST_LOG_R5.md │ ├── README_AR.md │ ├── README_CN.md │ ├── README_DE.md │ ├── README_ES.md │ ├── README_FR.md │ ├── README_JA.md │ ├── README_KO.md │ ├── README_PT.md │ ├── README_RU.md │ ├── TESTER_GUIDE.md │ ├── TESTER_GUIDE_CN.md │ ├── TESTER_GUIDE_JA.md │ ├── agent_figure_and_benchmark_plan.md │ ├── figure_prompts/ │ │ ├── case_a_meta_learning.md │ │ └── case_b_rlhf_alignment.md │ ├── integration-guide.md │ ├── issue_tracker_v9.md │ ├── iteration_plan_v8.md │ ├── iteration_showcase_narrative.md │ ├── metaclaw-integration-plan.md │ ├── next_phase_showcase_plan.md │ ├── pipeline_critical_fixes_v8.md │ ├── rate_limit_fix_plan.md │ ├── sandbox_environment_fix_plan.md │ └── showcase/ │ └── SHOWCASE.md ├── prompts.default.yaml ├── pyproject.toml ├── researchclaw/ │ ├── __init__.py │ ├── __main__.py │ ├── adapters.py │ ├── agents/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── benchmark_agent/ │ │ │ ├── __init__.py │ │ │ ├── acquirer.py │ │ │ ├── orchestrator.py │ │ │ ├── selector.py │ │ │ ├── surveyor.py │ │ │ └── validator.py │ │ ├── code_searcher/ │ │ │ ├── __init__.py │ │ │ ├── agent.py │ │ │ ├── cache.py │ │ │ ├── github_client.py │ │ │ ├── pattern_extractor.py │ │ │ └── query_gen.py │ │ └── figure_agent/ │ │ ├── __init__.py │ │ ├── codegen.py │ │ ├── critic.py │ │ ├── decision.py │ │ ├── integrator.py │ │ ├── nano_banana.py │ │ ├── orchestrator.py │ │ ├── planner.py │ │ ├── renderer.py │ │ └── style_config.py │ ├── assessor/ │ │ ├── __init__.py │ │ ├── comparator.py │ │ ├── rubrics.py │ │ ├── scorer.py │ │ └── venue_recommender.py │ ├── calendar/ │ │ ├── __init__.py │ │ ├── data/ │ │ │ └── conferences.yaml │ │ ├── deadlines.py │ │ ├── planner.py │ │ └── reminder.py │ ├── cli.py │ ├── collaboration/ │ │ ├── __init__.py │ │ ├── dedup.py │ │ ├── publisher.py │ │ ├── repository.py │ │ └── subscriber.py │ ├── config.py │ ├── copilot/ │ │ ├── __init__.py │ │ ├── branching.py │ │ ├── controller.py │ │ ├── feedback.py │ │ └── modes.py │ ├── dashboard/ │ │ ├── __init__.py │ │ ├── broadcaster.py │ │ ├── collector.py │ │ └── metrics.py │ ├── data/ │ │ ├── __init__.py │ │ ├── benchmark_knowledge.yaml │ │ ├── dataset_registry.yaml │ │ ├── docker_profiles.yaml │ │ ├── framework_docs/ │ │ │ ├── axolotl.md │ │ │ ├── llamafactory.md │ │ │ ├── peft.md │ │ │ ├── transformers_training.md │ │ │ └── trl.md │ │ └── seminal_papers.yaml │ ├── docker/ │ │ ├── Dockerfile │ │ ├── Dockerfile.biology │ │ ├── Dockerfile.chemistry │ │ ├── Dockerfile.economics │ │ ├── Dockerfile.generic │ │ ├── Dockerfile.math │ │ ├── Dockerfile.physics │ │ └── entrypoint.sh │ ├── domains/ │ │ ├── __init__.py │ │ ├── adapters/ │ │ │ ├── __init__.py │ │ │ ├── biology.py │ │ │ ├── chemistry.py │ │ │ ├── economics.py │ │ │ ├── generic.py │ │ │ ├── math.py │ │ │ ├── ml.py │ │ │ ├── neuroscience.py │ │ │ ├── physics.py │ │ │ ├── robotics.py │ │ │ └── security.py │ │ ├── detector.py │ │ ├── experiment_schema.py │ │ ├── profiles/ │ │ │ ├── _generic.yaml │ │ │ ├── biology_genomics.yaml │ │ │ ├── biology_protein.yaml │ │ │ ├── biology_singlecell.yaml │ │ │ ├── chemistry_molprop.yaml │ │ │ ├── chemistry_qm.yaml │ │ │ ├── economics_empirical.yaml │ │ │ ├── mathematics_numerical.yaml │ │ │ ├── mathematics_optimization.yaml │ │ │ ├── ml_compression.yaml │ │ │ ├── ml_generative.yaml │ │ │ ├── ml_generic.yaml │ │ │ ├── ml_graph.yaml │ │ │ ├── ml_nlp.yaml │ │ │ ├── ml_rl.yaml │ │ │ ├── ml_tabular.yaml │ │ │ ├── ml_vision.yaml │ │ │ ├── neuroscience_computational.yaml │ │ │ ├── neuroscience_imaging.yaml │ │ │ ├── physics_pde.yaml │ │ │ ├── physics_quantum.yaml │ │ │ ├── physics_simulation.yaml │ │ │ ├── robotics_control.yaml │ │ │ └── security_detection.yaml │ │ └── prompt_adapter.py │ ├── evolution.py │ ├── experiment/ │ │ ├── __init__.py │ │ ├── agentic_sandbox.py │ │ ├── code_agent.py │ │ ├── colab_sandbox.py │ │ ├── docker_sandbox.py │ │ ├── evaluators/ │ │ │ ├── __init__.py │ │ │ └── convergence.py │ │ ├── factory.py │ │ ├── git_manager.py │ │ ├── harness_template.py │ │ ├── metrics.py │ │ ├── runner.py │ │ ├── sandbox.py │ │ ├── ssh_sandbox.py │ │ ├── validator.py │ │ └── visualize.py │ ├── feedback/ │ │ └── FEEDBACK_ANALYSIS_PROMPT.md │ ├── hardware.py │ ├── health.py │ ├── knowledge/ │ │ ├── __init__.py │ │ ├── base.py │ │ └── graph/ │ │ ├── __init__.py │ │ ├── builder.py │ │ ├── entities.py │ │ ├── query.py │ │ ├── relations.py │ │ └── visualizer.py │ ├── literature/ │ │ ├── __init__.py │ │ ├── arxiv_client.py │ │ ├── cache.py │ │ ├── models.py │ │ ├── novelty.py │ │ ├── openalex_client.py │ │ ├── search.py │ │ ├── semantic_scholar.py │ │ ├── trends.py │ │ └── verify.py │ ├── llm/ │ │ ├── __init__.py │ │ ├── acp_client.py │ │ ├── anthropic_adapter.py │ │ └── client.py │ ├── mcp/ │ │ ├── __init__.py │ │ ├── client.py │ │ ├── registry.py │ │ ├── server.py │ │ ├── tools.py │ │ └── transport.py │ ├── memory/ │ │ ├── __init__.py │ │ ├── decay.py │ │ ├── embeddings.py │ │ ├── experiment_memory.py │ │ ├── ideation_memory.py │ │ ├── retriever.py │ │ ├── store.py │ │ └── writing_memory.py │ ├── metaclaw_bridge/ │ │ ├── __init__.py │ │ ├── config.py │ │ ├── lesson_to_skill.py │ │ ├── prm_gate.py │ │ ├── session.py │ │ ├── skill_feedback.py │ │ └── stage_skill_map.py │ ├── overleaf/ │ │ ├── __init__.py │ │ ├── conflict.py │ │ ├── formatter.py │ │ ├── sync.py │ │ └── watcher.py │ ├── pipeline/ │ │ ├── __init__.py │ │ ├── _domain.py │ │ ├── _helpers.py │ │ ├── code_agent.py │ │ ├── contracts.py │ │ ├── executor.py │ │ ├── experiment_diagnosis.py │ │ ├── experiment_repair.py │ │ ├── opencode_bridge.py │ │ ├── paper_verifier.py │ │ ├── runner.py │ │ ├── stage_impls/ │ │ │ ├── __init__.py │ │ │ ├── _analysis.py │ │ │ ├── _code_generation.py │ │ │ ├── _execution.py │ │ │ ├── _experiment_design.py │ │ │ ├── _literature.py │ │ │ ├── _paper_writing.py │ │ │ ├── _review_publish.py │ │ │ ├── _synthesis.py │ │ │ └── _topic.py │ │ ├── stages.py │ │ └── verified_registry.py │ ├── project/ │ │ ├── __init__.py │ │ ├── idea_pool.py │ │ ├── manager.py │ │ ├── models.py │ │ └── scheduler.py │ ├── prompts.py │ ├── quality.py │ ├── report.py │ ├── server/ │ │ ├── __init__.py │ │ ├── app.py │ │ ├── dialog/ │ │ │ ├── __init__.py │ │ │ ├── intents.py │ │ │ ├── router.py │ │ │ └── session.py │ │ ├── middleware/ │ │ │ ├── __init__.py │ │ │ └── auth.py │ │ ├── routes/ │ │ │ ├── __init__.py │ │ │ ├── chat.py │ │ │ ├── pipeline.py │ │ │ ├── projects.py │ │ │ └── voice.py │ │ └── websocket/ │ │ ├── __init__.py │ │ ├── events.py │ │ └── manager.py │ ├── servers/ │ │ ├── __init__.py │ │ ├── cloud_executor.py │ │ ├── dispatcher.py │ │ ├── monitor.py │ │ ├── registry.py │ │ ├── slurm_executor.py │ │ └── ssh_executor.py │ ├── skills/ │ │ ├── __init__.py │ │ ├── builtin/ │ │ │ ├── __init__.py │ │ │ ├── domain/ │ │ │ │ ├── cv-classification/ │ │ │ │ │ └── SKILL.md │ │ │ │ ├── cv-detection/ │ │ │ │ │ └── SKILL.md │ │ │ │ ├── nlp-alignment/ │ │ │ │ │ └── SKILL.md │ │ │ │ ├── nlp-pretraining/ │ │ │ │ │ └── SKILL.md │ │ │ │ └── rl-policy-optimization/ │ │ │ │ └── SKILL.md │ │ │ ├── experiment/ │ │ │ │ ├── experimental-design/ │ │ │ │ │ └── SKILL.md │ │ │ │ ├── meta-analysis/ │ │ │ │ │ └── SKILL.md │ │ │ │ └── systematic-review/ │ │ │ │ └── SKILL.md │ │ │ └── tooling/ │ │ │ ├── data-loading/ │ │ │ │ └── SKILL.md │ │ │ ├── distributed-training/ │ │ │ │ └── SKILL.md │ │ │ ├── mixed-precision/ │ │ │ │ └── SKILL.md │ │ │ └── pytorch-training/ │ │ │ └── SKILL.md │ │ ├── loader.py │ │ ├── matcher.py │ │ ├── registry.py │ │ └── schema.py │ ├── templates/ │ │ ├── __init__.py │ │ ├── compiler.py │ │ ├── conference.py │ │ ├── converter.py │ │ ├── results_table_builder.py │ │ └── styles/ │ │ ├── iclr_2025/ │ │ │ ├── iclr2025_conference.bst │ │ │ └── iclr2025_conference.sty │ │ ├── iclr_2026/ │ │ │ ├── iclr2026_conference.bst │ │ │ └── iclr2026_conference.sty │ │ ├── icml_2025/ │ │ │ ├── icml2025.bst │ │ │ └── icml2025.sty │ │ ├── icml_2026/ │ │ │ ├── icml2026.bst │ │ │ └── icml2026.sty │ │ ├── neurips_2024/ │ │ │ └── neurips_2024.sty │ │ └── neurips_2025/ │ │ └── neurips_2025.sty │ ├── trends/ │ │ ├── __init__.py │ │ ├── auto_topic.py │ │ ├── daily_digest.py │ │ ├── feeds.py │ │ ├── opportunity_finder.py │ │ └── trend_analyzer.py │ ├── utils/ │ │ ├── __init__.py │ │ ├── sanitize.py │ │ └── thinking_tags.py │ ├── voice/ │ │ ├── __init__.py │ │ ├── commands.py │ │ ├── synthesizer.py │ │ └── transcriber.py │ ├── web/ │ │ ├── __init__.py │ │ ├── _ssrf.py │ │ ├── agent.py │ │ ├── crawler.py │ │ ├── pdf_extractor.py │ │ ├── scholar.py │ │ └── search.py │ ├── wizard/ │ │ ├── __init__.py │ │ ├── quickstart.py │ │ ├── templates.py │ │ └── validator.py │ └── writing_guide.py ├── scripts/ │ ├── metaclaw_start.sh │ ├── plot_iteration_showcase.py │ ├── test_beast_mode_e2e.py │ ├── test_code_agent_live.py │ ├── test_code_agent_sandbox.py │ └── test_codegen_v2.py ├── sentinel.sh ├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── e2e_docker_sandbox.py │ ├── e2e_real_llm.py │ ├── test_anthropic.py │ ├── test_assessor.py │ ├── test_benchmark_agent.py │ ├── test_calendar.py │ ├── test_cli.py │ ├── test_code_agent.py │ ├── test_code_searcher.py │ ├── test_collaboration.py │ ├── test_compiler.py │ ├── test_convergence_evaluator.py │ ├── test_copilot.py │ ├── test_decision_agent.py │ ├── test_domain_detector.py │ ├── test_entry_point_validation.py │ ├── test_experiment_diagnosis.py │ ├── test_experiment_repair.py │ ├── test_experiment_schema.py │ ├── test_figure_agent.py │ ├── test_knowledge_graph.py │ ├── test_mcp.py │ ├── test_memory_system.py │ ├── test_metaclaw_bridge/ │ │ ├── __init__.py │ │ ├── test_config.py │ │ ├── test_lesson_to_skill.py │ │ ├── test_prm_gate.py │ │ ├── test_session.py │ │ ├── test_skill_feedback.py │ │ └── test_stage_skill_map.py │ ├── test_metric_parser.py │ ├── test_minimax_provider.py │ ├── test_neuroscience_domain.py │ ├── test_opencode_bridge.py │ ├── test_overleaf.py │ ├── test_paper_verifier.py │ ├── test_project_manager.py │ ├── test_prompt_adapter.py │ ├── test_rc_adapters.py │ ├── test_rc_cache.py │ ├── test_rc_checkpoint.py │ ├── test_rc_citation_resolve.py │ ├── test_rc_citation_verify.py │ ├── test_rc_cli.py │ ├── test_rc_config.py │ ├── test_rc_contracts.py │ ├── test_rc_docker_sandbox.py │ ├── test_rc_e2e_regression.py │ ├── test_rc_evolution.py │ ├── test_rc_executor.py │ ├── test_rc_hardware.py │ ├── test_rc_health.py │ ├── test_rc_kb.py │ ├── test_rc_literature.py │ ├── test_rc_llm.py │ ├── test_rc_novelty.py │ ├── test_rc_preflight.py │ ├── test_rc_prompts.py │ ├── test_rc_quality.py │ ├── test_rc_report.py │ ├── test_rc_runner.py │ ├── test_rc_sanitization.py │ ├── test_rc_sentinel.py │ ├── test_rc_stages.py │ ├── test_rc_templates.py │ ├── test_rc_validator.py │ ├── test_results_table_builder.py │ ├── test_robotics_adapter.py │ ├── test_servers.py │ ├── test_skills_library.py │ ├── test_ssh_and_colab_sandbox.py │ ├── test_trends.py │ ├── test_universal_codegen_integration.py │ ├── test_v6_improvements.py │ ├── test_verified_registry.py │ ├── test_web_crawler.py │ ├── test_web_integration.py │ ├── test_web_pdf_extractor.py │ ├── test_web_platform.py │ ├── test_web_scholar.py │ └── test_web_search.py └── website/ ├── features.html ├── getting-started.html ├── index.html ├── papers.html ├── pipeline.html └── style.css