← Back to Skills Marketplace
houdamiao

Aicloset Skill

by houdamiao · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ⚠ suspicious
122
Downloads
0
Stars
0
Active Installs
4
Versions
Install in OpenClaw
/install aicloset
Description
AI智能衣橱 — 衣橱管理、AI搭配推荐、知识库搜索、虚拟试衣
README (SKILL.md)

AI Closet(爱搭衣橱)

AI 驱动的智能衣橱管理平台。管理衣橱和单品、获取 AI 搭配推荐、搜索服饰知识库、体验虚拟试衣。

鉴权

所有接口需要 API Key,支持两种方式传递:

方式 示例
HTTP Header x-api-key: YOUR_API_KEY
Query 参数 ?api_key=YOUR_API_KEY

API Key 通过环境变量 AICLOSET_API_KEY 获取。

API Key 已绑定特定用户身份,所有接口自动使用绑定用户的数据,无需传 user_id。

Base URL

https://aicloset-dev.wxbjq.top

可通过环境变量 AICLOSET_API_URL 覆盖。

通用响应格式

所有接口统一返回 JSON:

{"code": 0, "msg": "ok", "data": {...}}
  • code = 0 表示成功
  • code != 0 表示错误,msg 包含错误描述

常见错误码:

错误码 含义
40000 参数校验失败
40008 系统错误
43100 鉴权失败 / API Key 无效
43600 衣橱错误(如名称重复)

能力概要

所有接口均为 POST 方法。大部分接口使用 application/x-www-form-urlencodedapplication/jsonproduct/add 支持 multipart/form-data 文件上传。

接口 路径 说明
衣橱列表 /skill/wardrobe/list 查询用户衣橱列表,支持分页
创建衣橱 /skill/wardrobe/create 创建新衣橱
录入单品 /skill/product/add 上传服饰图片,AI 自动识别分类
编辑单品 /skill/product/edit 修改单品名称
搭配列表 /skill/outfit/list 查询用户搭配列表,支持分页
推荐搭配 /skill/outfit/recommend 按使用频率推荐搭配方案
OOTD 记录照片 /skill/ootd/record-photo 记录每日穿搭照片
OOTD 记录搭配 /skill/ootd/record-outfit 记录每日穿搭搭配方案
AI 搭配推荐 /skill/ai/outfit-recommend 根据场景、风格、天气智能推荐搭配
知识库搜索 /skill/ai/kb-search 搜索服饰知识库,支持品类和风格过滤
虚拟试衣 /skill/ai/virtual-tryon 将服饰图片合成到模特身上

使用场景

衣橱管理:创建衣橱 → 上传服饰图片录入单品 → 查看和编辑单品信息

搭配推荐:查询已有搭配 → 获取使用频率推荐 → 使用 AI 根据场景生成新搭配

每日穿搭:选择搭配或拍照 → 记录 OOTD → 关联日期和天气信息

AI 能力:搜索知识库找灵感 → AI 推荐搭配方案 → 虚拟试衣预览效果

详细 API 文档

  • 衣橱与单品管理 — wardrobe/list, wardrobe/create, product/add, product/edit
  • 搭配与 OOTD — outfit/list, outfit/recommend, ootd/record-photo, ootd/record-outfit
  • AI 能力 — ai/outfit-recommend, ai/kb-search, ai/virtual-tryon
