用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/xiaoyaotsyx-dotcom/aliexpress-auto-listing-skill --skill dxm-basic-info命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | dxm-basic-info |
| description | 店小秘速卖通编辑页——基本信息模块:标题改英文 + 产品分类选择 |
| domain | ecommerce |
| triggers | ["用户说\"改标题\"、\"标题英文\"、\"基本信息\"、\"选分类\"","店小秘编辑页打开后需要填基本信息"] |
CDP browser_cdp 直连:
GET /json/version → 获取 webSocketDebuggerUrlTarget.getTargets → 找编辑页 targetRuntime.evaluate + Page.navigate + Input.dispatchMouseEvent编辑页 URL 格式:https://www.dianxiaomi.com/web/smt/edit?id={product_id}
折叠喝水神器随行杯便携式饮水器狗狗外出饮水杯 → Collapsible Portable Dog Water Bottle Travel Pet Water Dispenser Outdoor Drinking BowlRuntime.evaluate:
const input = document.querySelector('input[placeholder*="标题"], textarea[placeholder*="标题"]');
const setter = Object.getOwnPropertyDescriptor(HTMLInputElement.prototype, 'value').set;
setter.call(input, 'ENGLISH TITLE HERE');
input.dispatchEvent(new Event('input', {bubbles: true}));
input.dispatchEvent(new Event('change', {bubbles: true}));
el.value = xxxRuntime.evaluate 读回验证基本信息 tab → 「产品分类」字段旁边的「选择分类」按钮(注意:分类在基本信息 tab,不是属性信息 tab)
分类弹窗使用 .categories-box 结构,不是 ant-tree:
.categories-box,每个代表一层树.categories-item 是可点击节点class="active"家居用品(Home & Garden) > 宠物用品(Pet Products) > 养狗用品(Dog Supplies) > 狗携带用品(Dog Carriers & Bags)选择逻辑:
Input.dispatchMouseEvent mousePressed + mouseReleased 打开弹窗.categories-item-name textContent 匹配 → 点击class="active"宠物用品 > 狗 > 携带用品 > 狗携带用品.categories-box 不是 ant-tree,不要用 hover 展开——直接点击 .categories-item-nameInput.dispatchMouseEvent,不要用 JS .click()(Vue 3 不响应)作者: Rigi AI Commons | 小红书 @瑞吉AI人民公社 | AI自动化专家工作流