一键导入
sdk-support
Ask anything about the RSC PowerShell SDK. Pass a question as text, or a URL (Slack, GitHub issue, web page) and the question will be extracted from it.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Ask anything about the RSC PowerShell SDK. Pass a question as text, or a URL (Slack, GitHub issue, web page) and the question will be extracted from it.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | sdk-support |
| description | Ask anything about the RSC PowerShell SDK. Pass a question as text, or a URL (Slack, GitHub issue, web page) and the question will be extracted from it. |
Answer any question about the Rubrik Security Cloud (RSC) PowerShell SDK, grounded in the actual codebase.
The argument ($ARGUMENTS) is either:
/ask how do I filter clusters by name?)/ask https://rubrik.enterprise.slack.com/archives/...)If the argument looks like a URL (starts with http:// or https://):
Slack URL (slack.com/archives/):
Parse channel ID and timestamp from the URL path. The timestamp is the p
segment: remove leading p, insert . before the last 6 digits
(e.g., p1710000000123456 → 1710000000.123456).
Fetch with mcp__slack__get_thread_replies(channel, thread_ts).
If no replies come back, use mcp__slack__conversations_history with
oldest/latest set to the timestamp and inclusive: true.
Resolve user IDs with mcp__slack__resolve_user_ids.
GitHub URL (github.com/.../issues/ or github.com/.../discussions/):
Use gh issue view or gh discussion view via Bash, or use WebFetch.
Any other URL: Use WebFetch to retrieve the page content.
Anonymization: When presenting the extracted question, NEVER include people's names, user IDs, or handles. Refer to them as "the user" or "someone asked". The output must be shareable and suitable for docs/FAQ without identifying anyone.
Present a brief summary of the extracted question to the user before answering.
If the argument is plain text: use it directly as the question.
Search the SDK codebase for relevant context. Be thorough — the quality of the answer depends on accurate codebase knowledge. Look in:
Toolkit/Public/ — Toolkit cmdlet scripts (high-level wrappers)Samples/ — sample scripts and usage examplesRubrikSecurityCloud/RubrikSecurityCloud.PowerShell/Cmdlets/ — hand-written C# cmdletsRubrikSecurityCloud/RubrikSecurityCloud.PowerShell/generated/ — auto-generated cmdletsRubrikSecurityCloud/RubrikSecurityCloud.PowerShell/Public/ — core script functionsdocs/, README.md, GETTING_STARTED.md, FAQ.md — documentationCHANGELOG.md — recent changes and known fixesUse Grep, Glob, or the Explore agent as needed. Verify that any cmdlet names, parameter names, or type names you reference actually exist in the codebase.
Write a clear, helpful answer. Guidelines:
Samples/Example.ps1")
so the user can explore further.Toolkit/Public/Connect-Rsc.ps1 and getting-started docs for accurate info.