---
name: red-note-imitation-writing
description: 小红书笔记仿写 (API key required).
metadata: 
  clawdbot: 
    emoji: 🔥
    requires: 
      bins: [curl]
    auth:
      type: api_key
      env_var: WSD_API_KEY
      hint: "https://ai.wsdsocial.com"
---

# 小红书笔记仿写

## 🔑 设置 API 密钥
1. 获取您的密钥: https://ai.wsdsocial.com/skills
2. 设置为环境变量: WSD_API_KEY

## 小红书仿写skill
上传参考文案，结合产品信息和卖点，AI 仿写小红书风格文案
```bash
curl -X POST "https://ai.wsdsocial.com/api/pub/skills/red-note-imitation-writing/_tool_89" \
  -H "Content-Type: application/json" \
  -H "key: ${WSD_API_KEY}" \
  -d '{"reference": "xxx", "request": "xxx", "product_info": "xxx", "selling_points": "xxx"}'
```

请求参数schema说明：
{
  "type": "object",
  "properties": {
    "request": {
      "type": "string",
      "description": "额外要求：字数、风格、emoji 等"
    },
    "reference": {
      "type": "string",
      "description": "爆款文案原文"
    },
    "product_info": {
      "type": "string",
      "description": "产品信息"
    },
    "selling_points": {
      "type": "string",
      "description": "卖点利益点"
    }
  },
  "required": [
    "reference"
  ]
}