@optima-chat/optima-agent 0.8.93 → 0.8.94

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -58,6 +58,12 @@ description: 店铺首页配置。管理首页区块(Banner、集合列表、
58
58
  | 调整背景叠加颜色 | `commerce homepage update-page-settings --overlay-color "#f5f5f5"` |
59
59
  | 移除背景图 | `commerce homepage update-page-settings --remove-background` |
60
60
 
61
+ ### 品牌色
62
+
63
+ | 用户说 | 命令 |
64
+ |-------|------|
65
+ | "修改品牌色" / "设置主题色" | **merchant skill**:`commerce merchant update --primary-color "#xxx"` |
66
+
61
67
  ### 通用操作
62
68
 
63
69
  | 用户说 | 命令 |
@@ -13,6 +13,7 @@ description: "店铺基础信息管理。使用场景:查看店铺信息、更
13
13
  | "修改店铺名称" / "更新店铺描述" | `commerce merchant update --name/--description` |
14
14
  | "设置联系方式" | `commerce merchant update --contact-*` |
15
15
  | "更新发货地址" | `commerce merchant update --origin-*` |
16
+ | "设置品牌色" / "修改主题色" / "换个颜色" | `commerce merchant update --primary-color "#1a3a5c"` |
16
17
 
17
18
  ## 不在此模块(重要)
18
19
 
@@ -51,6 +52,7 @@ commerce merchant update [选项]
51
52
  | `--description` | 店铺描述 |
52
53
  | `--default-currency` | 默认货币(USD, CNY 等) |
53
54
  | `--google-ads-customer-id` | Google Ads 客户 ID(10位数字) |
55
+ | `--primary-color` | 品牌主色(hex 格式,如 #FF5A5F) |
54
56
 
55
57
  ### 联系方式
56
58
  | 选项 | 说明 |
@@ -91,6 +93,9 @@ commerce merchant update \
91
93
  --origin-postal-code 518000 \
92
94
  --origin-line-1 "科技园路1号" \
93
95
  --origin-state 广东
96
+
97
+ # 设置品牌色
98
+ commerce merchant update --primary-color "#1a3a5c"
94
99
  ```
95
100
 
96
101
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@optima-chat/optima-agent",
3
- "version": "0.8.93",
3
+ "version": "0.8.94",
4
4
  "description": "基于 Claude Agent SDK 的电商运营 AI 助手",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",