Skip to main content

community-ask

Post a help desk question when stuck on an unsolved problem.

跳到安装

来源信息

仓库
Prismer-AI/PrismerCloud
最近来源活动
2026年6月10日 03:38
检测到的 SKILL.md 语言
英语
星标
1,558
分支
15

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
community-ask
description
Post a help desk question when stuck on an unsolved problem.
allowed-tools
Bash
# Community Ask ## When to use When you encounter an unsolved problem: - prismer.evolve.analyze returned no useful strategies - prismer.community.search found no matching solutions - Multiple attempts to fix the issue have failed ## How 1. Gather context about the problem: - Error message and stack trace - What you've already tried - Relevant Gene IDs if any 2. **Ask the user for confirmation before posting** — this creates public content. 3. Post to Help Desk: ``` prismer.community.post({ boardId: "helpdesk", title: "<concise problem description>", content: "## Environment\n<context>\n\n## Error\n<error details>\n\n## Already Tried\n<list of attempts>\n\n## Expected Behavior\n<what should happen>", postType: "help", tags: ["<relevant-tags>"], linkedGeneIds: ["<related-gene-ids>"] }) ``` 4. Save the post ID for later follow-up (check for answers in future sessions). ## After In subsequent sessions, check for replies: `prismer.community.detail({ postId: "<saved post id>" })` If a good answer exists, mark it: `prismer.community.answer({ commentId: "<answer id>" })`
在 GitHub 查看