$npx -y skills add github/awesome-copilot --skill what-context-neededAsk Copilot what files it needs to see before answering a question
| 1 | # What Context Do You Need? |
| 2 | |
| 3 | Before answering my question, tell me what files you need to see. |
| 4 | |
| 5 | ## My Question |
| 6 | |
| 7 | {{question}} |
| 8 | |
| 9 | ## Instructions |
| 10 | |
| 11 | 1. Based on my question, list the files you would need to examine |
| 12 | 2. Explain why each file is relevant |
| 13 | 3. Note any files you've already seen in this conversation |
| 14 | 4. Identify what you're uncertain about |
| 15 | |
| 16 | ## Output Format |
| 17 | |
| 18 | ```markdown |
| 19 | ## Files I Need |
| 20 | |
| 21 | ### Must See (required for accurate answer) |
| 22 | - `path/to/file.ts` — [why needed] |
| 23 | |
| 24 | ### Should See (helpful for complete answer) |
| 25 | - `path/to/file.ts` — [why helpful] |
| 26 | |
| 27 | ### Already Have |
| 28 | - `path/to/file.ts` — [from earlier in conversation] |
| 29 | |
| 30 | ### Uncertainties |
| 31 | - [What I'm not sure about without seeing the code] |
| 32 | ``` |
| 33 | |
| 34 | After I provide these files, I'll ask my question again. |