├── .claude └── settings.local.json ├── .gitignore ├── .vscode └── settings.json ├── AI-Rules.md ├── ALIGNMENT_FIXES.md ├── ALIGNMENT_FIX_SUMMARY.md ├── AUDIT_FINDINGS_SUMMARY.md ├── AUDIT_MAIN_CLI_FINDINGS.md ├── AUDIT_README.md ├── DEEPLX_INTEGRATION.md ├── DEEPLX_TEST_RESULTS.md ├── FINAL_SYNC_VALIDATION_REPORT.md ├── HELPER_SCRIPTS_AUDIT_REPORT.md ├── HELPER_SCRIPTS_TEST_LOG.md ├── IMPLEMENTATION_NOTES.txt ├── IMPLEMENTATION_SUMMARY.md ├── LICENSE ├── Profiles ├── default_profile.conf ├── language_strings.sh └── user_profile.conf ├── Prompts ├── AR │ ├── business-management.md │ ├── computer-science.md │ ├── engineering.md │ ├── general.md │ ├── humanities.md │ ├── mathematics-statistics.md │ ├── medical-sciences.md │ ├── natural-sciences.md │ └── social-sciences.md ├── DE │ ├── business-management.md │ ├── computer-science.md │ ├── engineering.md │ ├── general.md │ ├── humanities.md │ ├── mathematics-statistics.md │ ├── medical-sciences.md │ ├── natural-sciences.md │ └── social-sciences.md ├── EN │ ├── business-management.md │ ├── computer-science.md │ ├── engineering.md │ ├── general.md │ ├── humanities.md │ ├── mathematics-statistics.md │ ├── medical-sciences.md │ ├── natural-sciences.md │ └── social-sciences.md ├── ES │ ├── business-management.md │ ├── computer-science.md │ ├── engineering.md │ ├── general.md │ ├── humanities.md │ ├── mathematics-statistics.md │ ├── medical-sciences.md │ ├── natural-sciences.md │ └── social-sciences.md ├── FR │ ├── business-management.md │ ├── computer-science.md │ ├── engineering.md │ ├── general.md │ ├── humanities.md │ ├── mathematics-statistics.md │ ├── medical-sciences.md │ ├── natural-sciences.md │ └── social-sciences.md ├── HI │ ├── business-management.md │ ├── computer-science.md │ ├── engineering.md │ ├── general.md │ ├── humanities.md │ ├── mathematics-statistics.md │ ├── medical-sciences.md │ ├── natural-sciences.md │ └── social-sciences.md ├── IT │ ├── business-management.md │ ├── computer-science.md │ ├── engineering.md │ ├── general.md │ ├── humanities.md │ ├── mathematics-statistics.md │ ├── medical-sciences.md │ ├── natural-sciences.md │ └── social-sciences.md ├── JP │ ├── business-management.md │ ├── computer-science.md │ ├── engineering.md │ ├── general.md │ ├── humanities.md │ ├── mathematics-statistics.md │ ├── medical-sciences.md │ ├── natural-sciences.md │ └── social-sciences.md ├── KO │ ├── business-management.md │ ├── computer-science.md │ ├── engineering.md │ ├── general.md │ ├── humanities.md │ ├── mathematics-statistics.md │ ├── medical-sciences.md │ ├── natural-sciences.md │ └── social-sciences.md ├── PT │ ├── business-management.md │ ├── computer-science.md │ ├── engineering.md │ ├── general.md │ ├── humanities.md │ ├── mathematics-statistics.md │ ├── medical-sciences.md │ ├── natural-sciences.md │ └── social-sciences.md ├── RU │ ├── business-management.md │ ├── computer-science.md │ ├── engineering.md │ ├── general.md │ ├── humanities.md │ ├── mathematics-statistics.md │ ├── medical-sciences.md │ ├── natural-sciences.md │ └── social-sciences.md ├── ZH │ ├── business-management.md │ ├── computer-science.md │ ├── engineering.md │ ├── general.md │ ├── humanities.md │ ├── mathematics-statistics.md │ ├── medical-sciences.md │ ├── natural-sciences.md │ └── social-sciences.md └── prompt_index.json ├── README.md ├── SYNCHRONIZATION_ISSUES_SUMMARY.md ├── SYNC_VALIDATION_REPORT.md ├── VALIDATION_TOOLS_README.md ├── analyze_sync_issues.sh ├── asc.cast ├── extract_missing_categories.sh ├── main.sh ├── scripts ├── add_prompt.sh ├── add_prompt.sh.backup.20250819_001802 ├── manage_categories.sh ├── manage_categories.sh.backup.20250819_001802 ├── manage_profile.sh ├── manage_profile.sh.backup.20250819_001802 ├── search_prompts.sh ├── search_prompts.sh.backup.20250819_001802 ├── translate_prompts.sh └── translate_prompts.sh.backup.20250819_001802 ├── validate_prompts_sync.sh ├── validate_with_jq.sh └── validation_output.txt /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "kiroAgent.configureMCP": "Enabled" 3 | } -------------------------------------------------------------------------------- /AI-Rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/AI-Rules.md -------------------------------------------------------------------------------- /ALIGNMENT_FIXES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/ALIGNMENT_FIXES.md -------------------------------------------------------------------------------- /ALIGNMENT_FIX_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/ALIGNMENT_FIX_SUMMARY.md -------------------------------------------------------------------------------- /AUDIT_FINDINGS_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/AUDIT_FINDINGS_SUMMARY.md -------------------------------------------------------------------------------- /AUDIT_MAIN_CLI_FINDINGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/AUDIT_MAIN_CLI_FINDINGS.md -------------------------------------------------------------------------------- /AUDIT_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/AUDIT_README.md -------------------------------------------------------------------------------- /DEEPLX_INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/DEEPLX_INTEGRATION.md -------------------------------------------------------------------------------- /DEEPLX_TEST_RESULTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/DEEPLX_TEST_RESULTS.md -------------------------------------------------------------------------------- /FINAL_SYNC_VALIDATION_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/FINAL_SYNC_VALIDATION_REPORT.md -------------------------------------------------------------------------------- /HELPER_SCRIPTS_AUDIT_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/HELPER_SCRIPTS_AUDIT_REPORT.md -------------------------------------------------------------------------------- /HELPER_SCRIPTS_TEST_LOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/HELPER_SCRIPTS_TEST_LOG.md -------------------------------------------------------------------------------- /IMPLEMENTATION_NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/IMPLEMENTATION_NOTES.txt -------------------------------------------------------------------------------- /IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/LICENSE -------------------------------------------------------------------------------- /Profiles/default_profile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Profiles/default_profile.conf -------------------------------------------------------------------------------- /Profiles/language_strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Profiles/language_strings.sh -------------------------------------------------------------------------------- /Profiles/user_profile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Profiles/user_profile.conf -------------------------------------------------------------------------------- /Prompts/AR/business-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/AR/business-management.md -------------------------------------------------------------------------------- /Prompts/AR/computer-science.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/AR/computer-science.md -------------------------------------------------------------------------------- /Prompts/AR/engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/AR/engineering.md -------------------------------------------------------------------------------- /Prompts/AR/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/AR/general.md -------------------------------------------------------------------------------- /Prompts/AR/humanities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/AR/humanities.md -------------------------------------------------------------------------------- /Prompts/AR/mathematics-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/AR/mathematics-statistics.md -------------------------------------------------------------------------------- /Prompts/AR/medical-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/AR/medical-sciences.md -------------------------------------------------------------------------------- /Prompts/AR/natural-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/AR/natural-sciences.md -------------------------------------------------------------------------------- /Prompts/AR/social-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/AR/social-sciences.md -------------------------------------------------------------------------------- /Prompts/DE/business-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/DE/business-management.md -------------------------------------------------------------------------------- /Prompts/DE/computer-science.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/DE/computer-science.md -------------------------------------------------------------------------------- /Prompts/DE/engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/DE/engineering.md -------------------------------------------------------------------------------- /Prompts/DE/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/DE/general.md -------------------------------------------------------------------------------- /Prompts/DE/humanities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/DE/humanities.md -------------------------------------------------------------------------------- /Prompts/DE/mathematics-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/DE/mathematics-statistics.md -------------------------------------------------------------------------------- /Prompts/DE/medical-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/DE/medical-sciences.md -------------------------------------------------------------------------------- /Prompts/DE/natural-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/DE/natural-sciences.md -------------------------------------------------------------------------------- /Prompts/DE/social-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/DE/social-sciences.md -------------------------------------------------------------------------------- /Prompts/EN/business-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/EN/business-management.md -------------------------------------------------------------------------------- /Prompts/EN/computer-science.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/EN/computer-science.md -------------------------------------------------------------------------------- /Prompts/EN/engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/EN/engineering.md -------------------------------------------------------------------------------- /Prompts/EN/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/EN/general.md -------------------------------------------------------------------------------- /Prompts/EN/humanities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/EN/humanities.md -------------------------------------------------------------------------------- /Prompts/EN/mathematics-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/EN/mathematics-statistics.md -------------------------------------------------------------------------------- /Prompts/EN/medical-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/EN/medical-sciences.md -------------------------------------------------------------------------------- /Prompts/EN/natural-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/EN/natural-sciences.md -------------------------------------------------------------------------------- /Prompts/EN/social-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/EN/social-sciences.md -------------------------------------------------------------------------------- /Prompts/ES/business-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/ES/business-management.md -------------------------------------------------------------------------------- /Prompts/ES/computer-science.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/ES/computer-science.md -------------------------------------------------------------------------------- /Prompts/ES/engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/ES/engineering.md -------------------------------------------------------------------------------- /Prompts/ES/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/ES/general.md -------------------------------------------------------------------------------- /Prompts/ES/humanities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/ES/humanities.md -------------------------------------------------------------------------------- /Prompts/ES/mathematics-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/ES/mathematics-statistics.md -------------------------------------------------------------------------------- /Prompts/ES/medical-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/ES/medical-sciences.md -------------------------------------------------------------------------------- /Prompts/ES/natural-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/ES/natural-sciences.md -------------------------------------------------------------------------------- /Prompts/ES/social-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/ES/social-sciences.md -------------------------------------------------------------------------------- /Prompts/FR/business-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/FR/business-management.md -------------------------------------------------------------------------------- /Prompts/FR/computer-science.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/FR/computer-science.md -------------------------------------------------------------------------------- /Prompts/FR/engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/FR/engineering.md -------------------------------------------------------------------------------- /Prompts/FR/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/FR/general.md -------------------------------------------------------------------------------- /Prompts/FR/humanities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/FR/humanities.md -------------------------------------------------------------------------------- /Prompts/FR/mathematics-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/FR/mathematics-statistics.md -------------------------------------------------------------------------------- /Prompts/FR/medical-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/FR/medical-sciences.md -------------------------------------------------------------------------------- /Prompts/FR/natural-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/FR/natural-sciences.md -------------------------------------------------------------------------------- /Prompts/FR/social-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/FR/social-sciences.md -------------------------------------------------------------------------------- /Prompts/HI/business-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/HI/business-management.md -------------------------------------------------------------------------------- /Prompts/HI/computer-science.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/HI/computer-science.md -------------------------------------------------------------------------------- /Prompts/HI/engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/HI/engineering.md -------------------------------------------------------------------------------- /Prompts/HI/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/HI/general.md -------------------------------------------------------------------------------- /Prompts/HI/humanities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/HI/humanities.md -------------------------------------------------------------------------------- /Prompts/HI/mathematics-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/HI/mathematics-statistics.md -------------------------------------------------------------------------------- /Prompts/HI/medical-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/HI/medical-sciences.md -------------------------------------------------------------------------------- /Prompts/HI/natural-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/HI/natural-sciences.md -------------------------------------------------------------------------------- /Prompts/HI/social-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/HI/social-sciences.md -------------------------------------------------------------------------------- /Prompts/IT/business-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/IT/business-management.md -------------------------------------------------------------------------------- /Prompts/IT/computer-science.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/IT/computer-science.md -------------------------------------------------------------------------------- /Prompts/IT/engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/IT/engineering.md -------------------------------------------------------------------------------- /Prompts/IT/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/IT/general.md -------------------------------------------------------------------------------- /Prompts/IT/humanities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/IT/humanities.md -------------------------------------------------------------------------------- /Prompts/IT/mathematics-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/IT/mathematics-statistics.md -------------------------------------------------------------------------------- /Prompts/IT/medical-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/IT/medical-sciences.md -------------------------------------------------------------------------------- /Prompts/IT/natural-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/IT/natural-sciences.md -------------------------------------------------------------------------------- /Prompts/IT/social-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/IT/social-sciences.md -------------------------------------------------------------------------------- /Prompts/JP/business-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/JP/business-management.md -------------------------------------------------------------------------------- /Prompts/JP/computer-science.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/JP/computer-science.md -------------------------------------------------------------------------------- /Prompts/JP/engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/JP/engineering.md -------------------------------------------------------------------------------- /Prompts/JP/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/JP/general.md -------------------------------------------------------------------------------- /Prompts/JP/humanities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/JP/humanities.md -------------------------------------------------------------------------------- /Prompts/JP/mathematics-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/JP/mathematics-statistics.md -------------------------------------------------------------------------------- /Prompts/JP/medical-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/JP/medical-sciences.md -------------------------------------------------------------------------------- /Prompts/JP/natural-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/JP/natural-sciences.md -------------------------------------------------------------------------------- /Prompts/JP/social-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/JP/social-sciences.md -------------------------------------------------------------------------------- /Prompts/KO/business-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/KO/business-management.md -------------------------------------------------------------------------------- /Prompts/KO/computer-science.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/KO/computer-science.md -------------------------------------------------------------------------------- /Prompts/KO/engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/KO/engineering.md -------------------------------------------------------------------------------- /Prompts/KO/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/KO/general.md -------------------------------------------------------------------------------- /Prompts/KO/humanities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/KO/humanities.md -------------------------------------------------------------------------------- /Prompts/KO/mathematics-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/KO/mathematics-statistics.md -------------------------------------------------------------------------------- /Prompts/KO/medical-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/KO/medical-sciences.md -------------------------------------------------------------------------------- /Prompts/KO/natural-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/KO/natural-sciences.md -------------------------------------------------------------------------------- /Prompts/KO/social-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/KO/social-sciences.md -------------------------------------------------------------------------------- /Prompts/PT/business-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/PT/business-management.md -------------------------------------------------------------------------------- /Prompts/PT/computer-science.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/PT/computer-science.md -------------------------------------------------------------------------------- /Prompts/PT/engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/PT/engineering.md -------------------------------------------------------------------------------- /Prompts/PT/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/PT/general.md -------------------------------------------------------------------------------- /Prompts/PT/humanities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/PT/humanities.md -------------------------------------------------------------------------------- /Prompts/PT/mathematics-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/PT/mathematics-statistics.md -------------------------------------------------------------------------------- /Prompts/PT/medical-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/PT/medical-sciences.md -------------------------------------------------------------------------------- /Prompts/PT/natural-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/PT/natural-sciences.md -------------------------------------------------------------------------------- /Prompts/PT/social-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/PT/social-sciences.md -------------------------------------------------------------------------------- /Prompts/RU/business-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/RU/business-management.md -------------------------------------------------------------------------------- /Prompts/RU/computer-science.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/RU/computer-science.md -------------------------------------------------------------------------------- /Prompts/RU/engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/RU/engineering.md -------------------------------------------------------------------------------- /Prompts/RU/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/RU/general.md -------------------------------------------------------------------------------- /Prompts/RU/humanities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/RU/humanities.md -------------------------------------------------------------------------------- /Prompts/RU/mathematics-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/RU/mathematics-statistics.md -------------------------------------------------------------------------------- /Prompts/RU/medical-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/RU/medical-sciences.md -------------------------------------------------------------------------------- /Prompts/RU/natural-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/RU/natural-sciences.md -------------------------------------------------------------------------------- /Prompts/RU/social-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/RU/social-sciences.md -------------------------------------------------------------------------------- /Prompts/ZH/business-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/ZH/business-management.md -------------------------------------------------------------------------------- /Prompts/ZH/computer-science.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/ZH/computer-science.md -------------------------------------------------------------------------------- /Prompts/ZH/engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/ZH/engineering.md -------------------------------------------------------------------------------- /Prompts/ZH/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/ZH/general.md -------------------------------------------------------------------------------- /Prompts/ZH/humanities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/ZH/humanities.md -------------------------------------------------------------------------------- /Prompts/ZH/mathematics-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/ZH/mathematics-statistics.md -------------------------------------------------------------------------------- /Prompts/ZH/medical-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/ZH/medical-sciences.md -------------------------------------------------------------------------------- /Prompts/ZH/natural-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/ZH/natural-sciences.md -------------------------------------------------------------------------------- /Prompts/ZH/social-sciences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/ZH/social-sciences.md -------------------------------------------------------------------------------- /Prompts/prompt_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/Prompts/prompt_index.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/README.md -------------------------------------------------------------------------------- /SYNCHRONIZATION_ISSUES_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/SYNCHRONIZATION_ISSUES_SUMMARY.md -------------------------------------------------------------------------------- /SYNC_VALIDATION_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/SYNC_VALIDATION_REPORT.md -------------------------------------------------------------------------------- /VALIDATION_TOOLS_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/VALIDATION_TOOLS_README.md -------------------------------------------------------------------------------- /analyze_sync_issues.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/analyze_sync_issues.sh -------------------------------------------------------------------------------- /asc.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/asc.cast -------------------------------------------------------------------------------- /extract_missing_categories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/extract_missing_categories.sh -------------------------------------------------------------------------------- /main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/main.sh -------------------------------------------------------------------------------- /scripts/add_prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/scripts/add_prompt.sh -------------------------------------------------------------------------------- /scripts/add_prompt.sh.backup.20250819_001802: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/scripts/add_prompt.sh.backup.20250819_001802 -------------------------------------------------------------------------------- /scripts/manage_categories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/scripts/manage_categories.sh -------------------------------------------------------------------------------- /scripts/manage_categories.sh.backup.20250819_001802: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/scripts/manage_categories.sh.backup.20250819_001802 -------------------------------------------------------------------------------- /scripts/manage_profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/scripts/manage_profile.sh -------------------------------------------------------------------------------- /scripts/manage_profile.sh.backup.20250819_001802: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/scripts/manage_profile.sh.backup.20250819_001802 -------------------------------------------------------------------------------- /scripts/search_prompts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/scripts/search_prompts.sh -------------------------------------------------------------------------------- /scripts/search_prompts.sh.backup.20250819_001802: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/scripts/search_prompts.sh.backup.20250819_001802 -------------------------------------------------------------------------------- /scripts/translate_prompts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/scripts/translate_prompts.sh -------------------------------------------------------------------------------- /scripts/translate_prompts.sh.backup.20250819_001802: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/scripts/translate_prompts.sh.backup.20250819_001802 -------------------------------------------------------------------------------- /validate_prompts_sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/validate_prompts_sync.sh -------------------------------------------------------------------------------- /validate_with_jq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/validate_with_jq.sh -------------------------------------------------------------------------------- /validation_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BevalZ/awesome-prompt-for-academic/HEAD/validation_output.txt --------------------------------------------------------------------------------