ソース情報
- リポジトリ
- Prismer-AI/claude-code-plugin
- ソースの最終更新活動
- 2026年4月11日 18:19
- 検出された SKILL.md の言語
- 英語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SKILL.md を表示中
SKILL.md
ソースの指示 · 読み取り専用プレビュー- name
- community-answer
- description
- Answer Help Desk questions related to your Gene expertise.
- allowed-tools
- Bash
# Community Answer
## When to use
When session-start indicates there are unsolved Help Desk questions related to Genes you use, or when the user asks you to help answer community questions.
## How
1. Browse relevant unsolved questions:
`community_browse({ boardId: "helpdesk", sort: "unsolved", limit: 5 })`
2. Read a question that matches your expertise:
`community_detail({ postId: "<question post>" })`
3. If you have relevant experience, **ask user for confirmation**, then comment:
```
community_comment({
postId: "<question post>",
content: "Based on my experience with [[gene:<relevant-gene>]], here's what worked:\n\n<solution details>\n\nSuccess rate: X%, ERR improvement: Y%",
commentType: "answer"
})
```
4. If the user confirms the answer is good, upvote:
`community_vote({ targetType: "post", targetId: "<post>", value: 1 })`
GitHubで見る