{
  "schemaVersion": "1.0",
  "item": {
    "slug": "crisp",
    "name": "Crisp Skill",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/paul-phan/crisp",
    "canonicalUrl": "https://clawhub.ai/paul-phan/crisp",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/crisp",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=crisp",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/crisp.py",
      "references/api.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/crisp"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/crisp",
    "agentPageUrl": "https://openagent3.xyz/skills/crisp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/crisp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/crisp/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Crisp Customer Support",
        "body": "Crisp is a customer support platform. Use this skill when the user needs to:\n\nCheck for new messages in the inbox\nRead conversation history\nSearch conversations\nSend replies to customers\nCheck conversation status"
      },
      {
        "title": "Credentials",
        "body": "Crisp requires authentication via HTTP headers with a token identifier and key (Basic Auth), plus the website ID for the API URL.\n\nSet these as environment variables (stored securely, never logged):\n\nCRISP_WEBSITE_ID - Your website identifier (e.g., 0f4c...)\nCRISP_TOKEN_ID - Your Plugin Token Identifier (e.g., e47d...)\nCRISP_TOKEN_KEY - Your Plugin Token Key (e.g., a7d7...)"
      },
      {
        "title": "Check Inbox Status",
        "body": "scripts/crisp.py inbox list --page 1"
      },
      {
        "title": "Read Conversation",
        "body": "scripts/crisp.py conversation get <session_id>"
      },
      {
        "title": "Get Messages in Conversation",
        "body": "scripts/crisp.py messages get <session_id>"
      },
      {
        "title": "Send a Reply",
        "body": "scripts/crisp.py message send <session_id> \"Your reply text here\""
      },
      {
        "title": "Search Conversations",
        "body": "scripts/crisp.py conversations search \"query terms\" --filter unresolved --max 10"
      },
      {
        "title": "Mark as Read",
        "body": "scripts/crisp.py conversation read <session_id>"
      },
      {
        "title": "Resolve Conversation",
        "body": "scripts/crisp.py conversation resolve <session_id>"
      },
      {
        "title": "API Reference",
        "body": "Key endpoints used:\n\nGET /v1/website/{website_id}/conversations/{page} - List conversations\nGET /v1/website/{website_id}/conversation/{session_id} - Get conversation details\nGET /v1/website/{website_id}/conversation/{session_id}/messages - Get messages\nPOST /v1/website/{website_id}/conversation/{session_id}/message - Send message\nPATCH /v1/website/{website_id}/conversation/{session_id}/read - Mark as read\nPATCH /v1/website/{website_id}/conversation/{session_id} - Update/resolve\n\nBase URL: https://api.crisp.chat"
      },
      {
        "title": "Notes",
        "body": "Always ask before sending customer replies to confirm tone/content\nCheck for meta.email in conversation for customer email\nVerify CRISP_WEBSITE_ID, CRISP_TOKEN_ID, and CRISP_TOKEN_KEY are set before running commands\nUse --json flag for script output when parsing programmatically"
      }
    ],
    "body": "Crisp Customer Support\n\nCrisp is a customer support platform. Use this skill when the user needs to:\n\nCheck for new messages in the inbox\nRead conversation history\nSearch conversations\nSend replies to customers\nCheck conversation status\nCredentials\n\nCrisp requires authentication via HTTP headers with a token identifier and key (Basic Auth), plus the website ID for the API URL.\n\nSet these as environment variables (stored securely, never logged):\n\nCRISP_WEBSITE_ID - Your website identifier (e.g., 0f4c...)\nCRISP_TOKEN_ID - Your Plugin Token Identifier (e.g., e47d...)\nCRISP_TOKEN_KEY - Your Plugin Token Key (e.g., a7d7...)\nCommon Workflows\nCheck Inbox Status\nscripts/crisp.py inbox list --page 1\n\nRead Conversation\nscripts/crisp.py conversation get <session_id>\n\nGet Messages in Conversation\nscripts/crisp.py messages get <session_id>\n\nSend a Reply\nscripts/crisp.py message send <session_id> \"Your reply text here\"\n\nSearch Conversations\nscripts/crisp.py conversations search \"query terms\" --filter unresolved --max 10\n\nMark as Read\nscripts/crisp.py conversation read <session_id>\n\nResolve Conversation\nscripts/crisp.py conversation resolve <session_id>\n\nAPI Reference\n\nKey endpoints used:\n\nGET /v1/website/{website_id}/conversations/{page} - List conversations\nGET /v1/website/{website_id}/conversation/{session_id} - Get conversation details\nGET /v1/website/{website_id}/conversation/{session_id}/messages - Get messages\nPOST /v1/website/{website_id}/conversation/{session_id}/message - Send message\nPATCH /v1/website/{website_id}/conversation/{session_id}/read - Mark as read\nPATCH /v1/website/{website_id}/conversation/{session_id} - Update/resolve\n\nBase URL: https://api.crisp.chat\n\nNotes\nAlways ask before sending customer replies to confirm tone/content\nCheck for meta.email in conversation for customer email\nVerify CRISP_WEBSITE_ID, CRISP_TOKEN_ID, and CRISP_TOKEN_KEY are set before running commands\nUse --json flag for script output when parsing programmatically"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/paul-phan/crisp",
    "publisherUrl": "https://clawhub.ai/paul-phan/crisp",
    "owner": "paul-phan",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/crisp",
    "downloadUrl": "https://openagent3.xyz/downloads/crisp",
    "agentUrl": "https://openagent3.xyz/skills/crisp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/crisp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/crisp/agent.md"
  }
}