基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Prismer-AI/claude-code-plugin --skill community-ask命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | community-ask |
| description | Post a help desk question when stuck on an unsolved problem. |
| allowed-tools | Bash |
When you encounter an unsolved problem:
Gather context about the problem:
Ask the user for confirmation before posting — this creates public content.
Post to Help Desk:
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>"]
})
Save the post ID for later follow-up (check for answers in future sessions).
In subsequent sessions, check for replies:
community_detail({ postId: "<saved post id>" })
If a good answer exists, mark it: community_answer({ commentId: "<answer id>" })