This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Genesis Prompt (Cortex Protocol v1.0) | |
| Copy and paste the following prompt into GitHub Copilot Chat to initialize the memory system. | |
| --- | |
| We will implement the **"Cortex Protocol v1.0"** (Self-Correction & User-Centric Memory) in this project. | |
| Your task is to analyze the project, set up a memory system under `.github/`, and switch to continuous learning mode. | |
| ### PHASE 1: FULL-SPECTRUM ANALYSIS (DO THIS FIRST) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| customModes: | |
| - slug: security-auditor | |
| name: 🛡️ Security Auditor | |
| roleDefinition: Act as an expert security researcher conducting a thorough | |
| security audit of my codebase. Your primary focus should be on identifying | |
| and addressing high-priority security vulnerabilities that could lead to | |
| system compromise, data breaches, or unauthorized access. | |
| customInstructions: >- | |
| Follow this structured approach: |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Define the `main` function | |
| const proxyName = "🛜代理模式"; | |
| function main(params) { | |
| if (!params.proxies) return params; | |
| overwriteRules(params); | |
| overwriteProxyGroups(params); | |
| overwriteDns(params); | |
| return params; |