gitextract_e1gxxgyv/ ├── .agent/ │ ├── README.md │ ├── rules/ │ │ ├── 00_constitution.md │ │ ├── 01_objective.md │ │ ├── 02_architecture.md │ │ ├── 03_execution_rules.md │ │ ├── 04_best_practices.md │ │ ├── 05_memory_protocol.md │ │ └── remembers.md │ ├── skills/ │ │ ├── cli-execution-mastery/ │ │ │ └── SKILL.md │ │ ├── db-version-rift/ │ │ │ └── SKILL.md │ │ ├── legacy-perl-patterns/ │ │ │ └── SKILL.md │ │ └── testing-orchestration/ │ │ └── SKILL.md │ └── workflows/ │ ├── compliance-sentinel.md │ ├── doc-sync.md │ ├── docker-clean.md │ ├── examples-cleanup.md │ ├── git-flow.md │ ├── git-rollback.md │ ├── hey-agent.md │ ├── lab-down.md │ ├── lab-up.md │ ├── markdown-lint.md │ ├── plan.md │ ├── release-manager.md │ ├── release-notes-gen.md │ ├── release-preflight.md │ ├── run-tests.md │ ├── snapshot-to-test.md │ ├── specify.md │ └── tasks.md ├── .commitlintrc.js ├── .czrc ├── .dockerignore ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── docker_publish.yml │ ├── generate_mariadb_examples.yml │ ├── generate_mysql_examples.yml │ ├── publish_release.yml │ ├── pull_request.yml │ ├── run_mt_with_db.yml │ └── update_cve_and_docs.yml ├── .husky/ │ ├── commit-msg │ └── pre-commit ├── .perltidy ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CURRENT_VERSION.txt ├── Changelog ├── Dockerfile ├── FEATURES.md ├── INTERNALS.md ├── JenkinsFile ├── LICENSE ├── Makefile ├── POTENTIAL_ISSUES ├── README.fr.md ├── README.it.md ├── README.md ├── README.ru.md ├── ROADMAP.md ├── SECURITY.md ├── USAGE.md ├── basic_passwords.txt ├── build/ │ ├── audit_logs.pl │ ├── bashrc │ ├── build_rpm.sh │ ├── clean.sh │ ├── clean_examples.sh │ ├── clearContainer.sh │ ├── configimg.conf │ ├── createMassDockerImages.sh │ ├── createTestEnvs.sh │ ├── deployOn │ ├── doc_sync.py │ ├── endoflife.sh │ ├── fetchSampleDatabases.sh │ ├── genFeatures.sh │ ├── installStaff.sh │ ├── md_lint.py │ ├── mysql_mariadb_cve_full.csv │ ├── mysqltuner.spec.tpl │ ├── publishtodockerhub.sh │ ├── release_gen.py │ ├── sync.sh │ ├── test_envs.sh │ ├── updateCVElist.pl │ ├── updateCVElist.py │ └── updateStaff.sh ├── documentation/ │ └── specifications/ │ ├── cli_execution_skill.md │ ├── cli_metadata_refactor.md │ ├── compliance_sentinel_remembers.md │ ├── dumpdir_logic_fix.md │ ├── error_log_pfs.md │ ├── fix_password_column_detection.md │ ├── index_checks_pfs.md │ ├── issue_25_privilege_checks.md │ ├── performance_schema_audit.md │ ├── performance_schema_observability_warning.md │ ├── perltidy_integration.md │ ├── persistent_lab.md │ ├── release_manager_specification.md │ ├── schemadir_option_specification.md │ ├── ssl_tls_security_checks.md │ └── test_log_auditing.md ├── mariadb_support.md ├── mysql_support.md ├── mysqltuner.pl ├── mysqltuner.pl.tdy ├── mysqltuner.pl.tidy ├── package.json ├── releases/ │ ├── v2.8.0.md │ ├── v2.8.1.md │ ├── v2.8.10.md │ ├── v2.8.11.md │ ├── v2.8.12.md │ ├── v2.8.13.md │ ├── v2.8.15.md │ ├── v2.8.16.md │ ├── v2.8.17.md │ ├── v2.8.18.md │ ├── v2.8.2.md │ ├── v2.8.20.md │ ├── v2.8.21.md │ ├── v2.8.22.md │ ├── v2.8.23.md │ ├── v2.8.24.md │ ├── v2.8.26.md │ ├── v2.8.27.md │ ├── v2.8.28.md │ ├── v2.8.29.md │ ├── v2.8.3.md │ ├── v2.8.30.md │ ├── v2.8.31.md │ ├── v2.8.32.md │ ├── v2.8.33.md │ ├── v2.8.34.md │ ├── v2.8.35.md │ ├── v2.8.36.md │ ├── v2.8.37.md │ ├── v2.8.38.md │ ├── v2.8.4.md │ ├── v2.8.5.md │ ├── v2.8.6.md │ ├── v2.8.7.md │ ├── v2.8.8.md │ └── v2.8.9.md ├── renovate.json ├── template_example.tpl ├── templates/ │ └── basic.html.j2 ├── tests/ │ ├── check_release_files.sh │ ├── cli_mod_keys.t │ ├── cli_options.t │ ├── cli_validation.t │ ├── index_pfs_checks.t │ ├── innodb_isolation.t │ ├── issue_770.t │ ├── issue_774.t │ ├── issue_777.t │ ├── issue_783.t │ ├── issue_863_enhanced.t │ ├── issue_869.t │ ├── machine_type.t │ ├── mariadb_modeling.t │ ├── modeling_regression.t │ ├── pfs_observability.t │ ├── repro_issue_20.t │ ├── repro_issue_22.t │ ├── repro_issue_490.t │ ├── repro_issue_605.t │ ├── repro_issue_863.t │ ├── repro_pfs_disabled.t │ ├── schemadir.t │ ├── sql_modeling.t │ ├── sql_modeling_fk.t │ ├── sql_quoting.t │ ├── ssl_tls_validation.t │ ├── test_audit_logs.t │ ├── test_boolean_options.t │ ├── test_forcemem.t │ ├── test_ignore_tables.t │ ├── test_issue_404.t │ ├── test_issue_553.t │ ├── test_issue_671.t │ ├── test_issue_874.t │ ├── test_issue_875.t │ ├── test_version_regex.t │ ├── test_vulnerabilities.t │ ├── unit_formatting.t │ ├── unit_utilities.t │ ├── unit_versions.t │ └── version_consistency.t └── vulnerabilities.csv