一键导入
list-topics
List all topics in the Copilot Studio agent with their trigger types, phrases, and action counts. Use when the user wants to see what topics exist.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
List all topics in the Copilot Studio agent with their trigger types, phrases, and action counts. Use when the user wants to see what topics exist.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Guide users through adding a new connector action to a Copilot Studio agent. Connector actions require UI-based connection setup, so this skill walks users through the Copilot Studio portal steps, then delegates to edit-action for YAML modifications.
Generate and insert an Adaptive Card into a Copilot Studio topic using AdaptiveCardPrompt. Use when the user asks to add an adaptive card, rich card, form card, info card, confirmation card, or interactive card to a topic.
Add generative answer nodes (SearchAndSummarizeContent or AnswerQuestionWithAI) to a Copilot Studio topic. Use this instead of /add-node when the user asks to add grounded answers, knowledge search, generative answers, or AI-powered responses — these nodes require specific patterns (ConditionGroup follow-up, knowledge source references, autoSend, responseCaptureType) that /add-node does not cover.
Add a knowledge source (public website or SharePoint) to a Copilot Studio agent. Use when the user asks to add a knowledge source, documentation URL, website, or SharePoint site for the agent to search.
Add or modify a node in an existing Copilot Studio topic. Use when the user asks to add a question, message, condition, variable, or other node to a topic. Do NOT use this for generative answers or knowledge search — use /add-generative-answers instead.
Add child agents, connected agents, or other multi-agent patterns to a Copilot Studio agent. Use when the user asks to create a sub-agent, child agent, connected agent, or call another agent.
| user-invocable | false |
| name | list-topics |
| description | List all topics in the Copilot Studio agent with their trigger types, phrases, and action counts. Use when the user wants to see what topics exist. |
List all topics in the current agent with their trigger types and details.
Auto-discover the agent directory — find all agents via:
Glob: **/agent.mcs.yml
Find all topic files in the discovered agent directory:
Glob: <discovered-agent>/topics/*.topic.mcs.yml
For each topic file, read it and extract:
# Name: comment or filename)beginDialog.kind)OnRecognizedIntent, from triggerQueries)actions arrayBeginDialog or ReplaceDialog calls)Present results in a table:
| # | Topic Name | Trigger | Phrases | Actions | Calls |
|---|------------|---------|---------|---------|-------|
| 1 | Greeting | OnRecognizedIntent | Hello, Hi, Hey | 2 | - |
| 2 | Fallback | OnUnknownIntent | - | 4 | Escalate |
Note any system topics (OnError, OnSelectIntent, OnSignIn) that should be modified with care.