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で見る