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에서 보기