igny8-ai-seo/ ├── ai/ │ ├── _README.php │ ├── integration.php │ ├── model-rates-config.php │ ├── modules-ai.php │ ├── openai-api.php │ ├── prompts-library.php │ ├── runware-api.php │ └── writer/ │ ├── content/ │ └── images/ │ └── image-generation.php ├── assets/ │ ├── ai-images/ │ ├── css/ │ │ ├── core-backup.css │ │ ├── core.css │ │ └── image-injection.css │ ├── img/ │ ├── js/ │ │ ├── core.js │ │ └── image-queue-processor.js │ ├── shortcodes/ │ │ ├── _README.php │ │ └── image-gallery.php │ └── templates/ │ ├── igny8_clusters_template.csv │ ├── igny8_ideas_template.csv │ └── igny8_keywords_template.csv ├── CHANGELOG_live.md ├── core/ │ ├── _README.php │ ├── admin/ │ │ ├── ajax.php │ │ ├── global-helpers.php │ │ ├── init.php │ │ ├── menu.php │ │ ├── meta-boxes.php │ │ └── module-manager-class.php │ ├── cron/ │ │ ├── igny8-cron-handlers.php │ │ └── igny8-cron-master-dispatcher.php │ ├── db/ │ │ ├── db-migration.php │ │ └── db.php │ └── global-layout.php ├── debug/ │ ├── _README.php │ ├── debug.php │ ├── module-debug.php │ └── monitor-helpers.php ├── docs/ │ ├── _README.php │ ├── COMPLETE_FEATURES_LIST.md │ ├── COMPLETE_FUNCTION_REFERENCE.md │ ├── COMPLETE_IMAGE_GENERATION_AUDIT.md │ ├── COMPLETE_WORKFLOWS_DOCUMENTATION.md │ ├── FILE_TREE.txt │ ├── IGNY8_PAGES_TABLE.md │ ├── IGNY8_SNAPSHOT_V5.2.0.md │ └── TROUBLESHOOTING_Converting_to_blocks_and_image_shortcode_injection.md ├── flows/ │ ├── sync-ajax.php │ ├── sync-functions.php │ └── sync-hooks.php ├── igny8-wp-load-handler.php ├── igny8.php ├── install.php ├── modules/ │ ├── _README.php │ ├── analytics/ │ │ └── analytics.php │ ├── components/ │ │ ├── _README.php │ │ ├── actions-tpl.php │ │ ├── export-modal-tpl.php │ │ ├── filters-tpl.php │ │ ├── forms-tpl.php │ │ ├── import-modal-tpl.php │ │ ├── kpi-tpl.php │ │ ├── pagination-tpl.php │ │ └── table-tpl.php │ ├── config/ │ │ ├── _README.php │ │ ├── filters-config.php │ │ ├── forms-config.php │ │ ├── import-export-config.php │ │ ├── kpi-config.php │ │ └── tables-config.php │ ├── help/ │ │ ├── docs.php │ │ ├── function-testing.php │ │ ├── help.php │ │ └── system-testing.php │ ├── home.php │ ├── planner/ │ │ ├── clusters.php │ │ ├── ideas.php │ │ ├── keywords.php │ │ └── planner.php │ ├── settings/ │ │ ├── general-settings.php │ │ ├── import-export.php │ │ ├── integration.php │ │ ├── schedules.php │ │ └── status.php │ ├── thinker/ │ │ ├── image-testing.php │ │ ├── profile.php │ │ ├── prompts.php │ │ ├── strategies.php │ │ └── thinker.php │ └── writer/ │ ├── drafts.php │ ├── published.php │ ├── tasks.php │ └── writer.php ├── shortcodes/ │ ├── ai-shortcodes.php │ └── writer-shortcodes.php └── uninstall.php