gitextract_5znolca_/ ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── 1_bug_report.yml │ │ ├── 2_feature_request.yml │ │ └── config.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── scripts/ │ │ └── pr-comment.js │ └── workflows/ │ └── publish-docker-image.yml ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── build-docker.sh ├── cspell.config.yaml ├── docs/ │ ├── contributing/ │ │ └── make-contribution.md │ ├── datasets/ │ │ └── task.md │ ├── installation_and_docker_usage.md │ ├── introduction.md │ ├── mcp/ │ │ ├── filesystem.md │ │ ├── github.md │ │ ├── notion.md │ │ ├── playwright.md │ │ └── postgres.md │ └── quickstart.md ├── pipeline.py ├── pyproject.toml ├── run-benchmark.sh ├── run-task.sh ├── src/ │ ├── agents/ │ │ ├── __init__.py │ │ ├── base_agent.py │ │ ├── mcp/ │ │ │ ├── __init__.py │ │ │ ├── http_server.py │ │ │ └── stdio_server.py │ │ ├── mcpmark_agent.py │ │ ├── react_agent.py │ │ └── utils/ │ │ ├── __init__.py │ │ └── token_usage.py │ ├── aggregators/ │ │ ├── aggregate_results.py │ │ ├── aggregate_specific_results.py │ │ ├── aggregate_task_meta.py │ │ └── pricing.py │ ├── base/ │ │ ├── __init__.py │ │ ├── login_helper.py │ │ ├── state_manager.py │ │ └── task_manager.py │ ├── config/ │ │ ├── __init__.py │ │ └── config_schema.py │ ├── errors.py │ ├── evaluator.py │ ├── factory.py │ ├── logger.py │ ├── mcp_services/ │ │ ├── filesystem/ │ │ │ ├── __init__.py │ │ │ ├── filesystem_login_helper.py │ │ │ ├── filesystem_state_manager.py │ │ │ └── filesystem_task_manager.py │ │ ├── github/ │ │ │ ├── __init__.py │ │ │ ├── github_login_helper.py │ │ │ ├── github_state_manager.py │ │ │ ├── github_task_manager.py │ │ │ ├── repo_exporter.py │ │ │ ├── repo_importer.py │ │ │ └── token_pool.py │ │ ├── insforge/ │ │ │ ├── __init__.py │ │ │ ├── insforge_login_helper.py │ │ │ ├── insforge_state_manager.py │ │ │ └── insforge_task_manager.py │ │ ├── notion/ │ │ │ ├── __init__.py │ │ │ ├── notion_login_helper.py │ │ │ ├── notion_state_manager.py │ │ │ └── notion_task_manager.py │ │ ├── playwright/ │ │ │ ├── __init__.py │ │ │ ├── playwright_login_helper.py │ │ │ ├── playwright_state_manager.py │ │ │ └── playwright_task_manager.py │ │ ├── playwright_webarena/ │ │ │ ├── playwright_login_helper.py │ │ │ ├── playwright_state_manager.py │ │ │ ├── playwright_task_manager.py │ │ │ └── reddit_env_setup.md │ │ ├── postgres/ │ │ │ ├── __init__.py │ │ │ ├── postgres_login_helper.py │ │ │ ├── postgres_state_manager.py │ │ │ └── postgres_task_manager.py │ │ └── supabase/ │ │ ├── __init__.py │ │ ├── supabase_login_helper.py │ │ ├── supabase_state_manager.py │ │ └── supabase_task_manager.py │ ├── model_config.py │ ├── results_reporter.py │ └── services.py └── tasks/ ├── __init__.py ├── filesystem/ │ ├── easy/ │ │ ├── .gitkeep │ │ ├── file_context/ │ │ │ ├── file_splitting/ │ │ │ │ ├── description.md │ │ │ │ ├── meta.json │ │ │ │ └── verify.py │ │ │ ├── pattern_matching/ │ │ │ │ ├── description.md │ │ │ │ ├── meta.json │ │ │ │ └── verify.py │ │ │ └── uppercase/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── file_property/ │ │ │ ├── largest_rename/ │ │ │ │ ├── description.md │ │ │ │ ├── meta.json │ │ │ │ └── verify.py │ │ │ └── txt_merging/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── folder_structure/ │ │ │ └── structure_analysis/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── legal_document/ │ │ │ └── file_reorganize/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── papers/ │ │ │ └── papers_counting/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── student_database/ │ │ ├── duplicate_name/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── recommender_name/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ └── standard/ │ ├── desktop/ │ │ ├── music_report/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── project_management/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── timeline_extraction/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── desktop_template/ │ │ ├── budget_computation/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── contact_information/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── file_arrangement/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── file_context/ │ │ ├── duplicates_searching/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── file_merging/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── file_splitting/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── pattern_matching/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── uppercase/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── file_property/ │ │ ├── size_classification/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── time_classification/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── folder_structure/ │ │ ├── structure_analysis/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── structure_mirror/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── legal_document/ │ │ ├── dispute_review/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── individual_comments/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── solution_tracing/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── papers/ │ │ ├── author_folders/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── find_math_paper/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── organize_legacy_papers/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── student_database/ │ │ ├── duplicate_name/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── english_talent/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── gradebased_score/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── threestudio/ │ │ ├── code_locating/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── output_analysis/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── requirements_completion/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ └── votenet/ │ ├── dataset_comparison/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── debugging/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ └── requirements_writing/ │ ├── description.md │ ├── meta.json │ └── verify.py ├── github/ │ ├── easy/ │ │ ├── build-your-own-x/ │ │ │ ├── close_commented_issues/ │ │ │ │ ├── description.md │ │ │ │ ├── meta.json │ │ │ │ └── verify.py │ │ │ └── record_recent_commits/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── claude-code/ │ │ │ ├── add_terminal_shortcuts_doc/ │ │ │ │ ├── description.md │ │ │ │ ├── meta.json │ │ │ │ └── verify.py │ │ │ ├── thank_docker_pr_author/ │ │ │ │ ├── description.md │ │ │ │ ├── meta.json │ │ │ │ └── verify.py │ │ │ └── triage_missing_tool_result_issue/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── mcpmark-cicd/ │ │ │ ├── basic_ci_checks/ │ │ │ │ ├── description.md │ │ │ │ ├── meta.json │ │ │ │ └── verify.py │ │ │ ├── issue_lint_guard/ │ │ │ │ ├── description.md │ │ │ │ ├── meta.json │ │ │ │ └── verify.py │ │ │ └── nightly_health_check/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── missing-semester/ │ │ ├── count_translations/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── find_ga_tracking_id/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ └── standard/ │ ├── build_your_own_x/ │ │ ├── find_commit_date/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── find_rag_commit/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── claude-code/ │ │ ├── automated_changelog_generation/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── claude_collaboration_analysis/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── critical_issue_hotfix_workflow/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── feature_commit_tracking/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── label_color_standardization/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── easyr1/ │ │ ├── advanced_branch_strategy/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── config_parameter_audit/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── performance_regression_investigation/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── qwen3_issue_management/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── harmony/ │ │ ├── fix_conflict/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── issue_pr_commit_workflow/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── issue_tagging_pr_closure/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── multi_branch_commit_aggregation/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── release_management_workflow/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── mcpmark-cicd/ │ │ ├── deployment_status_workflow/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── issue_management_workflow/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── linting_ci_workflow/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── pr_automation_workflow/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ └── missing-semester/ │ ├── assign_contributor_labels/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── find_legacy_name/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ └── find_salient_file/ │ ├── description.md │ ├── meta.json │ └── verify.py ├── notion/ │ ├── easy/ │ │ ├── .gitkeep │ │ ├── computer_science_student_dashboard/ │ │ │ ├── simple__code_snippets_go/ │ │ │ │ ├── description.md │ │ │ │ ├── meta.json │ │ │ │ └── verify.py │ │ │ └── simple__study_session_tracker/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── it_trouble_shooting_hub/ │ │ │ └── simple__asset_retirement_migration/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── japan_travel_planner/ │ │ │ └── simple__remove_osaka_itinerary/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── online_resume/ │ │ │ └── simple__skills_development_tracker/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── python_roadmap/ │ │ │ └── simple__expert_level_lessons/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── self_assessment/ │ │ │ └── simple__faq_column_layout/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── standard_operating_procedure/ │ │ │ └── simple__section_organization/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── team_projects/ │ │ │ └── simple__swap_tasks/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── toronto_guide/ │ │ └── simple__change_color/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ └── standard/ │ ├── company_in_a_box/ │ │ ├── employee_onboarding/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── goals_restructure/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── quarterly_review_dashboard/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── computer_science_student_dashboard/ │ │ ├── code_snippets_go/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── courses_internships_relation/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── study_session_tracker/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── it_trouble_shooting_hub/ │ │ ├── asset_retirement_migration/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── security_audit_ticket/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── verification_expired_update/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── japan_travel_planner/ │ │ ├── daily_itinerary_overview/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── packing_progress_summary/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── remove_osaka_itinerary/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── restaurant_expenses_sync/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── online_resume/ │ │ ├── layout_adjustment/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── projects_section_update/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── skills_development_tracker/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── work_history_addition/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── python_roadmap/ │ │ ├── expert_level_lessons/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── learning_metrics_dashboard/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── self_assessment/ │ │ ├── faq_column_layout/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── hyperfocus_analysis_report/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── numbered_list_emojis/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── standard_operating_procedure/ │ │ ├── deployment_process_sop/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── section_organization/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── team_projects/ │ │ ├── priority_tasks_table/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── swap_tasks/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ └── toronto_guide/ │ ├── change_color/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ └── weekend_adventure_planner/ │ ├── description.md │ ├── meta.json │ └── verify.py ├── playwright/ │ ├── easy/ │ │ └── .gitkeep │ └── standard/ │ ├── eval_web/ │ │ ├── cloudflare_turnstile_challenge/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── extraction_table/ │ │ ├── data.csv │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ └── web_search/ │ ├── birth_of_arvinxu/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ └── r1_arxiv/ │ ├── content.txt │ ├── description.md │ ├── meta.json │ └── verify.py ├── playwright_webarena/ │ ├── easy/ │ │ ├── .gitkeep │ │ ├── reddit/ │ │ │ ├── ai_data_analyst/ │ │ │ │ ├── description.md │ │ │ │ ├── label.txt │ │ │ │ ├── meta.json │ │ │ │ └── verify.py │ │ │ ├── llm_research_summary/ │ │ │ │ ├── description.md │ │ │ │ ├── label.txt │ │ │ │ ├── meta.json │ │ │ │ └── verify.py │ │ │ ├── movie_reviewer_analysis/ │ │ │ │ ├── description.md │ │ │ │ ├── label.txt │ │ │ │ ├── meta.json │ │ │ │ └── verify.py │ │ │ ├── nba_statistics_analysis/ │ │ │ │ ├── description.md │ │ │ │ ├── label.txt │ │ │ │ ├── meta.json │ │ │ │ └── verify.py │ │ │ └── routine_tracker_forum/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── shopping_admin/ │ │ ├── fitness_promotion_strategy/ │ │ │ ├── description.md │ │ │ ├── label.txt │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── ny_expansion_analysis/ │ │ │ ├── description.md │ │ │ ├── label.txt │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── products_sales_analysis/ │ │ │ ├── description.md │ │ │ ├── label.txt │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── sales_inventory_analysis/ │ │ │ ├── description.md │ │ │ ├── label.txt │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── search_filtering_operations/ │ │ ├── description.md │ │ ├── label.txt │ │ ├── meta.json │ │ └── verify.py │ └── standard/ │ ├── reddit/ │ │ ├── ai_data_analyst/ │ │ │ ├── description.md │ │ │ ├── label.txt │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── budget_europe_travel/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── buyitforlife_research/ │ │ │ ├── description.md │ │ │ ├── label.txt │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── llm_research_summary/ │ │ │ ├── description.md │ │ │ ├── label.txt │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── movie_reviewer_analysis/ │ │ │ ├── description.md │ │ │ ├── label.txt │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── nba_statistics_analysis/ │ │ │ ├── description.md │ │ │ ├── label.txt │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── routine_tracker_forum/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── shopping/ │ │ ├── advanced_product_analysis/ │ │ │ ├── description.md │ │ │ ├── label.txt │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── gaming_accessories_analysis/ │ │ │ ├── description.md │ │ │ ├── label.txt │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── health_routine_optimization/ │ │ │ ├── description.md │ │ │ ├── label.txt │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── holiday_baking_competition/ │ │ │ ├── description.md │ │ │ ├── label.txt │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── multi_category_budget_analysis/ │ │ │ ├── description.md │ │ │ ├── label.txt │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── printer_keyboard_search/ │ │ │ ├── description.md │ │ │ ├── label.txt │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── running_shoes_purchase/ │ │ ├── description.md │ │ ├── label.txt │ │ ├── meta.json │ │ └── verify.py │ └── shopping_admin/ │ ├── customer_segmentation_setup/ │ │ ├── description.md │ │ ├── label.txt │ │ ├── meta.json │ │ └── verify.py │ ├── fitness_promotion_strategy/ │ │ ├── description.md │ │ ├── label.txt │ │ ├── meta.json │ │ └── verify.py │ ├── marketing_customer_analysis/ │ │ ├── description.md │ │ ├── label.txt │ │ ├── meta.json │ │ └── verify.py │ ├── ny_expansion_analysis/ │ │ ├── description.md │ │ ├── label.txt │ │ ├── meta.json │ │ └── verify.py │ ├── products_sales_analysis/ │ │ ├── description.md │ │ ├── label.txt │ │ ├── meta.json │ │ └── verify.py │ ├── sales_inventory_analysis/ │ │ ├── description.md │ │ ├── label.txt │ │ ├── meta.json │ │ └── verify.py │ └── search_filtering_operations/ │ ├── description.md │ ├── label.txt │ ├── meta.json │ └── verify.py ├── postgres/ │ ├── easy/ │ │ ├── .gitkeep │ │ ├── chinook/ │ │ │ ├── customer_data_migration_basic/ │ │ │ │ ├── customer_data.pkl │ │ │ │ ├── description.md │ │ │ │ ├── meta.json │ │ │ │ └── verify.py │ │ │ └── update_employee_info/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── dvdrental/ │ │ │ └── create_payment_index/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── employees/ │ │ │ ├── department_summary_view/ │ │ │ │ ├── description.md │ │ │ │ ├── meta.json │ │ │ │ └── verify.py │ │ │ ├── employee_gender_statistics/ │ │ │ │ ├── description.md │ │ │ │ ├── meta.json │ │ │ │ └── verify.py │ │ │ ├── employee_projects_basic/ │ │ │ │ ├── description.md │ │ │ │ ├── meta.json │ │ │ │ └── verify.py │ │ │ └── hiring_year_summary/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── lego/ │ │ │ ├── basic_security_setup/ │ │ │ │ ├── description.md │ │ │ │ ├── meta.json │ │ │ │ └── verify.py │ │ │ └── fix_data_inconsistencies/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── sports/ │ │ └── create_performance_indexes/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ └── standard/ │ ├── chinook/ │ │ ├── customer_data_migration/ │ │ │ ├── customer_data.pkl │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── employee_hierarchy_management/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── sales_and_music_charts/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── dvdrental/ │ │ ├── customer_analysis_fix/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── customer_analytics_optimization/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── film_inventory_management/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── employees/ │ │ ├── employee_demographics_report/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── employee_performance_analysis/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── employee_project_tracking/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── employee_retention_analysis/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── executive_dashboard_automation/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── management_structure_analysis/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── lego/ │ │ ├── consistency_enforcement/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── database_security_policies/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── transactional_inventory_transfer/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ ├── security/ │ │ ├── rls_business_access/ │ │ │ ├── description.md │ │ │ ├── ground_truth.sql │ │ │ ├── meta.json │ │ │ ├── prepare_environment.py │ │ │ └── verify.py │ │ └── user_permission_audit/ │ │ ├── description.md │ │ ├── ground_truth.sql │ │ ├── meta.json │ │ ├── prepare_environment.py │ │ └── verify.py │ ├── sports/ │ │ ├── baseball_player_analysis/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ ├── participant_report_optimization/ │ │ │ ├── description.md │ │ │ ├── meta.json │ │ │ └── verify.py │ │ └── team_roster_management/ │ │ ├── description.md │ │ ├── meta.json │ │ └── verify.py │ └── vectors/ │ ├── dba_vector_analysis/ │ │ ├── description.md │ │ ├── ground_truth.sql │ │ ├── meta.json │ │ ├── prepare_environment.py │ │ └── verify.py │ └── vectors_setup.py └── utils/ ├── __init__.py ├── notion_utils.py └── postgres_utils.py