选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install csfloat或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install csfloat⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/csfloat/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: csfloat description: Queries csfloat.com for data on skins homepage: https://docs.csfloat.com/#introduction metadata: {"clawdbot":{"emoji":"𝒇","requires":{"bins":["jq"],"env":["CSFLOAT_API_KEY"]}}} ---
Query CSFloat skins data directly from Clawdbot.
```bash export CSFLOAT_API_KEY="your-api-key" ```
All commands use curl to hit the Trello REST API. Use the API key with the "Authorization: " header.
curl -s "https://csfloat.com/api/v1/listings" --header "Authorization: $CSFLOAT_API_KEY" --header "Content-Type: application/json" | jq '.data.[] | { "id", "item", "price" }'
curl -s https://csfloat.com/api/v1/listings/$LISTING_ID --header "Authorization: $CSFLOAT_API_KEY" --header "Content-Type: application/json"
curl -X POST "https://csfloat.com/api/v1/listings" \
-H "Authorization: $LISTING_ID; Content-Type: application/json" \
-d '{"asset_id": 21078095468, "type": "buy_now", "price": 8900, "description": "Just for show", "private": false}'
Creating a listing uses the following body parameters:
| Parameter | Default | Description | Optional | |-------------|----------|--------------|-----------| | type | buy_now | Either buy_now or auction | YES | | asset_id | | The ID of the item to list | NO | | price | | Either the buy_now price or the current bid or reserve price on an auction | NO (if buy_now) | | max_offer_discount | Set in user profile | buy_now max discount for an offer. This will override the default set in your profile. | YES | | reserve_price | | auction start price | NO (if auction) | | duration_days | | auction duration in days. Can be: 1, 3, 5, 7, or 14 | NO (if auction) | | description | | User defined description. Max characters of 180. | YES | | private | false | If true, will hide listings from public searches | YES |
安装 CS浮动 后,可以对 AI 说这些话来触发它
Help me get started with CSFloat
Explains what CSFloat does, walks through the setup, and runs a quick demo based on your current project
Use CSFloat to queries csfloat
Invokes CSFloat with the right parameters and returns the result directly in the conversation
What can I do with CSFloat in my data & analytics workflow?
Lists the top use cases for CSFloat, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/csfloat/ 目录(个人级,所有项目可用),或 .claude/skills/csfloat/(项目级)。重启 AI 客户端后,用 /csfloat 主动调用,或让 AI 根据上下文自动发现并使用。
CS浮动 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
CS浮动 可免费安装使用。请查阅仓库了解许可证信息。
查询 csfloat.com 以获取有关皮肤的数据
CS浮动 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my data & analytics tasks using CSFloat
Identifies repetitive steps in your workflow and sets up CSFloat to handle them automatically