/faq-support
Answers common customer questions from a knowledge base and escalates to a human agent when unable to help. Use when the user asks a frequently asked question, submits a support ticket or help desk request, or needs assistance with account, billing, or product issues.
$ npx -y skills add 0xranx/golembot --skill faq-support --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/faq-support
Context preview
The summary Claude sees to decide when to auto-load this skill.
Answers common customer questions from a knowledge base and escalates to a human agent when unable to help. Use when the user asks a frequently asked question, submits a support ticket or help desk request, or needs assistance with account, billing, or product issues.
SKILL.md
faq-support.SKILL.mdname: faq-support
description: "Answers common customer questions from a knowledge base and escalates to a human agent when unable to help. Use when the user asks a frequently asked question, submits a support ticket or help desk request, or needs assistance with account, billing, or product issues."
FAQ Support Skill
Answer users' frequently asked questions by consulting the local knowledge base. Escalate to a human agent when the question cannot be resolved.
Workflow
1. Upon receiving a user question, first read the `faq.md` file in the current directory:
cat faq.md
2. If a matching Q&A pair is found, reply with the answer directly 3. If no match is found, attempt to reason an answer based on existing knowledge 4. If you are completely unable to answer, reply: "I'm unable to answer this question at the moment. It has been logged, and a human agent will follow up as soon as possible." 5. Log any unanswered question to `unanswered.md` so human agents can review gaps:
echo "### Q: <the user's question>" >> unanswered.md
echo "Received: $(date -u +%Y-%m-%dT%H:%M:%SZ)" >> unanswered.md
echo "" >> unanswered.md
FAQ File Format
`faq.md` uses a Q&A format:
### Q: How do I reset my password?
A: Click "Forgot Password" on the login page, enter your registered email, and follow the instructions in the email.
### Q: How long does a refund take?
A: After the request is approved, the refund will arrive within 3-5 business days.
Behavioral Guidelines
- Replies should be accurate and concise
- Do not fabricate uncertain information
- If a user is upset, acknowledge their feelings first before answering
- Log unanswered questions to `unanswered.md` for human agent reference
Read more
name: faq-support description: "Answers common customer questions from a knowledge base and escalates to a human agent when unable to help. Use when the user asks a frequently asked question, submits a support ticket or help desk request, or needs assistance with account, billing, or product issues."
FAQ Support Skill
Answer users' frequently asked questions by consulting the local knowledge base. Escalate to a human agent when the question cannot be resolved.
Workflow
1. Upon receiving a user question, first read the `faq.md` file in the current directory:
cat faq.md
2. If a matching Q&A pair is found, reply with the answer directly 3. If no match is found, attempt to reason an answer based on existing knowledge 4. If you are completely unable to answer, reply: "I'm unable to answer this question at the moment. It has been logged, and a human agent will follow up as soon as possible." 5. Log any unanswered question to `unanswered.md` so human agents can review gaps:
echo "### Q: <the user's question>" >> unanswered.md echo "Received: $(date -u +%Y-%m-%dT%H:%M:%SZ)" >> unanswered.md echo "" >> unanswered.md
FAQ File Format
`faq.md` uses a Q&A format:
### Q: How do I reset my password? A: Click "Forgot Password" on the login page, enter your registered email, and follow the instructions in the email. ### Q: How long does a refund take? A: After the request is approved, the refund will arrive within 3-5 business days.
Behavioral Guidelines
- Replies should be accurate and concise
- Do not fabricate uncertain information
- If a user is upset, acknowledge their feelings first before answering
- Log unanswered questions to `unanswered.md` for human agent reference
Any Agent × Any Provider × Anywhere. Connect Cursor, Claude Code, OpenCode, or Codex to Slack, Telegram, Discord, Feishu, DingTalk, WeCom, WeChat — with any LLM provider.
Repo: 0xranx/golembot
Other skills on golembot.
- /escalation
Escalate unresolvable or sensitive requests to a human agent by recording an escalation entry. Use when the user asks to speak to a human, the bot cannot answer confidently, the request involves financial, legal, or security concerns, a safety issue is detected, or the user is
Open skill - /general
Handle everyday conversation, answer questions, manage files, take notes, run scripts, and maintain persistent memory across sessions. Use when the user asks a general question, requests file operations, wants to brainstorm ideas, needs to-do tracking, asks you to remember
Open skill - /im-adapter
Format responses for instant messaging platforms such as Lark, DingTalk, WeCom, Slack, and Telegram. Controls response length, Markdown formatting, tone, group chat behavior, and the [PASS] protocol. Use when replying through an IM channel, composing a group chat message, or
Open skill - /kb-guide
Search, read, create, and update knowledge base entries via MCP-connected KB tools. Use when the user asks to look up documentation, find existing articles, check if docs exist on a topic, create a new KB entry, update an existing document, or when domain questions should be
Open skill - /message-push
Send proactive messages to IM groups or individual users via the gateway Send API. Use when the user says to send, post, notify, forward, or tell someone a message on Feishu, Slack, Telegram, Discord, DingTalk, or WeCom.
Open skill - /multi-bot
Coordinates responses between multiple GolemBot instances in a shared fleet. Use when the bot operates in a group chat with other bots, needs to decide whether to respond or pass, or must call a peer bot's API to fetch cross-domain data.
Open skill

