├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── METHOD_1_BUG_REPORT.yml │ ├── METHOD_2_BUG_REPORT.yml │ ├── OTHER_BUG_REPORT.yml │ └── config.yml ├── LICENSE ├── README.md ├── README_CN.md ├── images ├── AppleIntelligence │ ├── Step2.png │ ├── Step3.png │ ├── Step4.png │ ├── Step5.png │ └── Step6.png └── XcodeLLM │ └── screenshot.png ├── override_apple_intelligence.sh ├── override_xcodellm.sh └── scripts └── override.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Kyle-Ye] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/METHOD_1_BUG_REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle-Ye/XcodeLLMEligible/HEAD/.github/ISSUE_TEMPLATE/METHOD_1_BUG_REPORT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/METHOD_2_BUG_REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle-Ye/XcodeLLMEligible/HEAD/.github/ISSUE_TEMPLATE/METHOD_2_BUG_REPORT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/OTHER_BUG_REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle-Ye/XcodeLLMEligible/HEAD/.github/ISSUE_TEMPLATE/OTHER_BUG_REPORT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle-Ye/XcodeLLMEligible/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle-Ye/XcodeLLMEligible/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle-Ye/XcodeLLMEligible/HEAD/README_CN.md -------------------------------------------------------------------------------- /images/AppleIntelligence/Step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle-Ye/XcodeLLMEligible/HEAD/images/AppleIntelligence/Step2.png -------------------------------------------------------------------------------- /images/AppleIntelligence/Step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle-Ye/XcodeLLMEligible/HEAD/images/AppleIntelligence/Step3.png -------------------------------------------------------------------------------- /images/AppleIntelligence/Step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle-Ye/XcodeLLMEligible/HEAD/images/AppleIntelligence/Step4.png -------------------------------------------------------------------------------- /images/AppleIntelligence/Step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle-Ye/XcodeLLMEligible/HEAD/images/AppleIntelligence/Step5.png -------------------------------------------------------------------------------- /images/AppleIntelligence/Step6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle-Ye/XcodeLLMEligible/HEAD/images/AppleIntelligence/Step6.png -------------------------------------------------------------------------------- /images/XcodeLLM/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle-Ye/XcodeLLMEligible/HEAD/images/XcodeLLM/screenshot.png -------------------------------------------------------------------------------- /override_apple_intelligence.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle-Ye/XcodeLLMEligible/HEAD/override_apple_intelligence.sh -------------------------------------------------------------------------------- /override_xcodellm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle-Ye/XcodeLLMEligible/HEAD/override_xcodellm.sh -------------------------------------------------------------------------------- /scripts/override.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyle-Ye/XcodeLLMEligible/HEAD/scripts/override.sh --------------------------------------------------------------------------------