Usage Guidance
This skill appears to do what it says (wardrobe management and AI outfit features) but exercise caution before installing: - The service host is an unfamiliar dev-style domain (aicloset-dev.wxbjq.top) and the skill has no listed homepage or trusted publisher — verify the provider and hosting before using. - The skill will send wardrobe data and photos to that external server. Avoid uploading any sensitive or identifying photos unless you trust the service and its privacy policy. - The SKILL.md mentions an override env var AICLOSET_API_URL that is not declared by the skill metadata; if you set that, requests will go to whatever URL you supply — ensure it points to a trusted endpoint. - Treat AICLOSET_API_KEY as a service-specific key. Do not reuse high-privilege keys (AWS, GitHub tokens, etc.) as this API key. - If you need higher assurance, ask the publisher for a homepage, privacy policy, and clarification about the API host and key scoping, or run the skill in an isolated/sandboxed environment.
Capability Analysis
Type: OpenClaw Skill Name: aicloset Version: 1.1.0 The 'aicloset' skill is a standard API wrapper for an AI-driven wardrobe management service. It facilitates wardrobe organization, outfit recommendations, and virtual try-on features by providing clear instructions for an AI agent to interact with a specific backend (aicloset-dev.wxbjq.top) using curl. The skill requires only the necessary API key environment variable and lacks any indicators of data exfiltration, malicious execution, or prompt injection.
Capability Assessment
Purpose & Capability
Name, description, and the listed APIs (wardrobe, product, outfit, AI features) align with the required pieces (curl binary and an API key). The declared primary credential (AICLOSET_API_KEY) is consistent with the API usage shown in examples.
Instruction Scope
SKILL.md instructs the agent to call only the aicloset service endpoints (POSTs to https://aicloset-dev.wxbjq.top) using the API key. However it also documents an environment variable override AICLOSET_API_URL that is not declared in requires.env — an instruction-accesses-env mismatch. The APIs accept image uploads and image URLs: using image_url causes the remote service to fetch arbitrary URLs, and uploading/recording OOTD photos will transmit user images to the external host (privacy/exfiltration risk).
Install Mechanism
Instruction-only skill with no install spec or downloadable code; risk from installation mechanism is low. It requires curl to be present which matches the curl-based examples.
Credentials
Only one credential is required (AICLOSET_API_KEY), which is proportional to the described API usage. Minor inconsistency: SKILL.md mentions an optional AICLOSET_API_URL env override but that variable is not declared in the skill metadata. No unrelated credentials or high-privilege secrets are requested.
Persistence & Privilege
Skill is not marked always:true and does not request modifications to other skills or system-wide settings. It can be invoked autonomously (platform default), which increases blast radius but is not unusual by itself.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install aicloset
  3. After installation, invoke the skill by name or use /aicloset
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.1.0
aicloset 1.1.0 - API Key 现已自动绑定用户身份,无需传递 user_id,所有接口基于绑定用户数据操作。 - 明确说明 `product/add` 接口支持 `multipart/form-data` 文件上传,其他接口支持常规表单/JSON 格式。 - 优化文档细节,提升接口使用清晰度。
v1.0.2
Version 1.0.2 - No file changes or user-facing updates in this release. - Functionality, documentation, and metadata remain unchanged from the previous version.
v1.0.1
No changes detected for version 1.0.1. - No new features or fixes introduced. - All documentation and code remain unchanged from version 1.0.0.
v1.0.0
Version 1.0.0 of aicloset released. - Introduced an AI-driven platform for wardrobe management, outfit recommendations, knowledge base search, and virtual try-on. - Supports wardrobe creation, single item entry (with AI recognition), editing, and viewing. - Offers daily outfit (OOTD) recording features with photo and outfit logging. - Provides AI-powered outfit recommendations based on scenario, style, and weather. - Includes searchable fashion knowledge base and virtual try-on capabilities. - API requires authentication via API key, supports JSON responses, and unified error codes.
Metadata
Slug aicloset
Version 1.1.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 4
Frequently Asked Questions

What is Aicloset Skill?

AI智能衣橱 — 衣橱管理、AI搭配推荐、知识库搜索、虚拟试衣. It is an AI Agent Skill for Claude Code / OpenClaw, with 122 downloads so far.

How do I install Aicloset Skill?

Run "/install aicloset" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Aicloset Skill free?

Yes, Aicloset Skill is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Aicloset Skill support?

Aicloset Skill is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Aicloset Skill?

It is built and maintained by houdamiao (@houdamiao); the current version is v1.1.0.

💬 Comments