用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/xiaoyaotsyx-dotcom/aliexpress-auto-listing-skill --skill dxm-packaging命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | dxm-packaging |
| description | 店小秘速卖通编辑页——包装信息模块:包装后重量 + 包装后尺寸(长/宽/高) |
| domain | ecommerce |
| triggers | ["用户说\"包装信息\"、\"包装后重量\"、\"包装尺寸\""] |
单页面布局,包装信息 section(#packageInfo)在页尾,y≈8200-8500。
切换方式:
await page.evaluate('window.scrollTo(0, 8100)')
# 或
await page.evaluate('document.getElementById("packageInfo").scrollIntoView({block:"start"})')
| 字段 | 规则 | 来源 | 星号 |
|---|---|---|---|
| 包装后重量(kg) | 单件重量(kg) | 1688提取(g÷1000) | ⭐ |
| 包装后尺寸 长(cm) | 外包装长 | 1688有则填 | |
| 包装后尺寸 宽(cm) | 外包装宽 | 1688有则填 | |
| 包装后尺寸 高(cm) | 外包装高 | 1688有则填 |
# Playwright 方式(推荐)
weight_input = page.locator('.ant-form-item').filter(has_text='包装后重量').locator('input[type="text"]').first
await weight_input.fill('0.2')
# JS fallback(备选)
await page.evaluate('''() => {
const items = document.querySelectorAll('.ant-form-item');
for (const item of items) {
const label = item.querySelector('label');
if (label && label.textContent.includes('包装后重量')) {
const inp = item.querySelector('input[type="text"]');
if (inp) {
const setter = Object.getOwnPropertyDescriptor(HTMLInputElement.prototype, 'value').set;
setter.call(inp, '0.2');
inp.dispatchEvent(new Event('input', {bubbles: true}));
inp.dispatchEvent(new Event('change', {bubbles: true}));
inp.dispatchEvent(new Event('blur', {bubbles: true}));
}
}
}
}''')
1688无数据 → 跳过。三格(长/宽/高),位置相邻。
page.fill() 或 nativeValueSetter作者: Rigi AI Commons | 小红书 @瑞吉AI人民公社 | AI自动化专家工作流