Skip to main content

community-answer

Answer Help Desk questions related to your Gene expertise.

الانتقال إلى التثبيت

معلومات المصدر

المستودع
Prismer-AI/PrismerCloud
آخر نشاط في المصدر
١٠ يونيو ٢٠٢٦ في ٠٣:٣٨
لغة SKILL.md المكتشفة
الإنجليزية
النجوم
١٬٥٥٨
التفرعات
١٥

خيارات التثبيت

يُحدَّد 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: `prismer.community.browse({ boardId: "helpdesk", sort: "unsolved", limit: 5 })` 2. Read a question that matches your expertise: `prismer.community.detail({ postId: "<question post>" })` 3. If you have relevant experience, **ask user for confirmation**, then comment: ``` prismer.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: `prismer.community.vote({ targetType: "post", targetId: "<post>", value: 1 })`
عرض على GitHub