Crisp Skill
/install crisp
Crisp Customer Support
Crisp is a customer support platform. Use this skill when the user needs to:
- Check for new messages in the inbox
- Read conversation history
- Search conversations
- Send replies to customers
- Check conversation status
Credentials
Crisp requires authentication via HTTP headers with a token identifier and key (Basic Auth), plus the website ID for the API URL.
Set these as environment variables (stored securely, never logged):
CRISP_WEBSITE_ID- Your website identifier (e.g.,0f4c...)CRISP_TOKEN_ID- Your Plugin Token Identifier (e.g.,e47d...)CRISP_TOKEN_KEY- Your Plugin Token Key (e.g.,a7d7...)
Common Workflows
Check Inbox Status
scripts/crisp.py inbox list --page 1
Read Conversation
scripts/crisp.py conversation get \x3Csession_id>
Get Messages in Conversation
scripts/crisp.py messages get \x3Csession_id>
Send a Reply
scripts/crisp.py message send \x3Csession_id> "Your reply text here"
Search Conversations
scripts/crisp.py conversations search "query terms" --filter unresolved --max 10
Mark as Read
scripts/crisp.py conversation read \x3Csession_id>
Resolve Conversation
scripts/crisp.py conversation resolve \x3Csession_id>
API Reference
Key endpoints used:
GET /v1/website/{website_id}/conversations/{page}- List conversationsGET /v1/website/{website_id}/conversation/{session_id}- Get conversation detailsGET /v1/website/{website_id}/conversation/{session_id}/messages- Get messagesPOST /v1/website/{website_id}/conversation/{session_id}/message- Send messagePATCH /v1/website/{website_id}/conversation/{session_id}/read- Mark as readPATCH /v1/website/{website_id}/conversation/{session_id}- Update/resolve
Base URL: https://api.crisp.chat
Notes
- Always ask before sending customer replies to confirm tone/content
- Check for
meta.emailin conversation for customer email - Verify
CRISP_WEBSITE_ID,CRISP_TOKEN_ID, andCRISP_TOKEN_KEYare set before running commands - Use
--jsonflag for script output when parsing programmatically
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install crisp - 安装完成后,直接呼叫该 Skill 的名称或使用
/crisp触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Crisp Skill 是什么?
Customer support via Crisp API. Use when the user asks to check, read, search, or respond to Crisp inbox messages. Requires Crisp website ID and plugin token (authenticated via environment variables CRISP_WEBSITE_ID, CRISP_TOKEN_ID, and CRISP_TOKEN_KEY). 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1875 次。
如何安装 Crisp Skill?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install crisp」即可一键安装,无需额外配置。
Crisp Skill 是免费的吗?
是的,Crisp Skill 完全免费(开源免费),可自由下载、安装和使用。
Crisp Skill 支持哪些平台?
Crisp Skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Crisp Skill?
由 Minh Phan (Paul)(@paul-phan)开发并维护,当前版本 v1.0.0。