在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用dxm-templates
星标7
分支0
更新时间2026年6月16日 15:49
店小秘速卖通编辑页——模板信息模块:运费模板 + 服务模板 + 海关监管属性
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
店小秘速卖通编辑页——模板信息模块:运费模板 + 服务模板 + 海关监管属性
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
速卖通店铺运营自动化 — 每日巡检/每周策略/商品上架/数据分析全流程。填入你的店铺名即可使用。
店小秘速卖通编辑页——属性信息模块:产品属性批量填(ant-select CDP填充)+ 自定义属性删除
店小秘速卖通编辑页——基本信息模块:标题改英文 + 产品分类选择
速卖通上架——1688采集模块:从1688搜索产品 → 采集到店小秘采集箱 → 提取产品参数(价格/库存/重量/材质等)
店小秘速卖通编辑页——店小秘信息模块:来源URL(只读,记录用)
店小秘速卖通上品完整工作流——从采集箱到发布的所有模块编排、调用顺序、区域调价、保存发布
| name | dxm-templates |
| description | 店小秘速卖通编辑页——模板信息模块:运费模板 + 服务模板 + 海关监管属性 |
| domain | ecommerce |
| triggers | ["用户说\"模板信息\"、\"运费模板\"、\"服务模板\"、\"海关监管\""] |
单页面布局,#templateInfo section 在 y≈8466。
await page.evaluate('window.scrollTo(0, 8100)')
| 字段 | 类型 | 操作 | 星号 |
|---|---|---|---|
| 运费模板 | ant-select | 选预设模板 | ⭐ |
| 服务模板 | ant-select | 选预设模板 | ⭐ |
| 海关监管属性 | 已填(默认) | 通常预设值=3 | ⭐ |
# 获取selector坐标
sel = await page.evaluate('''() => {
const section = document.getElementById('templateInfo');
const items = section.querySelectorAll('.ant-form-item');
for (const item of items) {
const label = item.querySelector('label');
if (label && label.textContent.includes('运费模板')) {
const s = item.querySelector('.ant-select-selector');
const r = s.getBoundingClientRect();
return {x: r.x+r.width/2, y: r.y+r.height/2};
}
}
return null;
}''')
# 点开下拉
await page.mouse.click(sel['x'], sel['y'])
await asyncio.sleep(1)
# 找可见选项
opts = await page.evaluate('''() => {
return [...document.querySelectorAll('.ant-select-item-option')]
.filter(i => i.getBoundingClientRect().height > 0)
.map(i => ({text: i.textContent.trim(), x: ..., y: ...}));
}''')
# 点第一个(默认)选项
await page.mouse.click(opts[0]['x'], opts[0]['y'])
| 字段 | 推荐选择 |
|---|---|
| 运费模板 | 根据零售价选:<$5→"2-5美金 2kg以下",$5-8→对应档位 |
| 服务模板 | "Service Template for New Sellers"(通常唯一选项) |
| 海关监管属性 | 默认值=3,无需修改 |
<input type="text"> 不是 select,值=3 已预设page.mouse.click() 打开,.ant-select-item-option 可见后点击作者: Rigi AI Commons | 小红书 @瑞吉AI人民公社 | AI自动化专家工作流