Skip to content

Conversation

SharanGarcha-MSFT
Copy link
Collaborator

No description provided.

Acrolinx Scorecards

We currently enforce a minimum score of 80.

Click the scorecard links for each article to review the Acrolinx feedback on grammar, spelling, punctuation, writing style, and terminology:

Article Score Issues Scorecard Processed
msteams-platform/bots/how-to/conversations/prompt-suggestions.md 86 57 link

More info about Acrolinx

Use the Acrolinx extension, or sidebar, in Visual Studio Code to check spelling, grammar, style, tone, clarity, and key terminology when you're creating or updating content. For more information, see Use the Visual Studio Code extension to run Acrolinx locally.

Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR updates the documentation for prompt suggestions in Microsoft Teams bots to reflect new manifest schema changes. The documentation now describes an expanded command structure with additional fields for better control over bot interactions.

  • Updated command schema to include four fields: title, description, type, and prompt
  • Added explanation of behavior differences between "basic" and "prompt" command types
  • Updated JSON manifest examples to demonstrate the new field structure

Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

To enable prompt starters, define the `commands` property in your bot's app manifest. Each command contains a `title` and `description`. The `title` is the prompt and the `description` describes what the users accomplish. When the user selects on a prompt starter, the `title` of the prompt is populated in the compose box. To define `commands` in your app manifest, you can either use **Developer Portal** or add them manually in the app manifest.
To enable prompt starters, define the `commands` property in your bot's app manifest. Each command now contains four fields, a `title`, `description`, `type` and `prompt`. The `title` field is the text shown in the prompt starter and the `description` describes what the users accomplish. The `type` field indicates whether the bot command is a basic command or a prompt. The `prompt` field defines the text to populate in the compose box, when the command is a prompt type.
When the user selects on a prompt starter, the `title` of the prompt is populated in the compose box. To define `commands` in your app manifest, you can either use **Developer Portal** or add them manually in the app manifest.
The `type ` field determines how the command behaves.
Copy link
Preview

Copilot AI Sep 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's an extra space after 'type' before the closing backtick. It should be type without the trailing space.

Suggested change
The `type ` field determines how the command behaves.
The `type` field determines how the command behaves.

Copilot uses AI. Check for mistakes.

