---
name: red-note-generator
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-generator/_tool_86" \
  -H "Content-Type: application/json" \
  -H "key: ${WSD_API_KEY}" \
  -d '{"topic": "xxx", "request": "xxx"}'
```

请求参数schema说明：
{
  "type": "object",
  "properties": {
    "topic": {
      "type": "string",
      "description": "笔记主题"
    },
    "request": {
      "type": "string",
      "description": "风格、字数、格式等要求"
    }
  },
  "required": [
    "topic"
  ]
}