├── .claude ├── commands │ ├── consistency-guide.md │ └── varcheck.md └── settings.local.json ├── .gitignore ├── 00-文档导航.md ├── 01-快速开始.md ├── 02-安装指南.md ├── 03-使用说明.md ├── 04-故障排除.md ├── 05-FAQ.md ├── 06-项目检查指南.md ├── BUG_FIXES_LOG.md ├── CLAUDE.md ├── CLAUDE_zh.md ├── DOCS_VALIDATION_REPORT.md ├── FEATURE_LIST.md ├── LICENSE ├── README.md ├── ROADMAP.md ├── ai-copyright-config.json ├── ai-copyright.py ├── ai-copyright.sh ├── config └── ai-copyright-config.example.json ├── create-copyright-project ├── requires_docs ├── UI设计规范.md ├── 需求文档.md ├── 需求文档_示例.md ├── 需求文档_示例_极简模式.md ├── 需求文档_示例_简要模式.md ├── 需求文档_示例_详细模式.md └── 需求文档_示例_高规格模式.md ├── scripts ├── generators │ ├── README.md │ ├── generate_all_sourcecode.py │ ├── generate_all_sourcecode.sh │ ├── generate_backend_sourcecode.py │ ├── generate_backend_sourcecode.sh │ ├── generate_frontend_sourcecode.py │ ├── generate_frontend_sourcecode.sh │ ├── merge_all_simple.py │ ├── merge_all_simple.sh │ ├── merge_backend_simple.py │ ├── merge_backend_simple.sh │ ├── merge_database_simple.py │ ├── merge_database_simple.sh │ ├── merge_frontend_simple.py │ └── merge_frontend_simple.sh ├── init │ ├── init_project.py │ ├── init_project.sh │ └── init_project_safe.py ├── user_guide.py └── validators │ ├── check_navigation_consistency.py │ ├── check_navigation_consistency_simple.py │ ├── check_project.py │ ├── check_project.sh │ ├── project_doctor.py │ ├── quality_monitor.py │ ├── run_tests.py │ ├── validate_frontend_pages.py │ ├── validate_navigation_config.py │ └── validate_requirements.py ├── specs_docs ├── tech_stack_specs │ └── 技术栈说明文档_默认.md └── ui_design_specs │ ├── 01-UI设计规范_默认_Corporate.md │ ├── 02-UI设计规范_暗黑科技风格_Cyberpunk.md │ ├── 03-UI设计规范_极简主义风格_Minimal.md │ ├── 04-UI设计规范_包豪斯风格_Bauhaus.md │ ├── 05-UI设计规范_日式极简风格_Japanese.md │ ├── 06-UI设计规范_斯堪的纳维亚风格_Scandinavian.md │ ├── 07-UI设计规范_未来科技风格_Futuristic.md │ ├── 08-UI设计规范_优雅复古风格_Elegant.md │ ├── 09-UI设计规范_大胆现代风格_Bold.md │ ├── 10-UI设计规范_艺术装饰风格_ArtDeco.md │ ├── 11-UI设计规范_孟菲斯风格_Memphis.md │ └── 12-UI设计规范_波普艺术风格_PopArt.md ├── system_prompts ├── 01-软著框架系统提示词.md ├── 02-页面规划系统提示词.md ├── 03-界面设计系统提示词.md ├── 04-网页代码生成系统提示词.md ├── 05-数据库代码生成系统提示词.md ├── 06-后端代码生成系统提示词.md ├── 07-用户手册系统提示词.md ├── 08-软件著作权登记信息表系统提示词.md └── README.md ├── 工作流程.md └── 执行计划.md /.claude/commands/consistency-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/.claude/commands/consistency-guide.md -------------------------------------------------------------------------------- /.claude/commands/varcheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/.claude/commands/varcheck.md -------------------------------------------------------------------------------- /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/.gitignore -------------------------------------------------------------------------------- /00-文档导航.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/00-文档导航.md -------------------------------------------------------------------------------- /01-快速开始.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/01-快速开始.md -------------------------------------------------------------------------------- /02-安装指南.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/02-安装指南.md -------------------------------------------------------------------------------- /03-使用说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/03-使用说明.md -------------------------------------------------------------------------------- /04-故障排除.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/04-故障排除.md -------------------------------------------------------------------------------- /05-FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/05-FAQ.md -------------------------------------------------------------------------------- /06-项目检查指南.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/06-项目检查指南.md -------------------------------------------------------------------------------- /BUG_FIXES_LOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/BUG_FIXES_LOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CLAUDE_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/CLAUDE_zh.md -------------------------------------------------------------------------------- /DOCS_VALIDATION_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/DOCS_VALIDATION_REPORT.md -------------------------------------------------------------------------------- /FEATURE_LIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/FEATURE_LIST.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /ai-copyright-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/ai-copyright-config.json -------------------------------------------------------------------------------- /ai-copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/ai-copyright.py -------------------------------------------------------------------------------- /ai-copyright.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/ai-copyright.sh -------------------------------------------------------------------------------- /config/ai-copyright-config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/config/ai-copyright-config.example.json -------------------------------------------------------------------------------- /create-copyright-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/create-copyright-project -------------------------------------------------------------------------------- /requires_docs/UI设计规范.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/requires_docs/UI设计规范.md -------------------------------------------------------------------------------- /requires_docs/需求文档.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/requires_docs/需求文档.md -------------------------------------------------------------------------------- /requires_docs/需求文档_示例.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/requires_docs/需求文档_示例.md -------------------------------------------------------------------------------- /requires_docs/需求文档_示例_极简模式.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/requires_docs/需求文档_示例_极简模式.md -------------------------------------------------------------------------------- /requires_docs/需求文档_示例_简要模式.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/requires_docs/需求文档_示例_简要模式.md -------------------------------------------------------------------------------- /requires_docs/需求文档_示例_详细模式.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/requires_docs/需求文档_示例_详细模式.md -------------------------------------------------------------------------------- /requires_docs/需求文档_示例_高规格模式.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/requires_docs/需求文档_示例_高规格模式.md -------------------------------------------------------------------------------- /scripts/generators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/generators/README.md -------------------------------------------------------------------------------- /scripts/generators/generate_all_sourcecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/generators/generate_all_sourcecode.py -------------------------------------------------------------------------------- /scripts/generators/generate_all_sourcecode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/generators/generate_all_sourcecode.sh -------------------------------------------------------------------------------- /scripts/generators/generate_backend_sourcecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/generators/generate_backend_sourcecode.py -------------------------------------------------------------------------------- /scripts/generators/generate_backend_sourcecode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/generators/generate_backend_sourcecode.sh -------------------------------------------------------------------------------- /scripts/generators/generate_frontend_sourcecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/generators/generate_frontend_sourcecode.py -------------------------------------------------------------------------------- /scripts/generators/generate_frontend_sourcecode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/generators/generate_frontend_sourcecode.sh -------------------------------------------------------------------------------- /scripts/generators/merge_all_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/generators/merge_all_simple.py -------------------------------------------------------------------------------- /scripts/generators/merge_all_simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/generators/merge_all_simple.sh -------------------------------------------------------------------------------- /scripts/generators/merge_backend_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/generators/merge_backend_simple.py -------------------------------------------------------------------------------- /scripts/generators/merge_backend_simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/generators/merge_backend_simple.sh -------------------------------------------------------------------------------- /scripts/generators/merge_database_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/generators/merge_database_simple.py -------------------------------------------------------------------------------- /scripts/generators/merge_database_simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/generators/merge_database_simple.sh -------------------------------------------------------------------------------- /scripts/generators/merge_frontend_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/generators/merge_frontend_simple.py -------------------------------------------------------------------------------- /scripts/generators/merge_frontend_simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/generators/merge_frontend_simple.sh -------------------------------------------------------------------------------- /scripts/init/init_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/init/init_project.py -------------------------------------------------------------------------------- /scripts/init/init_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/init/init_project.sh -------------------------------------------------------------------------------- /scripts/init/init_project_safe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/init/init_project_safe.py -------------------------------------------------------------------------------- /scripts/user_guide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/user_guide.py -------------------------------------------------------------------------------- /scripts/validators/check_navigation_consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/validators/check_navigation_consistency.py -------------------------------------------------------------------------------- /scripts/validators/check_navigation_consistency_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/validators/check_navigation_consistency_simple.py -------------------------------------------------------------------------------- /scripts/validators/check_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/validators/check_project.py -------------------------------------------------------------------------------- /scripts/validators/check_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/validators/check_project.sh -------------------------------------------------------------------------------- /scripts/validators/project_doctor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/validators/project_doctor.py -------------------------------------------------------------------------------- /scripts/validators/quality_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/validators/quality_monitor.py -------------------------------------------------------------------------------- /scripts/validators/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/validators/run_tests.py -------------------------------------------------------------------------------- /scripts/validators/validate_frontend_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/validators/validate_frontend_pages.py -------------------------------------------------------------------------------- /scripts/validators/validate_navigation_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/validators/validate_navigation_config.py -------------------------------------------------------------------------------- /scripts/validators/validate_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/scripts/validators/validate_requirements.py -------------------------------------------------------------------------------- /specs_docs/tech_stack_specs/技术栈说明文档_默认.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/specs_docs/tech_stack_specs/技术栈说明文档_默认.md -------------------------------------------------------------------------------- /specs_docs/ui_design_specs/01-UI设计规范_默认_Corporate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/specs_docs/ui_design_specs/01-UI设计规范_默认_Corporate.md -------------------------------------------------------------------------------- /specs_docs/ui_design_specs/02-UI设计规范_暗黑科技风格_Cyberpunk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/specs_docs/ui_design_specs/02-UI设计规范_暗黑科技风格_Cyberpunk.md -------------------------------------------------------------------------------- /specs_docs/ui_design_specs/03-UI设计规范_极简主义风格_Minimal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/specs_docs/ui_design_specs/03-UI设计规范_极简主义风格_Minimal.md -------------------------------------------------------------------------------- /specs_docs/ui_design_specs/04-UI设计规范_包豪斯风格_Bauhaus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/specs_docs/ui_design_specs/04-UI设计规范_包豪斯风格_Bauhaus.md -------------------------------------------------------------------------------- /specs_docs/ui_design_specs/05-UI设计规范_日式极简风格_Japanese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/specs_docs/ui_design_specs/05-UI设计规范_日式极简风格_Japanese.md -------------------------------------------------------------------------------- /specs_docs/ui_design_specs/06-UI设计规范_斯堪的纳维亚风格_Scandinavian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/specs_docs/ui_design_specs/06-UI设计规范_斯堪的纳维亚风格_Scandinavian.md -------------------------------------------------------------------------------- /specs_docs/ui_design_specs/07-UI设计规范_未来科技风格_Futuristic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/specs_docs/ui_design_specs/07-UI设计规范_未来科技风格_Futuristic.md -------------------------------------------------------------------------------- /specs_docs/ui_design_specs/08-UI设计规范_优雅复古风格_Elegant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/specs_docs/ui_design_specs/08-UI设计规范_优雅复古风格_Elegant.md -------------------------------------------------------------------------------- /specs_docs/ui_design_specs/09-UI设计规范_大胆现代风格_Bold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/specs_docs/ui_design_specs/09-UI设计规范_大胆现代风格_Bold.md -------------------------------------------------------------------------------- /specs_docs/ui_design_specs/10-UI设计规范_艺术装饰风格_ArtDeco.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/specs_docs/ui_design_specs/10-UI设计规范_艺术装饰风格_ArtDeco.md -------------------------------------------------------------------------------- /specs_docs/ui_design_specs/11-UI设计规范_孟菲斯风格_Memphis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/specs_docs/ui_design_specs/11-UI设计规范_孟菲斯风格_Memphis.md -------------------------------------------------------------------------------- /specs_docs/ui_design_specs/12-UI设计规范_波普艺术风格_PopArt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/specs_docs/ui_design_specs/12-UI设计规范_波普艺术风格_PopArt.md -------------------------------------------------------------------------------- /system_prompts/01-软著框架系统提示词.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/system_prompts/01-软著框架系统提示词.md -------------------------------------------------------------------------------- /system_prompts/02-页面规划系统提示词.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/system_prompts/02-页面规划系统提示词.md -------------------------------------------------------------------------------- /system_prompts/03-界面设计系统提示词.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/system_prompts/03-界面设计系统提示词.md -------------------------------------------------------------------------------- /system_prompts/04-网页代码生成系统提示词.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/system_prompts/04-网页代码生成系统提示词.md -------------------------------------------------------------------------------- /system_prompts/05-数据库代码生成系统提示词.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/system_prompts/05-数据库代码生成系统提示词.md -------------------------------------------------------------------------------- /system_prompts/06-后端代码生成系统提示词.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/system_prompts/06-后端代码生成系统提示词.md -------------------------------------------------------------------------------- /system_prompts/07-用户手册系统提示词.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/system_prompts/07-用户手册系统提示词.md -------------------------------------------------------------------------------- /system_prompts/08-软件著作权登记信息表系统提示词.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/system_prompts/08-软件著作权登记信息表系统提示词.md -------------------------------------------------------------------------------- /system_prompts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/system_prompts/README.md -------------------------------------------------------------------------------- /工作流程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/工作流程.md -------------------------------------------------------------------------------- /执行计划.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flanliulf/AI-Copyright-Application-Generator/HEAD/执行计划.md --------------------------------------------------------------------------------