You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Content/Tips/copilot-checklist-interviewer.md
+17-17Lines changed: 17 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,13 +9,13 @@ author: "Copilot That Jawn"
9
9
featured: false
10
10
---
11
11
12
-
One powerful way to boost your productivity with Copilot is to ask it to generate a checklist or to interview you step-by-step for a task. Instead of just requesting code or a solution, try prompts like:
12
+
One powerful way to boost your productivity with Copilot is to ask it to generate a checklist or to interview you step-by-step for a task. Instead of just requesting information or a solution, try prompts like:
13
13
14
-
- "Give me a checklist for deploying an ASP.NET app to Azure."
15
-
- "Interview me to gather requirements for a new feature."
16
-
- "Walk me through the steps to set up CI/CD for my project."
17
-
- "Create a code review checklist for my team."
18
-
- "Help me plan a database migration by asking me questions."
14
+
- "Give me a checklist for launching a new product."
15
+
- "Interview me to gather requirements for a client presentation."
16
+
- "Walk me through the steps to plan a successful team meeting."
17
+
- "Create a project management checklist for my team."
18
+
- "Help me plan a budget proposal by asking me questions."
19
19
20
20
## Why This Works
21
21
@@ -29,24 +29,24 @@ Copilot will respond with a structured list or a series of questions, helping yo
29
29
30
30
## Example in Action
31
31
32
-
**Your Prompt:** "Interview me to gather requirements for building a new REST API."
32
+
**Your Prompt:** "Interview me to gather requirements for planning a company event."
33
33
34
34
**Copilot's Response:**
35
35
36
-
1. What is the primary purpose of this API?
37
-
2.Who are the intended users or consumers?
38
-
3. What data will the API work with?
39
-
4. Do you need authentication and authorization?
40
-
5. What are your performance requirements?
41
-
6. Are there any third-party integrations needed?
36
+
1. What type of event are you planning (conference, celebration, training, etc.)?
37
+
2.How many attendees are you expecting?
38
+
3. What's your budget range for this event?
39
+
4. Do you have a preferred date or timeline?
40
+
5. What are your venue requirements (location, capacity, amenities)?
41
+
6. Are there any special accommodations or accessibility needs?
42
42
43
43
## Pro Tips
44
44
45
-
-**After Copilot generates a checklist**, you can ask it to expand on any step, provide code snippets, or even automate parts of the process
46
-
-**Use follow-up questions** like "What's the best practice for step 3?" or "Can you show me code for step 5?"
45
+
-**After Copilot generates a checklist**, you can ask it to expand on any step, provide additional resources, or even help you create action items for each step
46
+
-**Use follow-up questions** like "What's the best practice for step 3?" or "Can you give me a template for step 5?"
47
47
-**Save successful checklists** as templates for future projects
48
48
-**Use your microphone and dictation** - Instead of typing long responses to Copilot's interview questions, use voice input to speak your thoughts naturally. This makes the conversation flow more like a real consultation and helps you articulate ideas quickly without getting bogged down in typing
49
49
-**Think out loud with voice** - When Copilot asks clarifying questions, use voice dictation to brainstorm and explore ideas verbally. You can refine and edit afterward, but speaking helps you capture thoughts faster than typing
50
-
-**Treat Copilot like a collaborative partner** - let it guide you, ask follow-up questions, and help you think through your work like a seasoned tech pro
50
+
-**Treat Copilot like a collaborative partner** - let it guide you, ask follow-up questions, and help you think through your work like a seasoned professional
51
51
52
-
This approach is especially useful for complex workflows, onboarding new team members, code reviews, deployments, or when you want to ensure best practices are followed consistently across your projects.
52
+
This approach is especially useful for complex workflows, onboarding new team members, project planning, event management, or when you want to ensure best practices are followed consistently across your organization.
logger.LogInformation("Cache refresh completed successfully (content and output cache)");
238
+
logger.LogInformation("Cache refresh completed successfully (content and output cache) in {Environment} environment",environment.EnvironmentName);
245
239
returnResults.Ok(new{
246
240
message="Content and output cache refreshed successfully",
247
-
timestamp=DateTime.UtcNow
241
+
timestamp=DateTime.UtcNow,
242
+
environment=environment.EnvironmentName
248
243
});
249
244
}
250
245
catch(Exceptionex)
@@ -255,6 +250,6 @@ public static void MapCacheRefreshEndpoint(this WebApplication app)
255
250
})
256
251
.WithName("RefreshCache")
257
252
.WithSummary("Refresh the content cache")
258
-
.WithDescription("Triggers a refresh of the in-memory content cache and output cache for all pages. Requires X-API-Key header for authentication.");
253
+
.WithDescription("Triggers a refresh of the in-memory content cache and output cache for all pages. Requires X-API-Key header for authentication in production.");
0 commit comments