mirror of
https://github.com/vczh-libraries/Release.git
synced 2026-03-23 15:52:56 +08:00
71 lines
2.5 KiB
Markdown
71 lines
2.5 KiB
Markdown
- Read through `REPO-ROOT/.github/copilot-instructions.md` before performing any work.
|
|
- `copilot-instructions.md` is the guideline you should follow.
|
|
- MUST READ `Coding Guidelines and Tools` before touching the source code.
|
|
- MUST READ `Leveraging the Knowledge Base` and find knowledge you may need before making any decision.
|
|
- Interpret the request (in the latest chat message, not including conversation history) following the steps:
|
|
|
|
## Step 1
|
|
|
|
Read the first word of the request, and read an additional instruction file when it is:
|
|
- "scrum": REPO-ROOT/.github/prompts/0-scrum.prompt.md
|
|
- "design": REPO-ROOT/.github/prompts/1-design.prompt.md
|
|
- "plan": REPO-ROOT/.github/prompts/2-planning.prompt.md
|
|
- "summarize": REPO-ROOT/.github/prompts/3-summarizing.prompt.md
|
|
- "execute": REPO-ROOT/.github/prompts/4-execution.prompt.md
|
|
- "verify": REPO-ROOT/.github/prompts/5-verifying.prompt.md
|
|
- "ask": REPO-ROOT/.github/prompts/ask.prompt.md
|
|
- "code": REPO-ROOT/.github/prompts/code.prompt.md
|
|
- "refine": REPO-ROOT/.github/prompts/refine.prompt.md
|
|
- "review": REPO-ROOT/.github/prompts/review.prompt.md
|
|
|
|
### Exceptions
|
|
|
|
- If the latest chat message is simply "execute and verify", it means do `execute` followed by `verify`.
|
|
- If the first word is not in the list:
|
|
- Follow REPO-ROOT/.github/prompts/code.prompt.md
|
|
- Skip `Step 2`
|
|
|
|
## Step 2
|
|
|
|
- Only applies when the first word is:
|
|
- "scrum"
|
|
- "design"
|
|
- "plan"
|
|
- "summary"
|
|
- "execute"
|
|
- "review"
|
|
- Read the second word if it exists, convert it to a title `# THE-WORD`.
|
|
|
|
## Step 3
|
|
|
|
Keep the remaining as is.
|
|
Treat the processed request as "the LATEST chat message" in the additional instruction file.
|
|
Follow the additional instruction file and start working immediately, there will be no more input.
|
|
|
|
## Fixing Typos
|
|
|
|
If the whole request has almost no new lines or punctuation,
|
|
it means I am typing the text by voice,
|
|
which would introduce a huge amount of typos,
|
|
you need to carefully consider possible words with similar pronunciation.
|
|
|
|
## Examples
|
|
|
|
When the request is `scrum`, follow `0-scrum.prompt.md` and "the LATEST chat message" becomes empty.
|
|
|
|
When the request is `scrum learn`, follow `0-scrum.prompt.md` and "the LATEST chat message" becomes
|
|
```
|
|
# Learn
|
|
```
|
|
|
|
When the request is `design problem next`, follow `1-design.prompt.md` and "the LATEST chat message" becomes
|
|
```
|
|
# Problem
|
|
next
|
|
```
|
|
|
|
When the request is `do this and do that`, since the first word is not in the list, so follow `code.prompt.md`, skipping `Step 2` and "the LATEST chat message" becomes
|
|
```
|
|
do this and do that
|
|
```
|