"commands":[
{
"title":"Help",
"description":"Displays this help message"
Copy link
Preview

Copilot AI Sep 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing comma after the description field. JSON syntax requires commas between object properties.

Suggested change
"description":"Displays this help message"
"description":"Displays this help message",

Copilot uses AI. Check for mistakes.

Comment on lines 109 to 120
"description":"Search flights from Seattle to Phoenix May 2-5 departing after 3pm"
"type": "prompt",
Copy link
Preview

Copilot AI Sep 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing comma after the description field. JSON syntax requires commas between object properties.

Copilot uses AI. Check for mistakes.

Comment on lines 114 to 131
"description":"Displays this help message"
"type":"basic"
},
{
"title":"Search Flights",
"description":"Search flights from Seattle to Phoenix May 2-5 departing after 3pm"
"type": "prompt",
"prompt": "Search flights from Seattle to Phoenix May 2-5 departing after 3pm. Please show me the best options."
},
{
"title":"Search Hotels",
"description":"Search hotels in Portland tonight"
"type": "prompt",
"prompt": "Search hotels in Portland for tonight. Please show me available options with good ratings."
},
{
"title":"Best Time to Fly",
"description":"Best time to fly to London for a 5 day trip this summer"
Copy link
Preview

Copilot AI Sep 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing comma after the description field. JSON syntax requires commas between object properties.

Suggested change
"description":"Displays this help message"
"type":"basic"
},
{
"title":"Search Flights",
"description":"Search flights from Seattle to Phoenix May 2-5 departing after 3pm"
"type": "prompt",
"prompt": "Search flights from Seattle to Phoenix May 2-5 departing after 3pm. Please show me the best options."
},
{
"title":"Search Hotels",
"description":"Search hotels in Portland tonight"
"type": "prompt",
"prompt": "Search hotels in Portland for tonight. Please show me available options with good ratings."
},
{
"title":"Best Time to Fly",
"description":"Best time to fly to London for a 5 day trip this summer"
"description":"Displays this help message",
"type":"basic"
},
{
"title":"Search Flights",
"description":"Search flights from Seattle to Phoenix May 2-5 departing after 3pm",
"type": "prompt",
"prompt": "Search flights from Seattle to Phoenix May 2-5 departing after 3pm. Please show me the best options."
},
{
"title":"Search Hotels",
"description":"Search hotels in Portland tonight",
"type": "prompt",
"prompt": "Search hotels in Portland for tonight. Please show me available options with good ratings."
},
{
"title":"Best Time to Fly",
"description":"Best time to fly to London for a 5 day trip this summer",

Copilot uses AI. Check for mistakes.

Comment on lines 114 to 131
"description":"Displays this help message"
"type":"basic"
},
{
"title":"Search Flights",
"description":"Search flights from Seattle to Phoenix May 2-5 departing after 3pm"
"type": "prompt",
"prompt": "Search flights from Seattle to Phoenix May 2-5 departing after 3pm. Please show me the best options."
},
{
"title":"Search Hotels",
"description":"Search hotels in Portland tonight"
"type": "prompt",
"prompt": "Search hotels in Portland for tonight. Please show me available options with good ratings."
},
{
"title":"Best Time to Fly",
"description":"Best time to fly to London for a 5 day trip this summer"
Copy link
Preview

Copilot AI Sep 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing comma after the description field. JSON syntax requires commas between object properties.

Suggested change
"description":"Displays this help message"
"type":"basic"
},
{
"title":"Search Flights",
"description":"Search flights from Seattle to Phoenix May 2-5 departing after 3pm"
"type": "prompt",
"prompt": "Search flights from Seattle to Phoenix May 2-5 departing after 3pm. Please show me the best options."
},
{
"title":"Search Hotels",
"description":"Search hotels in Portland tonight"
"type": "prompt",
"prompt": "Search hotels in Portland for tonight. Please show me available options with good ratings."
},
{
"title":"Best Time to Fly",
"description":"Best time to fly to London for a 5 day trip this summer"
"description":"Displays this help message",
"type":"basic"
},
{
"title":"Search Flights",
"description":"Search flights from Seattle to Phoenix May 2-5 departing after 3pm",
"type": "prompt",
"prompt": "Search flights from Seattle to Phoenix May 2-5 departing after 3pm. Please show me the best options."
},
{
"title":"Search Hotels",
"description":"Search hotels in Portland tonight",
"type": "prompt",
"prompt": "Search hotels in Portland for tonight. Please show me available options with good ratings."
},
{
"title":"Best Time to Fly",
"description":"Best time to fly to London for a 5 day trip this summer",

Copilot uses AI. Check for mistakes.

Copy link
Contributor

PoliCheck Scan Report

The following report lists PoliCheck issues in PR files. Before you merge the PR, you must fix all severity-1 issues. Other issues are also a high priority. The AI Review Details column lists suggestions for either removing or replacing the terms. If you find a false positive result, mention it in a PR comment and include this text: #policheck-false-positive. This feedback helps reduce false positives in future scans.

✅ No issues found

More information about PoliCheck

Information: PoliCheck | Severity Guidance | Term
For any questions: Try searching the learn.microsoft.com contributor guides or post your question in the Learn support channel.

Copy link
Contributor

Learn Build status updates of commit 622e07c:

✅ Validation status: passed

File Status Preview URL Details
msteams-platform/bots/how-to/conversations/prompt-suggestions.md ✅Succeeded View

For more details, please refer to the build report.

Acrolinx Scorecards

We currently enforce a minimum score of 80.

Click the scorecard links for each article to review the Acrolinx feedback on grammar, spelling, punctuation, writing style, and terminology:

Article Score Issues Scorecard Processed
msteams-platform/bots/how-to/conversations/prompt-suggestions.md 89 48 link

More info about Acrolinx

Use the Acrolinx extension, or sidebar, in Visual Studio Code to check spelling, grammar, style, tone, clarity, and key terminology when you're creating or updating content. For more information, see Use the Visual Studio Code extension to run Acrolinx locally.

Copy link
Contributor

PoliCheck Scan Report

The following report lists PoliCheck issues in PR files. Before you merge the PR, you must fix all severity-1 issues. Other issues are also a high priority. The AI Review Details column lists suggestions for either removing or replacing the terms. If you find a false positive result, mention it in a PR comment and include this text: #policheck-false-positive. This feedback helps reduce false positives in future scans.

✅ No issues found

More information about PoliCheck

Information: PoliCheck | Severity Guidance | Term
For any questions: Try searching the learn.microsoft.com contributor guides or post your question in the Learn support channel.

Copy link
Contributor

Learn Build status updates of commit 57381ee:

✅ Validation status: passed

File Status Preview URL Details
msteams-platform/bots/how-to/conversations/prompt-suggestions.md ✅Succeeded View

For more details, please refer to the build report.

Acrolinx Scorecards

We currently enforce a minimum score of 80.

Click the scorecard links for each article to review the Acrolinx feedback on grammar, spelling, punctuation, writing style, and terminology:

Article Score Issues Scorecard Processed
msteams-platform/bots/how-to/conversations/prompt-suggestions.md 89 48 link

More info about Acrolinx

Use the Acrolinx extension, or sidebar, in Visual Studio Code to check spelling, grammar, style, tone, clarity, and key terminology when you're creating or updating content. For more information, see Use the Visual Studio Code extension to run Acrolinx locally.

Copy link
Contributor

PoliCheck Scan Report

The following report lists PoliCheck issues in PR files. Before you merge the PR, you must fix all severity-1 issues. Other issues are also a high priority. The AI Review Details column lists suggestions for either removing or replacing the terms. If you find a false positive result, mention it in a PR comment and include this text: #policheck-false-positive. This feedback helps reduce false positives in future scans.

✅ No issues found

More information about PoliCheck

Information: PoliCheck | Severity Guidance | Term
For any questions: Try searching the learn.microsoft.com contributor guides or post your question in the Learn support channel.

Copy link
Contributor

Learn Build status updates of commit fb40dee:

✅ Validation status: passed

File Status Preview URL Details
msteams-platform/bots/how-to/conversations/prompt-suggestions.md ✅Succeeded View

For more details, please refer to the build report.

Acrolinx Scorecards

We currently enforce a minimum score of 80.

Click the scorecard links for each article to review the Acrolinx feedback on grammar, spelling, punctuation, writing style, and terminology:

Article Score Issues Scorecard Processed
msteams-platform/bots/how-to/conversations/prompt-suggestions.md 96 41 link

More info about Acrolinx

Use the Acrolinx extension, or sidebar, in Visual Studio Code to check spelling, grammar, style, tone, clarity, and key terminology when you're creating or updating content. For more information, see Use the Visual Studio Code extension to run Acrolinx locally.

Copy link
Contributor

PoliCheck Scan Report

The following report lists PoliCheck issues in PR files. Before you merge the PR, you must fix all severity-1 issues. Other issues are also a high priority. The AI Review Details column lists suggestions for either removing or replacing the terms. If you find a false positive result, mention it in a PR comment and include this text: #policheck-false-positive. This feedback helps reduce false positives in future scans.

✅ No issues found

More information about PoliCheck

Information: PoliCheck | Severity Guidance | Term
For any questions: Try searching the learn.microsoft.com contributor guides or post your question in the Learn support channel.

Copy link
Contributor

Learn Build status updates of commit 619ca6a:

✅ Validation status: passed

File Status Preview URL Details
msteams-platform/bots/how-to/conversations/prompt-suggestions.md ✅Succeeded View

For more details, please refer to the build report.

Acrolinx Scorecards

We currently enforce a minimum score of 80.

Click the scorecard links for each article to review the Acrolinx feedback on grammar, spelling, punctuation, writing style, and terminology:

Article Score Issues Scorecard Processed
msteams-platform/bots/how-to/conversations/prompt-suggestions.md 96 39 link

More info about Acrolinx

Use the Acrolinx extension, or sidebar, in Visual Studio Code to check spelling, grammar, style, tone, clarity, and key terminology when you're creating or updating content. For more information, see Use the Visual Studio Code extension to run Acrolinx locally.

Copy link
Contributor

PoliCheck Scan Report

The following report lists PoliCheck issues in PR files. Before you merge the PR, you must fix all severity-1 issues. Other issues are also a high priority. The AI Review Details column lists suggestions for either removing or replacing the terms. If you find a false positive result, mention it in a PR comment and include this text: #policheck-false-positive. This feedback helps reduce false positives in future scans.

✅ No issues found

More information about PoliCheck

Information: PoliCheck | Severity Guidance | Term
For any questions: Try searching the learn.microsoft.com contributor guides or post your question in the Learn support channel.

Copy link
Contributor

Learn Build status updates of commit e1766ad:

✅ Validation status: passed

File Status Preview URL Details
msteams-platform/bots/how-to/conversations/prompt-suggestions.md ✅Succeeded View

For more details, please refer to the build report.

Updated as per review comments

Acrolinx Scorecards

We currently enforce a minimum score of 80.

Click the scorecard links for each article to review the Acrolinx feedback on grammar, spelling, punctuation, writing style, and terminology:

Article Score Issues Scorecard Processed
msteams-platform/bots/how-to/conversations/prompt-suggestions.md 97 38 link

More info about Acrolinx

Use the Acrolinx extension, or sidebar, in Visual Studio Code to check spelling, grammar, style, tone, clarity, and key terminology when you're creating or updating content. For more information, see Use the Visual Studio Code extension to run Acrolinx locally.

Copy link
Contributor

PoliCheck Scan Report

The following report lists PoliCheck issues in PR files. Before you merge the PR, you must fix all severity-1 issues. Other issues are also a high priority. The AI Review Details column lists suggestions for either removing or replacing the terms. If you find a false positive result, mention it in a PR comment and include this text: #policheck-false-positive. This feedback helps reduce false positives in future scans.

✅ No issues found

More information about PoliCheck

Information: PoliCheck | Severity Guidance | Term
For any questions: Try searching the learn.microsoft.com contributor guides or post your question in the Learn support channel.

Acrolinx Scorecards

We currently enforce a minimum score of 80.

Click the scorecard links for each article to review the Acrolinx feedback on grammar, spelling, punctuation, writing style, and terminology:

Article Score Issues Scorecard Processed
msteams-platform/bots/how-to/conversations/prompt-suggestions.md 97 38 link

More info about Acrolinx

Use the Acrolinx extension, or sidebar, in Visual Studio Code to check spelling, grammar, style, tone, clarity, and key terminology when you're creating or updating content. For more information, see Use the Visual Studio Code extension to run Acrolinx locally.

Copy link
Contributor

Learn Build status updates of commit 2c4c486:

✅ Validation status: passed

File Status Preview URL Details
msteams-platform/bots/how-to/conversations/prompt-suggestions.md ✅Succeeded View

For more details, please refer to the build report.

Copy link
Contributor

PoliCheck Scan Report

The following report lists PoliCheck issues in PR files. Before you merge the PR, you must fix all severity-1 issues. Other issues are also a high priority. The AI Review Details column lists suggestions for either removing or replacing the terms. If you find a false positive result, mention it in a PR comment and include this text: #policheck-false-positive. This feedback helps reduce false positives in future scans.

✅ No issues found

More information about PoliCheck

Information: PoliCheck | Severity Guidance | Term
For any questions: Try searching the learn.microsoft.com contributor guides or post your question in the Learn support channel.

:::column-end:::

:::row-end:::
:::row-end:::
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Revert this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants