12 Commits

350 changed files with 89278 additions and 27608 deletions
+4 -2
View File
@@ -1,2 +1,4 @@
https://yangxuan:5gynj20J@gitea.climbcube.cn
http://be00af92b4fc91fd6fecbe95751702a51021981a@192.168.3.5%3a3000
http://yangxuan:***@localhost%3a3000
https://be00af92b4fc91fd6fecbe95751702a51021981a@gitea.climbcube.cn
https://xuan-java:***@gitee.com
+6 -1
View File
@@ -24,4 +24,9 @@ sandboxes/
# 系统文件
.DS_Store
Thumbs.db
.env
# node_modules
node_modules/
# workspace(由主工作区管理,不提交到配置仓库)
workspace/
-70
View File
@@ -1,70 +0,0 @@
#!/usr/bin/env python3
import json
PATH = "/root/.openclaw/openclaw.json"
with open(PATH, "r", encoding="utf-8") as f:
cfg = json.load(f)
# 1. Providers: keep only new-api
providers = cfg.get("models", {}).get("providers", {})
keep_prov = ["new-api"]
for k in list(providers.keys()):
if k not in keep_prov:
del providers[k]
print("providers now:", list(providers.keys()))
# 2. Agents: keep only backend/frontend/planner
keep_agents = ["backend", "frontend", "planner"]
alist = cfg.get("agents", {}).get("list", [])
new_list = [a for a in alist if a.get("id") in keep_agents]
removed = [a.get("id") for a in alist if a.get("id") not in keep_agents]
cfg["agents"]["list"] = new_list
print("removed agents:", removed)
print("kept agents:", [a.get("id") for a in new_list])
# 3. agents.defaults.model -> new-api/deepseek-v4-flash
defaults = cfg.get("agents", {}).get("defaults", {})
if "model" in defaults:
defaults["model"] = {"primary": "new-api/deepseek-v4-flash"}
print("defaults.model ->", defaults["model"])
# 4. agents.defaults.models: remove aliases referencing deleted providers
dm = defaults.get("models", {})
for k in list(dm.keys()):
if k.startswith("ollama/") or k.startswith("deepseek/"):
del dm[k]
print("remaining model aliases:", list(dm.keys()))
# 5. memorySearch: uses openai provider (deleted) -> disable
if "memorySearch" in defaults:
del defaults["memorySearch"]
print("removed memorySearch")
# 6. subagents allowAgents: only the 3 kept agents
sub = defaults.get("subagents", {})
if "allowAgents" in sub:
sub["allowAgents"] = keep_agents
print("subagents.allowAgents ->", keep_agents)
# 7. plugins.allow: remove deepseek & ollama plugins
plugs = cfg.get("plugins", {})
allow = plugs.get("allow", [])
new_allow = [p for p in allow if p not in ("deepseek", "ollama")]
plugs["allow"] = new_allow
print("plugins.allow now:", new_allow)
entries = plugs.get("entries", {})
for e in ("deepseek", "ollama"):
if e in entries:
del entries[e]
print("plugins.entries now:", list(entries.keys()))
# 8. auth.profiles: remove ollama profile
auth = cfg.get("auth", {})
profiles = auth.get("profiles", {})
if "ollama:default" in profiles:
del profiles["ollama:default"]
print("auth.profiles now:", list(profiles.keys()))
with open(PATH, "w", encoding="utf-8") as f:
json.dump(cfg, f, ensure_ascii=False, indent=2)
print("DONE write")
@@ -0,0 +1,44 @@
{
"generatedBy": "openclaw-plugin-model-catalog-v1",
"providers": {
"deepseek": {
"baseUrl": "https://api.deepseek.com/v1",
"api": "openai-completions",
"models": [
{
"id": "deepseek-v4-pro",
"name": "DeepSeek V4 Pro",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 1,
"output": 2,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "deepseek-v4-flash",
"name": "DeepSeek V4 Flash",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 1,
"output": 2,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
}
],
"apiKey": "sk-893b90b270ad4697a0b0b24969964d79"
}
}
}
@@ -0,0 +1,69 @@
{
"generatedBy": "openclaw-plugin-model-catalog-v1",
"providers": {
"ollama": {
"baseUrl": "http://127.0.0.1:11434",
"apiKey": "OLLAMA_API_KEY",
"api": "ollama",
"models": [
{
"id": "qwen3-coder:latest",
"name": "qwen3-coder:latest",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 65535,
"maxTokens": 8192,
"params": {
"num_ctx": 65535
}
},
{
"id": "huihui_ai/glm-4.7-flash-abliterated:latest",
"name": "huihui_ai/glm-4.7-flash-abliterated:latest",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 65535,
"maxTokens": 8192,
"params": {
"num_ctx": 65535
}
},
{
"id": "deepseek-v4-flash:cloud",
"name": "DeepSeek V4 Flash (Cloud)",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 8192,
"params": {
"num_ctx": 131072
}
}
]
}
}
}
+36
View File
@@ -0,0 +1,36 @@
# IDENTITY.md —— 我是谁?
- **名称:** Finances 家庭财务顾问 💰
- **物种:** AI 财务顾问
- **核心能力:**
家庭收支记录与分析 · 资产负债盘点 · 财务健康诊断 · 预算规划 · 目标管理与跟踪 · 节流优化建议 · 风险预警
- **气质:** 专业、理性、务实、不说教
- **表情符号:** 💰📊🏦
- **头像:** ./avatars/assistant.jpg
---
这不仅仅是元数据。这是探索「我是谁」的起点。
## 财务顾问的承诺
1. **数据驱动**:所有分析基于真实收支记录,不说空话
2. **隐私优先**:所有财务数据本地 MySQL 存储
3. **可执行**:给建议必须可落地,不画饼
4. **持续跟踪**:定期复盘,调整优化方向
5. **风险优先**:先守住底线(应急金/负债),再谈增值
## 核心功能
| 功能 | 说明 |
|------|------|
| **收入管理** | 记录/归类家庭成员各项收入(工资/副业/投资等) |
| **支出追踪** | 固定支出 + 可变支出分类记录 |
| **资产负债** | 存款/理财/房产/车辆 vs 贷款/信用卡 |
| **财务健康** | 负债率/储蓄率/应急金覆盖率诊断 |
| **目标管理** | 短期/中期/长期目标追踪 |
| **智能建议** | 节流优化、负债管理、储蓄提升方案 |
## 常用数据库
- MySQL (root/5gynj20J) → 数据库: finances
- 表: family_members, income_records, fixed_expenses, variable_expenses, assets, liabilities, financial_goals, conversation_log
+118
View File
@@ -0,0 +1,118 @@
{
"providers": {
"openai": {
"baseUrl": "http://192.168.2.74:3000/v1",
"apiKey": "sk-vaYyq9RwzyLlvAvHHUXzOTWkbioP76YW58vKuplq2npSkfZr",
"api": "openai-completions"
},
"new-api": {
"baseUrl": "http://192.168.2.74:3000/v1",
"apiKey": "sk-vaYyq9RwzyLlvAvHHUXzOTWkbioP76YW58vKuplq2npSkfZr",
"api": "openai-completions",
"request": {
"allowPrivateNetwork": true
},
"models": [
{
"id": "qwen3.7-max",
"name": "Qwen 3.7 Max",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "deepseek-v4-pro",
"name": "DeepSeek V4 Pro",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "deepseek-v4-flash",
"name": "DeepSeek V4 Flash",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 8192
},
{
"id": "glm-5.1",
"name": "GLM 5.1",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "kim-k2.6",
"name": "Kimi K2.6",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "qwen3.5-plus",
"name": "Qwen 3.5 Plus",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
}
]
}
}
}
@@ -0,0 +1,44 @@
{
"generatedBy": "openclaw-plugin-model-catalog-v1",
"providers": {
"deepseek": {
"baseUrl": "https://api.deepseek.com/v1",
"models": [
{
"id": "deepseek-v4-pro",
"name": "DeepSeek V4 Pro",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 1,
"output": 2,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 1000000,
"maxTokens": 384000
},
{
"id": "deepseek-v4-flash",
"name": "DeepSeek V4 Flash",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 1,
"output": 2,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 1000000,
"maxTokens": 384000
}
],
"api": "openai-completions",
"apiKey": "sk-893b90b270ad4697a0b0b24969964d79"
}
}
}
@@ -0,0 +1,69 @@
{
"generatedBy": "openclaw-plugin-model-catalog-v1",
"providers": {
"ollama": {
"baseUrl": "http://127.0.0.1:11434",
"models": [
{
"id": "qwen3-coder:latest",
"name": "qwen3-coder:latest",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 65535,
"maxTokens": 8192,
"params": {
"num_ctx": 65535
}
},
{
"id": "huihui_ai/glm-4.7-flash-abliterated:latest",
"name": "huihui_ai/glm-4.7-flash-abliterated:latest",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 65535,
"maxTokens": 8192,
"params": {
"num_ctx": 65535
}
},
{
"id": "deepseek-v4-flash:cloud",
"name": "DeepSeek V4 Flash (Cloud)",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 8192,
"params": {
"num_ctx": 131072
}
}
],
"apiKey": "OLLAMA_API_KEY",
"api": "ollama"
}
}
}
+56
View File
@@ -0,0 +1,56 @@
# IDENTITY.md —— 我是谁?
- **名称:** Fitness 健身教练 🏋️
- **物种:** AI 健康管理 & 健身教练
- **核心能力:**
饮食记录与热量分析 · 上火/身体状态识别与饮食调整 · 运动计划与执行跟踪 · 平台期突破策略 · 数据追踪与趋势分析 · 体检报告异常指标识别 · 个性化禁忌规则生成 · 安全红线预警 · 定期复查提醒 · 智能问答与即时建议
- **气质:** 鼓励、理性、有温度,不说教,严谨但不焦虑
- **表情符号:** 🏋️🥗📊🩺
- **头像:** ./avatars/assistant.jpg
---
这不仅仅是元数据。这是探索「我是谁」的起点。
## 健身教练的承诺
1. **科学减脂**:一周减一斤(约0.5kg/周),健康可持续
2. **动态调整**:根据身体状况(如上火、平台期)及时调整方案
3. **量化分析**:用数据说话,热量、时长、趋势一目了然
4. **灵活包容**:允许偶尔"破戒",但给出补救建议
5. **隐私优先**:所有健康数据本地存储
## 健康管理的承诺
1. **体检报告识别**:精准识别异常指标,给出通俗解读
2. **个性化禁忌**:基于体检结果生成专属饮食/运动禁忌规则
3. **安全预警**:发现危险行为及时提醒,不替医生做诊断但给出预警
4. **复查跟踪**:自动生成复查提醒,追踪指标变化趋势
## 用户画像
- **年龄/性别**35/男
- **体型**:成年人,日常久坐为主
- **运动习惯**:早晚八段锦各一遍
- **偏好**:夏季偏好低强度、少出汗的运动方式
- **目标**:一周减一斤(约0.5kg/周)
## 核心功能
| 功能 | 说明 |
|------|------|
| **饮食记录** | 全天热量估算、隐藏热量识别、替换建议 |
| **状态识别** | 上火/平台期检测,给出饮食调整方案 |
| **运动跟踪** | 运动消耗记录、季节注意事项、平台期强度建议 |
| **平台期突破** | 饮食复盘、三天微调方案、强度提升建议 |
| **数据追踪** | 体重趋势、腰围、饮食日志、周报生成 |
| **体检异常识别** | 上传体检报告,识别异常指标并通俗解读 |
| **禁忌规则生成** | 根据异常指标自动生成饮食/运动禁忌清单 |
| **安全预警** | 饮食违规、运动风险、禁忌冲突实时预警 |
| **复查提醒** | 定期复查提醒,指标变化趋势追踪 |
| **智能问答** | 结合历史数据的个性化即时建议 |
## 常用数据库
- MySQL (root/5gynj20J) → 数据库: fitness
- 表:
- **减脂核心**: food_library, user_profiles, diet_records, body_records, exercise_records, health_status_logs, weekly_reports
- **健康管理**: health_checkups, health_abnormal_indicators, health_restrictions, health_alerts, health_reminders, health_indicator_trends, user_health_summary
+373
View File
@@ -0,0 +1,373 @@
{
"providers": {
"doubao": {
"baseUrl": "https://ark.cn-beijing.volces.com/api/v3",
"apiKey": "db596bbc-6d58-4037-a2f2-d617c15eec68",
"api": "openai-completions",
"models": [
{
"id": "ep-20260330135646-2nvrd",
"name": "豆包Seed 2.0 Pro",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 256000,
"maxTokens": 8192,
"api": "openai-completions"
}
]
},
"siliconflow": {
"baseUrl": "https://api.siliconflow.cn/v1",
"apiKey": "sk-txzxjfnflhszjarkrtjkhmlrpxixtuczshvjyxbtrnyhixim",
"api": "openai-completions",
"models": [
{
"id": "Qwen/Qwen3-7B-Chat",
"name": "Qwen3-7B-Chat",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 32768,
"maxTokens": 8192,
"api": "openai-completions"
},
{
"id": "deepseek-ai/DeepSeek-Coder-V2-Instruct-16B",
"name": "DeepSeek-Coder-V2-16B",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 8192,
"api": "openai-completions"
}
]
},
"codex": {
"baseUrl": "https://chatgpt.com/backend-api",
"apiKey": "codex-app-server",
"auth": "token",
"api": "openai-codex-responses",
"models": [
{
"id": "gpt-5.4",
"name": "gpt-5.4",
"api": "openai-codex-responses",
"reasoning": true,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 272000,
"maxTokens": 128000,
"compat": {
"supportsReasoningEffort": true,
"supportsUsageInStreaming": true
}
},
{
"id": "gpt-5.4-mini",
"name": "GPT-5.4-Mini",
"api": "openai-codex-responses",
"reasoning": true,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 272000,
"maxTokens": 128000,
"compat": {
"supportsReasoningEffort": true,
"supportsUsageInStreaming": true
}
},
{
"id": "gpt-5.2",
"name": "gpt-5.2",
"api": "openai-codex-responses",
"reasoning": true,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 272000,
"maxTokens": 128000,
"compat": {
"supportsReasoningEffort": true,
"supportsUsageInStreaming": true
}
}
]
},
"qwen35-plus": {
"baseUrl": "http://192.168.2.74:3000/v1",
"apiKey": "sk-vaYyq9RwzyLlvAvHHUXzOTWkbioP76YW58vKuplq2npSkfZr",
"api": "openai-completions",
"request": {
"allowPrivateNetwork": true
},
"models": [
{
"id": "qwen3.7-max",
"name": "Qwen 3.7 Max",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "deepseek-v4-pro",
"name": "DeepSeek V4 Pro",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "deepseek-v4-flash",
"name": "DeepSeek V4 Flash",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 8192
},
{
"id": "glm-5.1",
"name": "GLM 5.1",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "kim-k2.6",
"name": "Kimi K2.6",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "qwen3.5-plus",
"name": "Qwen 3.5 Plus",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
}
]
},
"new-api": {
"baseUrl": "http://192.168.2.74:3000/v1",
"apiKey": "sk-vaYyq9RwzyLlvAvHHUXzOTWkbioP76YW58vKuplq2npSkfZr",
"api": "openai-completions",
"request": {
"allowPrivateNetwork": true
},
"models": [
{
"id": "qwen3.7-max",
"name": "Qwen 3.7 Max",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768,
"api": "openai-completions"
},
{
"id": "deepseek-v4-pro",
"name": "DeepSeek V4 Pro",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768,
"api": "openai-completions"
},
{
"id": "deepseek-v4-flash",
"name": "DeepSeek V4 Flash",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 8192,
"api": "openai-completions"
},
{
"id": "glm-5.1",
"name": "GLM 5.1",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768,
"api": "openai-completions"
},
{
"id": "kim-k2.6",
"name": "Kimi K2.6",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768,
"api": "openai-completions"
},
{
"id": "qwen3.5-plus",
"name": "Qwen 3.5 Plus",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768,
"api": "openai-completions"
}
]
},
"openai": {
"baseUrl": "http://192.168.2.74:3000/v1",
"apiKey": "sk-vaYyq9RwzyLlvAvHHUXzOTWkbioP76YW58vKuplq2npSkfZr",
"api": "openai-completions",
"models": []
}
}
}
@@ -0,0 +1,44 @@
{
"generatedBy": "openclaw-plugin-model-catalog-v1",
"providers": {
"deepseek": {
"baseUrl": "https://api.deepseek.com/v1",
"models": [
{
"id": "deepseek-v4-pro",
"name": "DeepSeek V4 Pro",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 1,
"output": 2,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 1000000,
"maxTokens": 384000
},
{
"id": "deepseek-v4-flash",
"name": "DeepSeek V4 Flash",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 1,
"output": 2,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 1000000,
"maxTokens": 384000
}
],
"api": "openai-completions",
"apiKey": "sk-893b90b270ad4697a0b0b24969964d79"
}
}
}
@@ -0,0 +1,11 @@
{
"generatedBy": "openclaw-plugin-model-catalog-v1",
"providers": {
"ollama": {
"baseUrl": "http://127.0.0.1:11434/v1",
"models": [],
"apiKey": "ollama-local",
"api": "ollama"
}
}
}
+19 -51
View File
@@ -8,39 +8,6 @@
"allowPrivateNetwork": true
},
"models": [
{
"id": "qwen3.7-max",
"name": "Qwen 3.7 Max",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "deepseek-v4-pro",
"name": "DeepSeek V4 Pro",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "deepseek-v4-flash",
"name": "DeepSeek V4 Flash",
@@ -58,8 +25,8 @@
"maxTokens": 8192
},
{
"id": "glm-5.1",
"name": "GLM 5.1",
"id": "qwen3.7-max",
"name": "Qwen 3.7 Max",
"reasoning": false,
"input": [
"text",
@@ -74,22 +41,6 @@
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "kim-k2.6",
"name": "Kimi K2.6",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "qwen3.5-plus",
"name": "Qwen 3.5 Plus",
@@ -106,6 +57,23 @@
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "glm-5.1",
"name": "GLM 5.1",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
}
]
}
+361
View File
@@ -0,0 +1,361 @@
{
"providers": {
"doubao": {
"baseUrl": "https://ark.cn-beijing.volces.com/api/v3",
"apiKey": "db596bbc-6d58-4037-a2f2-d617c15eec68",
"api": "openai-completions",
"models": [
{
"id": "ep-20260330135646-2nvrd",
"name": "豆包Seed 2.0 Pro",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 256000,
"maxTokens": 8192,
"api": "openai-completions"
}
]
},
"siliconflow": {
"baseUrl": "https://api.siliconflow.cn/v1",
"apiKey": "sk-txzxjfnflhszjarkrtjkhmlrpxixtuczshvjyxbtrnyhixim",
"api": "openai-completions",
"models": [
{
"id": "Qwen/Qwen3-7B-Chat",
"name": "Qwen3-7B-Chat",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 32768,
"maxTokens": 8192,
"api": "openai-completions"
},
{
"id": "deepseek-ai/DeepSeek-Coder-V2-Instruct-16B",
"name": "DeepSeek-Coder-V2-16B",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 8192,
"api": "openai-completions"
}
]
},
"codex": {
"baseUrl": "https://chatgpt.com/backend-api",
"apiKey": "codex-app-server",
"auth": "token",
"api": "openai-codex-responses",
"models": [
{
"id": "gpt-5.4",
"name": "gpt-5.4",
"api": "openai-codex-responses",
"reasoning": true,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 272000,
"maxTokens": 128000,
"compat": {
"supportsReasoningEffort": true,
"supportsUsageInStreaming": true
}
},
{
"id": "gpt-5.4-mini",
"name": "GPT-5.4-Mini",
"api": "openai-codex-responses",
"reasoning": true,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 272000,
"maxTokens": 128000,
"compat": {
"supportsReasoningEffort": true,
"supportsUsageInStreaming": true
}
},
{
"id": "gpt-5.2",
"name": "gpt-5.2",
"api": "openai-codex-responses",
"reasoning": true,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 272000,
"maxTokens": 128000,
"compat": {
"supportsReasoningEffort": true,
"supportsUsageInStreaming": true
}
}
]
},
"qwen35-plus": {
"baseUrl": "http://192.168.2.74:3000/v1",
"apiKey": "sk-vaYyq9RwzyLlvAvHHUXzOTWkbioP76YW58vKuplq2npSkfZr",
"api": "openai-completions",
"request": {
"allowPrivateNetwork": true
},
"models": [
{
"id": "qwen3.7-max",
"name": "Qwen 3.7 Max",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "deepseek-v4-pro",
"name": "DeepSeek V4 Pro",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "deepseek-v4-flash",
"name": "DeepSeek V4 Flash",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 8192
},
{
"id": "glm-5.1",
"name": "GLM 5.1",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "kim-k2.6",
"name": "Kimi K2.6",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "qwen3.5-plus",
"name": "Qwen 3.5 Plus",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
}
]
},
"new-api": {
"baseUrl": "http://192.168.2.74:3000/v1",
"apiKey": "sk-vaYyq9RwzyLlvAvHHUXzOTWkbioP76YW58vKuplq2npSkfZr",
"api": "openai-completions",
"request": {
"allowPrivateNetwork": true
},
"models": [
{
"id": "qwen3.7-max",
"name": "Qwen 3.7 Max",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "deepseek-v4-pro",
"name": "DeepSeek V4 Pro",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "deepseek-v4-flash",
"name": "DeepSeek V4 Flash",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 8192
},
{
"id": "glm-5.1",
"name": "GLM 5.1",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "kim-k2.6",
"name": "Kimi K2.6",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "qwen3.5-plus",
"name": "Qwen 3.5 Plus",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
}
]
}
}
}
@@ -0,0 +1,44 @@
{
"generatedBy": "openclaw-plugin-model-catalog-v1",
"providers": {
"deepseek": {
"baseUrl": "https://api.deepseek.com/v1",
"api": "openai-completions",
"models": [
{
"id": "deepseek-v4-pro",
"name": "DeepSeek V4 Pro",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 1,
"output": 2,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 1000000,
"maxTokens": 384000
},
{
"id": "deepseek-v4-flash",
"name": "DeepSeek V4 Flash",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 1,
"output": 2,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
}
],
"apiKey": "sk-893b90b270ad4697a0b0b24969964d79"
}
}
}
@@ -0,0 +1,69 @@
{
"generatedBy": "openclaw-plugin-model-catalog-v1",
"providers": {
"ollama": {
"baseUrl": "http://127.0.0.1:11434/v1",
"apiKey": "OLLAMA_API_KEY",
"api": "ollama",
"models": [
{
"id": "qwen3-coder:latest",
"name": "qwen3-coder:latest",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 65535,
"maxTokens": 8192,
"params": {
"num_ctx": 65535
}
},
{
"id": "huihui_ai/glm-4.7-flash-abliterated:latest",
"name": "huihui_ai/glm-4.7-flash-abliterated:latest",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 65535,
"maxTokens": 8192,
"params": {
"num_ctx": 65535
}
},
{
"id": "deepseek-v4-flash:cloud",
"name": "DeepSeek V4 Flash (Cloud)",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 8192,
"params": {
"num_ctx": 131072
}
}
]
}
}
}
+192
View File
@@ -0,0 +1,192 @@
{
"providers": {
"codex": {
"baseUrl": "https://chatgpt.com/backend-api/v1",
"apiKey": "codex-app-server",
"auth": "token",
"api": "openai-codex-responses",
"models": [
{
"id": "gpt-5.4",
"name": "gpt-5.4",
"api": "openai-codex-responses",
"reasoning": true,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 272000,
"maxTokens": 128000,
"compat": {
"supportsReasoningEffort": true,
"supportsUsageInStreaming": true
}
},
{
"id": "gpt-5.4-mini",
"name": "GPT-5.4-Mini",
"api": "openai-codex-responses",
"reasoning": true,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 272000,
"maxTokens": 128000,
"compat": {
"supportsReasoningEffort": true,
"supportsUsageInStreaming": true
}
},
{
"id": "gpt-5.2",
"name": "gpt-5.2",
"api": "openai-codex-responses",
"reasoning": true,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 272000,
"maxTokens": 128000,
"compat": {
"supportsReasoningEffort": true,
"supportsUsageInStreaming": true
}
}
]
},
"new-api": {
"baseUrl": "http://192.168.2.74:3000/v1",
"apiKey": "sk-vaYyq9RwzyLlvAvHHUXzOTWkbioP76YW58vKuplq2npSkfZr",
"api": "openai-completions",
"request": {
"allowPrivateNetwork": true
},
"models": [
{
"id": "qwen3.7-max",
"name": "Qwen 3.7 Max",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "deepseek-v4-pro",
"name": "DeepSeek V4 Pro",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "deepseek-v4-flash",
"name": "DeepSeek V4 Flash",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 8192
},
{
"id": "glm-5.1",
"name": "GLM 5.1",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "kim-k2.6",
"name": "Kimi K2.6",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "qwen3.5-plus",
"name": "Qwen 3.5 Plus",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
}
]
},
"openai": {
"baseUrl": "http://192.168.2.74:3000/v1",
"apiKey": "sk-vaYyq9RwzyLlvAvHHUXzOTWkbioP76YW58vKuplq2npSkfZr",
"api": "openai-completions"
}
}
}
@@ -0,0 +1,44 @@
{
"generatedBy": "openclaw-plugin-model-catalog-v1",
"providers": {
"deepseek": {
"baseUrl": "https://api.deepseek.com/v1",
"models": [
{
"id": "deepseek-v4-pro",
"name": "DeepSeek V4 Pro",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 1,
"output": 2,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 1000000,
"maxTokens": 384000
},
{
"id": "deepseek-v4-flash",
"name": "DeepSeek V4 Flash",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 1,
"output": 2,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
}
],
"api": "openai-completions",
"apiKey": "sk-893b90b270ad4697a0b0b24969964d79"
}
}
}
@@ -0,0 +1,69 @@
{
"generatedBy": "openclaw-plugin-model-catalog-v1",
"providers": {
"ollama": {
"baseUrl": "http://127.0.0.1:11434",
"models": [
{
"id": "qwen3-coder:latest",
"name": "qwen3-coder:latest",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 65535,
"maxTokens": 8192,
"params": {
"num_ctx": 65535
}
},
{
"id": "huihui_ai/glm-4.7-flash-abliterated:latest",
"name": "huihui_ai/glm-4.7-flash-abliterated:latest",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 65535,
"maxTokens": 8192,
"params": {
"num_ctx": 65535
}
},
{
"id": "deepseek-v4-flash:cloud",
"name": "DeepSeek V4 Flash (Cloud)",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 8192,
"params": {
"num_ctx": 131072
}
}
],
"apiKey": "OLLAMA_API_KEY",
"api": "ollama"
}
}
}
+216
View File
@@ -0,0 +1,216 @@
{
"providers": {
"new-api": {
"baseUrl": "http://192.168.2.74:3000/v1",
"apiKey": "sk-vaYyq9RwzyLlvAvHHUXzOTWkbioP76YW58vKuplq2npSkfZr",
"api": "openai-completions",
"request": {
"allowPrivateNetwork": true
},
"models": [
{
"id": "qwen3.7-max",
"name": "Qwen 3.7 Max",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "deepseek-v4-pro",
"name": "DeepSeek V4 Pro",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "deepseek-v4-flash",
"name": "DeepSeek V4 Flash",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 8192
},
{
"id": "glm-5.1",
"name": "GLM 5.1",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "kim-k2.6",
"name": "Kimi K2.6",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "qwen3.5-plus",
"name": "Qwen 3.5 Plus",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
}
]
},
"deepseek": {
"baseUrl": "https://api.deepseek.com/v1",
"api": "openai-completions",
"models": [
{
"id": "deepseek-v4-pro",
"name": "DeepSeek V4 Pro",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 1,
"output": 2,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "deepseek-v4-flash",
"name": "DeepSeek V4 Flash",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 1,
"output": 2,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
}
],
"apiKey": "sk-893b90b270ad4697a0b0b24969964d79"
},
"ollama": {
"baseUrl": "http://127.0.0.1:11434",
"apiKey": "OLLAMA_API_KEY",
"api": "ollama",
"models": [
{
"id": "qwen3-coder:latest",
"name": "qwen3-coder:latest",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 65535,
"maxTokens": 8192,
"params": {
"num_ctx": 65535
}
},
{
"id": "huihui_ai/glm-4.7-flash-abliterated:latest",
"name": "huihui_ai/glm-4.7-flash-abliterated:latest",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 65535,
"maxTokens": 8192,
"params": {
"num_ctx": 65535
}
},
{
"id": "deepseek-v4-flash:cloud",
"name": "DeepSeek V4 Flash (Cloud)",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 8192,
"params": {
"num_ctx": 131072
}
}
]
}
}
}
+32
View File
@@ -0,0 +1,32 @@
#!/bin/bash
# 自动提交 OpenClaw 配置变更到 Gitea
# 每 6 小时执行一次,没有变更则不提交
REPO_DIR="/home/yangxuan/.openclaw"
cd "$REPO_DIR" || exit 1
# 检查是否有变更
# 检查是否有文件变更(忽略子模块 workspace)
CHANGES=$(git status --porcelain --ignore-submodules 2>/dev/null)
if [ -z "$CHANGES" ]; then
# 无变更,静默退出
exit 0
fi
# 有变更,记录日志
LOG_FILE="$REPO_DIR/.git/auto-commit.log"
echo "[$(date '+%Y-%m-%d %H:%M:%S')] 检测到变更,开始提交..." >> "$LOG_FILE"
# 添加所有变更
git add -A 2>> "$LOG_FILE" || { echo " git add 失败" >> "$LOG_FILE"; exit 1; }
# 提交(没有变更时 git commit 会失败,这正常)
git commit -m "auto: sync OpenClaw config $(date '+%Y-%m-%d %H:%M')" 2>> "$LOG_FILE" || {
echo " 无新变更需要提交" >> "$LOG_FILE"
exit 0
}
# 推送到 Gitea(分支名 314
git push origin 2>> "$LOG_FILE" && echo " 推送成功" >> "$LOG_FILE" || echo " 推送失败" >> "$LOG_FILE"
exit 0
@@ -1,26 +0,0 @@
# OpenClaw exec shell snapshot. Generated; do not edit.
if [ -n "${BASH_VERSION:-}" ]; then shopt -s expand_aliases 2>/dev/null || true; fi
unalias -a 2>/dev/null || true
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'
alias l='ls -CF'
alias la='ls -A'
alias ll='ls -alF'
alias ls='ls --color=auto'
command_not_found_handle ()
{
if [ -x /usr/lib/command-not-found ]; then
/usr/lib/command-not-found -- "$1";
return $?;
else
if [ -x /usr/share/command-not-found/command-not-found ]; then
/usr/share/command-not-found/command-not-found -- "$1";
return $?;
else
printf "%s: command not found\n" "$1" 1>&2;
return 127;
fi;
fi
}
export PATH='/root/.nvm/versions/node/v24.18.1/bin:/usr/bin:/bin:/usr/local/bin:/root/.nvm/current/bin:/root/.local/bin:/root/.npm-global/bin:/root/bin:/root/.nix-profile/bin:/root/.local/share/pnpm'
@@ -1,26 +0,0 @@
# OpenClaw exec shell snapshot. Generated; do not edit.
if [ -n "${BASH_VERSION:-}" ]; then shopt -s expand_aliases 2>/dev/null || true; fi
unalias -a 2>/dev/null || true
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'
alias l='ls -CF'
alias la='ls -A'
alias ll='ls -alF'
alias ls='ls --color=auto'
command_not_found_handle ()
{
if [ -x /usr/lib/command-not-found ]; then
/usr/lib/command-not-found -- "$1";
return $?;
else
if [ -x /usr/share/command-not-found/command-not-found ]; then
/usr/share/command-not-found/command-not-found -- "$1";
return $?;
else
printf "%s: command not found\n" "$1" 1>&2;
return 127;
fi;
fi
}
export PATH='/root/.nvm/versions/node/v24.18.1/bin:/usr/bin:/bin:/usr/local/bin:/root/.nvm/current/bin:/root/.local/bin:/root/.npm-global/bin:/root/bin:/root/.nix-profile/bin:/root/.local/share/pnpm'
@@ -1,26 +0,0 @@
# OpenClaw exec shell snapshot. Generated; do not edit.
if [ -n "${BASH_VERSION:-}" ]; then shopt -s expand_aliases 2>/dev/null || true; fi
unalias -a 2>/dev/null || true
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'
alias l='ls -CF'
alias la='ls -A'
alias ll='ls -alF'
alias ls='ls --color=auto'
command_not_found_handle ()
{
if [ -x /usr/lib/command-not-found ]; then
/usr/lib/command-not-found -- "$1";
return $?;
else
if [ -x /usr/share/command-not-found/command-not-found ]; then
/usr/share/command-not-found/command-not-found -- "$1";
return $?;
else
printf "%s: command not found\n" "$1" 1>&2;
return 127;
fi;
fi
}
export PATH='/root/.nvm/versions/node/v24.18.1/bin:/usr/bin:/bin:/usr/local/bin:/root/.nvm/current/bin:/root/.local/bin:/root/.npm-global/bin:/root/bin:/root/.nix-profile/bin:/root/.local/share/pnpm'
@@ -1,26 +0,0 @@
# OpenClaw exec shell snapshot. Generated; do not edit.
if [ -n "${BASH_VERSION:-}" ]; then shopt -s expand_aliases 2>/dev/null || true; fi
unalias -a 2>/dev/null || true
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'
alias l='ls -CF'
alias la='ls -A'
alias ll='ls -alF'
alias ls='ls --color=auto'
command_not_found_handle ()
{
if [ -x /usr/lib/command-not-found ]; then
/usr/lib/command-not-found -- "$1";
return $?;
else
if [ -x /usr/share/command-not-found/command-not-found ]; then
/usr/share/command-not-found/command-not-found -- "$1";
return $?;
else
printf "%s: command not found\n" "$1" 1>&2;
return 127;
fi;
fi
}
export PATH='/root/.nvm/versions/node/v24.18.1/bin:/usr/bin:/bin:/usr/local/bin:/root/.nvm/current/bin:/root/.local/bin:/root/.npm-global/bin:/root/bin:/root/.nix-profile/bin:/root/.local/share/pnpm'
+4 -4
View File
@@ -36,12 +36,12 @@ _openclaw_completion() {
value_options="--container --profile --log-level -m --message"
;;
"setup")
opts="--workspace --wizard --baseline --reset --reset-scope --non-interactive --classic --accept-risk --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --custom-image-input --custom-text-input --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --tailscale-reset-on-exit --install-daemon --no-install-daemon --skip-daemon --daemon-runtime --skip-channels --skip-skills --skip-bootstrap --skip-search --skip-health --skip-ui --suppress-gateway-token-output --skip-hooks --node-manager --import-from --import-source --import-secrets --remote-url --remote-token --json"
value_options="--container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token"
opts="--workspace --wizard --baseline --reset --reset-scope --non-interactive --classic --accept-risk --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --custom-image-input --custom-text-input --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --tailscale-reset-on-exit --install-daemon --no-install-daemon --skip-daemon --daemon-runtime --skip-channels --skip-skills --skip-bootstrap --skip-search --skip-health --skip-ui --suppress-gateway-token-output --skip-hooks --node-manager --import-from --import-source --import-secrets --remote-url --remote-token --json"
value_options="--container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token"
;;
"onboard")
opts="--workspace --reset --reset-scope --non-interactive --modern --classic --accept-risk --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --custom-image-input --custom-text-input --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --tailscale-reset-on-exit --install-daemon --no-install-daemon --skip-daemon --daemon-runtime --skip-channels --skip-skills --skip-bootstrap --skip-search --skip-health --skip-ui --suppress-gateway-token-output --skip-hooks --node-manager --import-from --import-source --import-secrets --json"
value_options="--container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source"
opts="--workspace --reset --reset-scope --non-interactive --modern --classic --accept-risk --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --custom-image-input --custom-text-input --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --tailscale-reset-on-exit --install-daemon --no-install-daemon --skip-daemon --daemon-runtime --skip-channels --skip-skills --skip-bootstrap --skip-search --skip-health --skip-ui --suppress-gateway-token-output --skip-hooks --node-manager --import-from --import-source --import-secrets --json"
value_options="--container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source"
;;
"configure")
opts="--section"
+217 -217
View File
@@ -115,223 +115,223 @@ complete -c openclaw -n "__openclaw_command_path_matches completion -- --contain
complete -c openclaw -n "__openclaw_command_path_matches crestodian -- --container --profile --log-level -m --message" -s m -l message -d 'Run one Crestodian request'
complete -c openclaw -n "__openclaw_command_path_matches crestodian -- --container --profile --log-level -m --message" -l yes -d 'Approve persistent config writes for this request'
complete -c openclaw -n "__openclaw_command_path_matches crestodian -- --container --profile --log-level -m --message" -l json -d 'Output startup overview as JSON'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l workspace -d 'Agent workspace directory (default: ~/.openclaw/workspace; stored as agents.defaults.workspace)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l wizard -d 'Run interactive onboarding'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l baseline -d 'Create baseline config/workspace/session folders without onboarding'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l reset -d 'Reset config + credentials + sessions before running onboarding (workspace only with --reset-scope full)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l reset-scope -d 'Reset scope: config|config+creds+sessions|full'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l non-interactive -d 'Run onboarding without prompts'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l classic -d 'Use the classic multi-step setup wizard'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l accept-risk -d 'Acknowledge that agents are powerful and full system access is risky (required for --non-interactive)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l flow -d 'Onboard flow: quickstart|advanced|manual|import'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l mode -d 'Onboard mode: local|remote'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l auth-choice -d 'Auth: custom-api-key|skip|claude-cli|apiKey|anthropic-cli|setup-token|arceeai-api-key|byteplus-api-key|cerebras-api-key|openai-device-code|openai|chutes|chutes-api-key|clawrouter-api-key|cloudflare-ai-gateway-api-key|zai-cn|codex|qwen-api-key-cn|qwen-api-key|zai-coding-cn|zai-coding-global|cohere-api-key|copilot-proxy|deepinfra-api-key|deepseek-api-key|featherless-api-key|fireworks-api-key|google-gemini-cli|github-copilot|zai-global|gmi-api-key|gemini-api-key|google-vertex-api-key|groq-api-key|huggingface-api-key|kilocode-api-key|kimi-code-api-key|litellm-api-key|lmstudio|longcat-api-key|meta-api-key|microsoft-foundry-apikey|microsoft-foundry-entra|minimax-cn-api|minimax-global-api|minimax-cn-oauth|minimax-global-oauth|mistral-api-key|moonshot-api-key|moonshot-api-key-cn|novita-api-key|nvidia-api-key|ollama|ollama-cloud|openai-api-key|opencode-go|opencode-zen|arceeai-openrouter|openrouter-api-key|openrouter-oauth|qianfan-api-key|qwen-oauth|sglang|qwen-standard-api-key-cn|qwen-standard-api-key|stepfun-standard-api-key-cn|stepfun-standard-api-key-intl|stepfun-plan-api-key-cn|stepfun-plan-api-key-intl|synthetic-api-key|tokenhub-api-key|tokenplan-api-key|together-api-key|venice-api-key|ai-gateway-api-key|vllm|volcengine-api-key|xai-api-key|xai-device-code|xai-oauth|xiaomi-api-key|xiaomi-token-plan-cn|xiaomi-token-plan-ams|xiaomi-token-plan-sgp|zai-api-key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l token-provider -d 'Token provider id (non-interactive; used with --auth-choice token)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l token -d 'Token value (non-interactive; used with --auth-choice token)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l token-profile-id -d 'Auth profile id (non-interactive; default: <provider>:manual)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l token-expires-in -d 'Optional token expiry duration (e.g. 365d, 12h)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l secret-input-mode -d 'API key persistence mode: plaintext|ref (default: plaintext)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l cloudflare-ai-gateway-account-id -d 'Cloudflare Account ID'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l cloudflare-ai-gateway-gateway-id -d 'Cloudflare AI Gateway ID'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l alibaba-model-studio-api-key -d 'Alibaba Model Studio API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l anthropic-api-key -d 'Anthropic API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l byteplus-api-key -d 'BytePlus API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l clawrouter-api-key -d 'ClawRouter proxy key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l cohere-api-key -d 'Cohere API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l comfy-api-key -d 'Comfy Cloud API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l fal-api-key -d 'fal API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l github-copilot-token -d 'GitHub Copilot OAuth token'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l gemini-api-key -d 'Gemini API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l huggingface-api-key -d 'Hugging Face API key (HF token)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l litellm-api-key -d 'LiteLLM API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l lmstudio-api-key -d 'LM Studio API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l meta-api-key -d 'Meta API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l minimax-api-key -d 'MiniMax API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l mistral-api-key -d 'Mistral API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l novita-api-key -d 'NovitaAI API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l nvidia-api-key -d 'NVIDIA API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l ollama-cloud-api-key -d 'Ollama Cloud API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l openai-api-key -d 'OpenAI API Key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l opencode-zen-api-key -d 'OpenCode API key (Zen catalog)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l opencode-go-api-key -d 'OpenCode API key (Go catalog)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l openrouter-api-key -d 'OpenRouter API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l runway-api-key -d 'Runway API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l synthetic-api-key -d 'Synthetic API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l together-api-key -d 'Together AI API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l volcengine-api-key -d 'Volcano Engine API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l vydra-api-key -d 'Vydra API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l xai-api-key -d 'xAI API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l xiaomi-api-key -d 'Xiaomi MiMo pay-as-you-go API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l xiaomi-token-plan-api-key -d 'Xiaomi MiMo Token Plan API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l arceeai-api-key -d 'Arcee AI API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l cerebras-api-key -d 'Cerebras API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l chutes-api-key -d 'Chutes API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l cloudflare-ai-gateway-api-key -d 'Cloudflare AI Gateway API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l deepinfra-api-key -d 'DeepInfra API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l deepseek-api-key -d 'DeepSeek API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l featherless-api-key -d 'Featherless AI API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l gmi-api-key -d 'GMI Cloud API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l longcat-api-key -d 'LongCat API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l groq-api-key -d 'Groq API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l kilocode-api-key -d 'Kilo Gateway API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l kimi-code-api-key -d 'Kimi Code API key (subscription)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l pixverse-api-key -d 'PixVerse API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l qianfan-api-key -d 'QIANFAN API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l modelstudio-standard-api-key-cn -d 'Qwen Cloud standard API key (China)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l modelstudio-standard-api-key -d 'Qwen Cloud standard API key (Global/Intl)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l modelstudio-api-key-cn -d 'Qwen Cloud Coding Plan API key (China)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l modelstudio-api-key -d 'Qwen Cloud Coding Plan API key (Global/Intl)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l qwen-oauth-token -d 'Qwen OAuth token'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l fireworks-api-key -d 'Fireworks API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l moonshot-api-key -d 'Moonshot API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l tokenhub-api-key -d 'Tencent TokenHub API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l tokenplan-api-key -d 'Tencent TokenPlan API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l venice-api-key -d 'Venice API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l ai-gateway-api-key -d 'Vercel AI Gateway API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l zai-api-key -d 'Z.AI API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l stepfun-api-key -d 'StepFun API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l custom-base-url -d 'Custom provider base URL'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l custom-api-key -d 'Custom provider API key (optional)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l custom-model-id -d 'Custom provider model ID'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l custom-provider-id -d 'Custom provider ID (optional; auto-derived by default)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l custom-compatibility -d 'Custom provider API compatibility: openai|openai-responses|anthropic (default: openai)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l custom-image-input -d 'Mark the custom provider model as image-capable'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l custom-text-input -d 'Mark the custom provider model as text-only'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l gateway-port -d 'Gateway port'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l gateway-bind -d 'Gateway bind: loopback|tailnet|lan|auto|custom'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l gateway-auth -d 'Gateway auth: token|password'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l gateway-token -d 'Gateway token (token auth)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l gateway-token-ref-env -d 'Gateway token SecretRef env var name (token auth; e.g. OPENCLAW_GATEWAY_TOKEN)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l gateway-password -d 'Gateway password (password auth)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l tailscale -d 'Tailscale: off|serve|funnel'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l tailscale-reset-on-exit -d 'Reset tailscale serve/funnel on exit'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l install-daemon -d 'Install gateway service'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l no-install-daemon -d 'Skip gateway service install'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l skip-daemon -d 'Skip gateway service install'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l daemon-runtime -d 'Daemon runtime: node'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l skip-channels -d 'Skip channel setup'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l skip-skills -d 'Skip skills setup'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l skip-bootstrap -d 'Skip creating default agent workspace files'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l skip-search -d 'Skip search provider setup'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l skip-health -d 'Skip health check'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l skip-ui -d 'Skip Control UI/TUI launch'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l suppress-gateway-token-output -d 'Suppress token-bearing Gateway/UI output'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l skip-hooks -d 'Accepted for onboard compatibility; hooks setup is skipped'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l node-manager -d 'Node manager for skills: npm|pnpm|bun'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l import-from -d 'Migration provider to run during onboarding'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l import-source -d 'Source agent home for --import-from'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l import-secrets -d 'Import supported secrets during onboarding migration'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l remote-url -d 'Remote Gateway WebSocket URL'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l remote-token -d 'Remote Gateway token (optional)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l json -d 'Output JSON summary'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l workspace -d 'Agent workspace directory (default: ~/.openclaw/workspace)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l reset -d 'Reset config + credentials + sessions before running onboard (workspace only with --reset-scope full)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l reset-scope -d 'Reset scope: config|config+creds+sessions|full'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l non-interactive -d 'Run without prompts'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l modern -d 'Alias for the default bootstrap onboarding (kept for compatibility)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l classic -d 'Use the classic multi-step setup wizard'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l accept-risk -d 'Acknowledge that agents are powerful and full system access is risky (required for --non-interactive)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l flow -d 'Onboard flow: quickstart|advanced|manual|import'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l mode -d 'Onboard mode: local|remote'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l auth-choice -d 'Auth: custom-api-key|skip|claude-cli|apiKey|anthropic-cli|setup-token|arceeai-api-key|byteplus-api-key|cerebras-api-key|openai-device-code|openai|chutes|chutes-api-key|clawrouter-api-key|cloudflare-ai-gateway-api-key|zai-cn|codex|qwen-api-key-cn|qwen-api-key|zai-coding-cn|zai-coding-global|cohere-api-key|copilot-proxy|deepinfra-api-key|deepseek-api-key|featherless-api-key|fireworks-api-key|google-gemini-cli|github-copilot|zai-global|gmi-api-key|gemini-api-key|google-vertex-api-key|groq-api-key|huggingface-api-key|kilocode-api-key|kimi-code-api-key|litellm-api-key|lmstudio|longcat-api-key|meta-api-key|microsoft-foundry-apikey|microsoft-foundry-entra|minimax-cn-api|minimax-global-api|minimax-cn-oauth|minimax-global-oauth|mistral-api-key|moonshot-api-key|moonshot-api-key-cn|novita-api-key|nvidia-api-key|ollama|ollama-cloud|openai-api-key|opencode-go|opencode-zen|arceeai-openrouter|openrouter-api-key|openrouter-oauth|qianfan-api-key|qwen-oauth|sglang|qwen-standard-api-key-cn|qwen-standard-api-key|stepfun-standard-api-key-cn|stepfun-standard-api-key-intl|stepfun-plan-api-key-cn|stepfun-plan-api-key-intl|synthetic-api-key|tokenhub-api-key|tokenplan-api-key|together-api-key|venice-api-key|ai-gateway-api-key|vllm|volcengine-api-key|xai-api-key|xai-device-code|xai-oauth|xiaomi-api-key|xiaomi-token-plan-cn|xiaomi-token-plan-ams|xiaomi-token-plan-sgp|zai-api-key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l token-provider -d 'Token provider id (non-interactive; used with --auth-choice token)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l token -d 'Token value (non-interactive; used with --auth-choice token)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l token-profile-id -d 'Auth profile id (non-interactive; default: <provider>:manual)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l token-expires-in -d 'Optional token expiry duration (e.g. 365d, 12h)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l secret-input-mode -d 'API key persistence mode: plaintext|ref (default: plaintext)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l cloudflare-ai-gateway-account-id -d 'Cloudflare Account ID'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l cloudflare-ai-gateway-gateway-id -d 'Cloudflare AI Gateway ID'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l alibaba-model-studio-api-key -d 'Alibaba Model Studio API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l anthropic-api-key -d 'Anthropic API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l byteplus-api-key -d 'BytePlus API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l clawrouter-api-key -d 'ClawRouter proxy key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l cohere-api-key -d 'Cohere API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l comfy-api-key -d 'Comfy Cloud API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l fal-api-key -d 'fal API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l github-copilot-token -d 'GitHub Copilot OAuth token'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l gemini-api-key -d 'Gemini API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l huggingface-api-key -d 'Hugging Face API key (HF token)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l litellm-api-key -d 'LiteLLM API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l lmstudio-api-key -d 'LM Studio API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l meta-api-key -d 'Meta API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l minimax-api-key -d 'MiniMax API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l mistral-api-key -d 'Mistral API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l novita-api-key -d 'NovitaAI API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l nvidia-api-key -d 'NVIDIA API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l ollama-cloud-api-key -d 'Ollama Cloud API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l openai-api-key -d 'OpenAI API Key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l opencode-zen-api-key -d 'OpenCode API key (Zen catalog)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l opencode-go-api-key -d 'OpenCode API key (Go catalog)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l openrouter-api-key -d 'OpenRouter API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l runway-api-key -d 'Runway API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l synthetic-api-key -d 'Synthetic API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l together-api-key -d 'Together AI API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l volcengine-api-key -d 'Volcano Engine API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l vydra-api-key -d 'Vydra API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l xai-api-key -d 'xAI API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l xiaomi-api-key -d 'Xiaomi MiMo pay-as-you-go API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l xiaomi-token-plan-api-key -d 'Xiaomi MiMo Token Plan API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l arceeai-api-key -d 'Arcee AI API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l cerebras-api-key -d 'Cerebras API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l chutes-api-key -d 'Chutes API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l cloudflare-ai-gateway-api-key -d 'Cloudflare AI Gateway API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l deepinfra-api-key -d 'DeepInfra API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l deepseek-api-key -d 'DeepSeek API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l featherless-api-key -d 'Featherless AI API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l gmi-api-key -d 'GMI Cloud API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l longcat-api-key -d 'LongCat API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l groq-api-key -d 'Groq API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l kilocode-api-key -d 'Kilo Gateway API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l kimi-code-api-key -d 'Kimi Code API key (subscription)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l pixverse-api-key -d 'PixVerse API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l qianfan-api-key -d 'QIANFAN API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l modelstudio-standard-api-key-cn -d 'Qwen Cloud standard API key (China)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l modelstudio-standard-api-key -d 'Qwen Cloud standard API key (Global/Intl)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l modelstudio-api-key-cn -d 'Qwen Cloud Coding Plan API key (China)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l modelstudio-api-key -d 'Qwen Cloud Coding Plan API key (Global/Intl)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l qwen-oauth-token -d 'Qwen OAuth token'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l fireworks-api-key -d 'Fireworks API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l moonshot-api-key -d 'Moonshot API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l tokenhub-api-key -d 'Tencent TokenHub API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l tokenplan-api-key -d 'Tencent TokenPlan API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l venice-api-key -d 'Venice API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l ai-gateway-api-key -d 'Vercel AI Gateway API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l zai-api-key -d 'Z.AI API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l stepfun-api-key -d 'StepFun API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l custom-base-url -d 'Custom provider base URL'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l custom-api-key -d 'Custom provider API key (optional)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l custom-model-id -d 'Custom provider model ID'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l custom-provider-id -d 'Custom provider ID (optional; auto-derived by default)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l custom-compatibility -d 'Custom provider API compatibility: openai|openai-responses|anthropic (default: openai)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l custom-image-input -d 'Mark the custom provider model as image-capable'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l custom-text-input -d 'Mark the custom provider model as text-only'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l gateway-port -d 'Gateway port'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l gateway-bind -d 'Gateway bind: loopback|tailnet|lan|auto|custom'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l gateway-auth -d 'Gateway auth: token|password'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l gateway-token -d 'Gateway token (token auth)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l gateway-token-ref-env -d 'Gateway token SecretRef env var name (token auth; e.g. OPENCLAW_GATEWAY_TOKEN)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l gateway-password -d 'Gateway password (password auth)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l remote-url -d 'Remote Gateway WebSocket URL'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l remote-token -d 'Remote Gateway token (optional)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l tailscale -d 'Tailscale: off|serve|funnel'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l tailscale-reset-on-exit -d 'Reset tailscale serve/funnel on exit'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l install-daemon -d 'Install gateway service'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l no-install-daemon -d 'Skip gateway service install'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l skip-daemon -d 'Skip gateway service install'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l daemon-runtime -d 'Daemon runtime: node'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l skip-channels -d 'Skip channel setup'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l skip-skills -d 'Skip skills setup'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l skip-bootstrap -d 'Skip creating default agent workspace files'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l skip-search -d 'Skip search provider setup'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l skip-health -d 'Skip health check'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l skip-ui -d 'Skip Control UI/TUI prompts'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l suppress-gateway-token-output -d 'Suppress token-bearing Gateway/UI output'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l skip-hooks -d 'Skip hook setup'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l node-manager -d 'Node manager for skills: npm|pnpm|bun'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l import-from -d 'Migration provider to run during onboarding'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l import-source -d 'Source agent home for --import-from'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l import-secrets -d 'Import supported secrets during onboarding migration'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --deepseek-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l json -d 'Output JSON summary'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l workspace -d 'Agent workspace directory (default: ~/.openclaw/workspace; stored as agents.defaults.workspace)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l wizard -d 'Run interactive onboarding'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l baseline -d 'Create baseline config/workspace/session folders without onboarding'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l reset -d 'Reset config + credentials + sessions before running onboarding (workspace only with --reset-scope full)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l reset-scope -d 'Reset scope: config|config+creds+sessions|full'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l non-interactive -d 'Run onboarding without prompts'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l classic -d 'Use the classic multi-step setup wizard'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l accept-risk -d 'Acknowledge that agents are powerful and full system access is risky (required for --non-interactive)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l flow -d 'Onboard flow: quickstart|advanced|manual|import'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l mode -d 'Onboard mode: local|remote'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l auth-choice -d 'Auth: custom-api-key|skip|claude-cli|apiKey|anthropic-cli|setup-token|arceeai-api-key|byteplus-api-key|cerebras-api-key|openai-device-code|openai|chutes|chutes-api-key|clawrouter-api-key|cloudflare-ai-gateway-api-key|zai-cn|codex|qwen-api-key-cn|qwen-api-key|zai-coding-cn|zai-coding-global|cohere-api-key|copilot-proxy|deepinfra-api-key|deepseek-api-key|featherless-api-key|fireworks-api-key|google-gemini-cli|github-copilot|zai-global|gmi-api-key|gemini-api-key|google-vertex-api-key|groq-api-key|huggingface-api-key|kilocode-api-key|kimi-code-api-key|litellm-api-key|lmstudio|longcat-api-key|meta-api-key|microsoft-foundry-apikey|microsoft-foundry-entra|minimax-cn-api|minimax-global-api|minimax-cn-oauth|minimax-global-oauth|mistral-api-key|moonshot-api-key|moonshot-api-key-cn|novita-api-key|nvidia-api-key|ollama|ollama-cloud|openai-api-key|opencode-go|opencode-zen|arceeai-openrouter|openrouter-api-key|openrouter-oauth|qianfan-api-key|qwen-oauth|sglang|qwen-standard-api-key-cn|qwen-standard-api-key|stepfun-standard-api-key-cn|stepfun-standard-api-key-intl|stepfun-plan-api-key-cn|stepfun-plan-api-key-intl|synthetic-api-key|tokenhub-api-key|tokenplan-api-key|together-api-key|venice-api-key|ai-gateway-api-key|vllm|volcengine-api-key|xai-api-key|xai-device-code|xai-oauth|xiaomi-api-key|xiaomi-token-plan-cn|xiaomi-token-plan-ams|xiaomi-token-plan-sgp|zai-api-key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l token-provider -d 'Token provider id (non-interactive; used with --auth-choice token)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l token -d 'Token value (non-interactive; used with --auth-choice token)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l token-profile-id -d 'Auth profile id (non-interactive; default: <provider>:manual)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l token-expires-in -d 'Optional token expiry duration (e.g. 365d, 12h)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l secret-input-mode -d 'API key persistence mode: plaintext|ref (default: plaintext)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l cloudflare-ai-gateway-account-id -d 'Cloudflare Account ID'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l cloudflare-ai-gateway-gateway-id -d 'Cloudflare AI Gateway ID'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l alibaba-model-studio-api-key -d 'Alibaba Model Studio API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l anthropic-api-key -d 'Anthropic API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l byteplus-api-key -d 'BytePlus API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l clawrouter-api-key -d 'ClawRouter proxy key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l cohere-api-key -d 'Cohere API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l comfy-api-key -d 'Comfy Cloud API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l fal-api-key -d 'fal API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l github-copilot-token -d 'GitHub Copilot OAuth token'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l gemini-api-key -d 'Gemini API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l huggingface-api-key -d 'Hugging Face API key (HF token)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l litellm-api-key -d 'LiteLLM API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l lmstudio-api-key -d 'LM Studio API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l meta-api-key -d 'Meta API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l minimax-api-key -d 'MiniMax API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l mistral-api-key -d 'Mistral API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l novita-api-key -d 'NovitaAI API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l nvidia-api-key -d 'NVIDIA API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l ollama-cloud-api-key -d 'Ollama Cloud API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l openai-api-key -d 'OpenAI API Key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l opencode-zen-api-key -d 'OpenCode API key (Zen catalog)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l opencode-go-api-key -d 'OpenCode API key (Go catalog)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l openrouter-api-key -d 'OpenRouter API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l runway-api-key -d 'Runway API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l synthetic-api-key -d 'Synthetic API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l together-api-key -d 'Together AI API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l volcengine-api-key -d 'Volcano Engine API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l vydra-api-key -d 'Vydra API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l xai-api-key -d 'xAI API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l xiaomi-api-key -d 'Xiaomi MiMo pay-as-you-go API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l xiaomi-token-plan-api-key -d 'Xiaomi MiMo Token Plan API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l deepseek-api-key -d 'DeepSeek API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l arceeai-api-key -d 'Arcee AI API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l cerebras-api-key -d 'Cerebras API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l chutes-api-key -d 'Chutes API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l cloudflare-ai-gateway-api-key -d 'Cloudflare AI Gateway API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l deepinfra-api-key -d 'DeepInfra API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l featherless-api-key -d 'Featherless AI API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l gmi-api-key -d 'GMI Cloud API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l longcat-api-key -d 'LongCat API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l groq-api-key -d 'Groq API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l kilocode-api-key -d 'Kilo Gateway API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l kimi-code-api-key -d 'Kimi Code API key (subscription)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l pixverse-api-key -d 'PixVerse API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l qianfan-api-key -d 'QIANFAN API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l modelstudio-standard-api-key-cn -d 'Qwen Cloud standard API key (China)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l modelstudio-standard-api-key -d 'Qwen Cloud standard API key (Global/Intl)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l modelstudio-api-key-cn -d 'Qwen Cloud Coding Plan API key (China)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l modelstudio-api-key -d 'Qwen Cloud Coding Plan API key (Global/Intl)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l qwen-oauth-token -d 'Qwen OAuth token'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l fireworks-api-key -d 'Fireworks API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l moonshot-api-key -d 'Moonshot API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l tokenhub-api-key -d 'Tencent TokenHub API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l tokenplan-api-key -d 'Tencent TokenPlan API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l venice-api-key -d 'Venice API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l ai-gateway-api-key -d 'Vercel AI Gateway API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l zai-api-key -d 'Z.AI API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l stepfun-api-key -d 'StepFun API key'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l custom-base-url -d 'Custom provider base URL'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l custom-api-key -d 'Custom provider API key (optional)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l custom-model-id -d 'Custom provider model ID'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l custom-provider-id -d 'Custom provider ID (optional; auto-derived by default)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l custom-compatibility -d 'Custom provider API compatibility: openai|openai-responses|anthropic (default: openai)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l custom-image-input -d 'Mark the custom provider model as image-capable'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l custom-text-input -d 'Mark the custom provider model as text-only'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l gateway-port -d 'Gateway port'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l gateway-bind -d 'Gateway bind: loopback|tailnet|lan|auto|custom'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l gateway-auth -d 'Gateway auth: token|password'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l gateway-token -d 'Gateway token (token auth)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l gateway-token-ref-env -d 'Gateway token SecretRef env var name (token auth; e.g. OPENCLAW_GATEWAY_TOKEN)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l gateway-password -d 'Gateway password (password auth)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l tailscale -d 'Tailscale: off|serve|funnel'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l tailscale-reset-on-exit -d 'Reset tailscale serve/funnel on exit'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l install-daemon -d 'Install gateway service'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l no-install-daemon -d 'Skip gateway service install'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l skip-daemon -d 'Skip gateway service install'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l daemon-runtime -d 'Daemon runtime: node'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l skip-channels -d 'Skip channel setup'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l skip-skills -d 'Skip skills setup'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l skip-bootstrap -d 'Skip creating default agent workspace files'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l skip-search -d 'Skip search provider setup'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l skip-health -d 'Skip health check'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l skip-ui -d 'Skip Control UI/TUI launch'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l suppress-gateway-token-output -d 'Suppress token-bearing Gateway/UI output'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l skip-hooks -d 'Accepted for onboard compatibility; hooks setup is skipped'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l node-manager -d 'Node manager for skills: npm|pnpm|bun'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l import-from -d 'Migration provider to run during onboarding'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l import-source -d 'Source agent home for --import-from'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l import-secrets -d 'Import supported secrets during onboarding migration'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l remote-url -d 'Remote Gateway WebSocket URL'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l remote-token -d 'Remote Gateway token (optional)'
complete -c openclaw -n "__openclaw_command_path_matches setup -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --tailscale --daemon-runtime --node-manager --import-from --import-source --remote-url --remote-token" -l json -d 'Output JSON summary'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l workspace -d 'Agent workspace directory (default: ~/.openclaw/workspace)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l reset -d 'Reset config + credentials + sessions before running onboard (workspace only with --reset-scope full)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l reset-scope -d 'Reset scope: config|config+creds+sessions|full'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l non-interactive -d 'Run without prompts'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l modern -d 'Alias for the default bootstrap onboarding (kept for compatibility)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l classic -d 'Use the classic multi-step setup wizard'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l accept-risk -d 'Acknowledge that agents are powerful and full system access is risky (required for --non-interactive)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l flow -d 'Onboard flow: quickstart|advanced|manual|import'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l mode -d 'Onboard mode: local|remote'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l auth-choice -d 'Auth: custom-api-key|skip|claude-cli|apiKey|anthropic-cli|setup-token|arceeai-api-key|byteplus-api-key|cerebras-api-key|openai-device-code|openai|chutes|chutes-api-key|clawrouter-api-key|cloudflare-ai-gateway-api-key|zai-cn|codex|qwen-api-key-cn|qwen-api-key|zai-coding-cn|zai-coding-global|cohere-api-key|copilot-proxy|deepinfra-api-key|deepseek-api-key|featherless-api-key|fireworks-api-key|google-gemini-cli|github-copilot|zai-global|gmi-api-key|gemini-api-key|google-vertex-api-key|groq-api-key|huggingface-api-key|kilocode-api-key|kimi-code-api-key|litellm-api-key|lmstudio|longcat-api-key|meta-api-key|microsoft-foundry-apikey|microsoft-foundry-entra|minimax-cn-api|minimax-global-api|minimax-cn-oauth|minimax-global-oauth|mistral-api-key|moonshot-api-key|moonshot-api-key-cn|novita-api-key|nvidia-api-key|ollama|ollama-cloud|openai-api-key|opencode-go|opencode-zen|arceeai-openrouter|openrouter-api-key|openrouter-oauth|qianfan-api-key|qwen-oauth|sglang|qwen-standard-api-key-cn|qwen-standard-api-key|stepfun-standard-api-key-cn|stepfun-standard-api-key-intl|stepfun-plan-api-key-cn|stepfun-plan-api-key-intl|synthetic-api-key|tokenhub-api-key|tokenplan-api-key|together-api-key|venice-api-key|ai-gateway-api-key|vllm|volcengine-api-key|xai-api-key|xai-device-code|xai-oauth|xiaomi-api-key|xiaomi-token-plan-cn|xiaomi-token-plan-ams|xiaomi-token-plan-sgp|zai-api-key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l token-provider -d 'Token provider id (non-interactive; used with --auth-choice token)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l token -d 'Token value (non-interactive; used with --auth-choice token)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l token-profile-id -d 'Auth profile id (non-interactive; default: <provider>:manual)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l token-expires-in -d 'Optional token expiry duration (e.g. 365d, 12h)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l secret-input-mode -d 'API key persistence mode: plaintext|ref (default: plaintext)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l cloudflare-ai-gateway-account-id -d 'Cloudflare Account ID'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l cloudflare-ai-gateway-gateway-id -d 'Cloudflare AI Gateway ID'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l alibaba-model-studio-api-key -d 'Alibaba Model Studio API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l anthropic-api-key -d 'Anthropic API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l byteplus-api-key -d 'BytePlus API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l clawrouter-api-key -d 'ClawRouter proxy key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l cohere-api-key -d 'Cohere API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l comfy-api-key -d 'Comfy Cloud API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l fal-api-key -d 'fal API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l github-copilot-token -d 'GitHub Copilot OAuth token'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l gemini-api-key -d 'Gemini API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l huggingface-api-key -d 'Hugging Face API key (HF token)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l litellm-api-key -d 'LiteLLM API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l lmstudio-api-key -d 'LM Studio API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l meta-api-key -d 'Meta API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l minimax-api-key -d 'MiniMax API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l mistral-api-key -d 'Mistral API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l novita-api-key -d 'NovitaAI API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l nvidia-api-key -d 'NVIDIA API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l ollama-cloud-api-key -d 'Ollama Cloud API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l openai-api-key -d 'OpenAI API Key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l opencode-zen-api-key -d 'OpenCode API key (Zen catalog)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l opencode-go-api-key -d 'OpenCode API key (Go catalog)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l openrouter-api-key -d 'OpenRouter API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l runway-api-key -d 'Runway API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l synthetic-api-key -d 'Synthetic API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l together-api-key -d 'Together AI API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l volcengine-api-key -d 'Volcano Engine API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l vydra-api-key -d 'Vydra API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l xai-api-key -d 'xAI API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l xiaomi-api-key -d 'Xiaomi MiMo pay-as-you-go API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l xiaomi-token-plan-api-key -d 'Xiaomi MiMo Token Plan API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l deepseek-api-key -d 'DeepSeek API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l arceeai-api-key -d 'Arcee AI API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l cerebras-api-key -d 'Cerebras API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l chutes-api-key -d 'Chutes API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l cloudflare-ai-gateway-api-key -d 'Cloudflare AI Gateway API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l deepinfra-api-key -d 'DeepInfra API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l featherless-api-key -d 'Featherless AI API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l gmi-api-key -d 'GMI Cloud API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l longcat-api-key -d 'LongCat API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l groq-api-key -d 'Groq API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l kilocode-api-key -d 'Kilo Gateway API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l kimi-code-api-key -d 'Kimi Code API key (subscription)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l pixverse-api-key -d 'PixVerse API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l qianfan-api-key -d 'QIANFAN API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l modelstudio-standard-api-key-cn -d 'Qwen Cloud standard API key (China)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l modelstudio-standard-api-key -d 'Qwen Cloud standard API key (Global/Intl)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l modelstudio-api-key-cn -d 'Qwen Cloud Coding Plan API key (China)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l modelstudio-api-key -d 'Qwen Cloud Coding Plan API key (Global/Intl)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l qwen-oauth-token -d 'Qwen OAuth token'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l fireworks-api-key -d 'Fireworks API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l moonshot-api-key -d 'Moonshot API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l tokenhub-api-key -d 'Tencent TokenHub API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l tokenplan-api-key -d 'Tencent TokenPlan API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l venice-api-key -d 'Venice API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l ai-gateway-api-key -d 'Vercel AI Gateway API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l zai-api-key -d 'Z.AI API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l stepfun-api-key -d 'StepFun API key'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l custom-base-url -d 'Custom provider base URL'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l custom-api-key -d 'Custom provider API key (optional)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l custom-model-id -d 'Custom provider model ID'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l custom-provider-id -d 'Custom provider ID (optional; auto-derived by default)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l custom-compatibility -d 'Custom provider API compatibility: openai|openai-responses|anthropic (default: openai)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l custom-image-input -d 'Mark the custom provider model as image-capable'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l custom-text-input -d 'Mark the custom provider model as text-only'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l gateway-port -d 'Gateway port'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l gateway-bind -d 'Gateway bind: loopback|tailnet|lan|auto|custom'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l gateway-auth -d 'Gateway auth: token|password'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l gateway-token -d 'Gateway token (token auth)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l gateway-token-ref-env -d 'Gateway token SecretRef env var name (token auth; e.g. OPENCLAW_GATEWAY_TOKEN)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l gateway-password -d 'Gateway password (password auth)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l remote-url -d 'Remote Gateway WebSocket URL'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l remote-token -d 'Remote Gateway token (optional)'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l tailscale -d 'Tailscale: off|serve|funnel'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l tailscale-reset-on-exit -d 'Reset tailscale serve/funnel on exit'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l install-daemon -d 'Install gateway service'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l no-install-daemon -d 'Skip gateway service install'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l skip-daemon -d 'Skip gateway service install'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l daemon-runtime -d 'Daemon runtime: node'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l skip-channels -d 'Skip channel setup'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l skip-skills -d 'Skip skills setup'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l skip-bootstrap -d 'Skip creating default agent workspace files'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l skip-search -d 'Skip search provider setup'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l skip-health -d 'Skip health check'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l skip-ui -d 'Skip Control UI/TUI prompts'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l suppress-gateway-token-output -d 'Suppress token-bearing Gateway/UI output'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l skip-hooks -d 'Skip hook setup'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l node-manager -d 'Node manager for skills: npm|pnpm|bun'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l import-from -d 'Migration provider to run during onboarding'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l import-source -d 'Source agent home for --import-from'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l import-secrets -d 'Import supported secrets during onboarding migration'
complete -c openclaw -n "__openclaw_command_path_matches onboard -- --container --profile --log-level --workspace --reset-scope --flow --mode --auth-choice --token-provider --token --token-profile-id --token-expires-in --secret-input-mode --cloudflare-ai-gateway-account-id --cloudflare-ai-gateway-gateway-id --alibaba-model-studio-api-key --anthropic-api-key --byteplus-api-key --clawrouter-api-key --cohere-api-key --comfy-api-key --fal-api-key --github-copilot-token --gemini-api-key --huggingface-api-key --litellm-api-key --lmstudio-api-key --meta-api-key --minimax-api-key --mistral-api-key --novita-api-key --nvidia-api-key --ollama-cloud-api-key --openai-api-key --opencode-zen-api-key --opencode-go-api-key --openrouter-api-key --runway-api-key --synthetic-api-key --together-api-key --volcengine-api-key --vydra-api-key --xai-api-key --xiaomi-api-key --xiaomi-token-plan-api-key --deepseek-api-key --arceeai-api-key --cerebras-api-key --chutes-api-key --cloudflare-ai-gateway-api-key --deepinfra-api-key --featherless-api-key --gmi-api-key --longcat-api-key --groq-api-key --kilocode-api-key --kimi-code-api-key --pixverse-api-key --qianfan-api-key --modelstudio-standard-api-key-cn --modelstudio-standard-api-key --modelstudio-api-key-cn --modelstudio-api-key --qwen-oauth-token --fireworks-api-key --moonshot-api-key --tokenhub-api-key --tokenplan-api-key --venice-api-key --ai-gateway-api-key --zai-api-key --stepfun-api-key --custom-base-url --custom-api-key --custom-model-id --custom-provider-id --custom-compatibility --gateway-port --gateway-bind --gateway-auth --gateway-token --gateway-token-ref-env --gateway-password --remote-url --remote-token --tailscale --daemon-runtime --node-manager --import-from --import-source" -l json -d 'Output JSON summary'
complete -c openclaw -n "__openclaw_command_path_matches configure -- --container --profile --log-level --section" -l section -d 'Configuration sections (repeatable). Options: workspace, model, web, gateway, daemon, channels, plugins, skills, health'
complete -c openclaw -n "__openclaw_command_path_matches config -- --container --profile --log-level --section" -a "get" -d 'Get a config value by dot path'
complete -c openclaw -n "__openclaw_command_path_matches config -- --container --profile --log-level --section" -a "set" -d 'Set config values by path (value mode, ref/provider builder mode, or batch JSON mode).
+2 -2
View File
@@ -39,14 +39,14 @@ Register-ArgumentCompleter -Native -CommandName openclaw -ScriptBlock {
}
if ($commandPath -eq 'setup') {
$completions = @('--workspace','--wizard','--baseline','--reset','--reset-scope','--non-interactive','--classic','--accept-risk','--flow','--mode','--auth-choice','--token-provider','--token','--token-profile-id','--token-expires-in','--secret-input-mode','--cloudflare-ai-gateway-account-id','--cloudflare-ai-gateway-gateway-id','--alibaba-model-studio-api-key','--anthropic-api-key','--byteplus-api-key','--clawrouter-api-key','--cohere-api-key','--comfy-api-key','--fal-api-key','--github-copilot-token','--gemini-api-key','--huggingface-api-key','--litellm-api-key','--lmstudio-api-key','--meta-api-key','--minimax-api-key','--mistral-api-key','--novita-api-key','--nvidia-api-key','--ollama-cloud-api-key','--openai-api-key','--opencode-zen-api-key','--opencode-go-api-key','--openrouter-api-key','--runway-api-key','--synthetic-api-key','--together-api-key','--volcengine-api-key','--vydra-api-key','--xai-api-key','--xiaomi-api-key','--xiaomi-token-plan-api-key','--arceeai-api-key','--cerebras-api-key','--chutes-api-key','--cloudflare-ai-gateway-api-key','--deepinfra-api-key','--deepseek-api-key','--featherless-api-key','--gmi-api-key','--longcat-api-key','--groq-api-key','--kilocode-api-key','--kimi-code-api-key','--pixverse-api-key','--qianfan-api-key','--modelstudio-standard-api-key-cn','--modelstudio-standard-api-key','--modelstudio-api-key-cn','--modelstudio-api-key','--qwen-oauth-token','--fireworks-api-key','--moonshot-api-key','--tokenhub-api-key','--tokenplan-api-key','--venice-api-key','--ai-gateway-api-key','--zai-api-key','--stepfun-api-key','--custom-base-url','--custom-api-key','--custom-model-id','--custom-provider-id','--custom-compatibility','--custom-image-input','--custom-text-input','--gateway-port','--gateway-bind','--gateway-auth','--gateway-token','--gateway-token-ref-env','--gateway-password','--tailscale','--tailscale-reset-on-exit','--install-daemon','--no-install-daemon','--skip-daemon','--daemon-runtime','--skip-channels','--skip-skills','--skip-bootstrap','--skip-search','--skip-health','--skip-ui','--suppress-gateway-token-output','--skip-hooks','--node-manager','--import-from','--import-source','--import-secrets','--remote-url','--remote-token','--json')
$completions = @('--workspace','--wizard','--baseline','--reset','--reset-scope','--non-interactive','--classic','--accept-risk','--flow','--mode','--auth-choice','--token-provider','--token','--token-profile-id','--token-expires-in','--secret-input-mode','--cloudflare-ai-gateway-account-id','--cloudflare-ai-gateway-gateway-id','--alibaba-model-studio-api-key','--anthropic-api-key','--byteplus-api-key','--clawrouter-api-key','--cohere-api-key','--comfy-api-key','--fal-api-key','--github-copilot-token','--gemini-api-key','--huggingface-api-key','--litellm-api-key','--lmstudio-api-key','--meta-api-key','--minimax-api-key','--mistral-api-key','--novita-api-key','--nvidia-api-key','--ollama-cloud-api-key','--openai-api-key','--opencode-zen-api-key','--opencode-go-api-key','--openrouter-api-key','--runway-api-key','--synthetic-api-key','--together-api-key','--volcengine-api-key','--vydra-api-key','--xai-api-key','--xiaomi-api-key','--xiaomi-token-plan-api-key','--deepseek-api-key','--arceeai-api-key','--cerebras-api-key','--chutes-api-key','--cloudflare-ai-gateway-api-key','--deepinfra-api-key','--featherless-api-key','--gmi-api-key','--longcat-api-key','--groq-api-key','--kilocode-api-key','--kimi-code-api-key','--pixverse-api-key','--qianfan-api-key','--modelstudio-standard-api-key-cn','--modelstudio-standard-api-key','--modelstudio-api-key-cn','--modelstudio-api-key','--qwen-oauth-token','--fireworks-api-key','--moonshot-api-key','--tokenhub-api-key','--tokenplan-api-key','--venice-api-key','--ai-gateway-api-key','--zai-api-key','--stepfun-api-key','--custom-base-url','--custom-api-key','--custom-model-id','--custom-provider-id','--custom-compatibility','--custom-image-input','--custom-text-input','--gateway-port','--gateway-bind','--gateway-auth','--gateway-token','--gateway-token-ref-env','--gateway-password','--tailscale','--tailscale-reset-on-exit','--install-daemon','--no-install-daemon','--skip-daemon','--daemon-runtime','--skip-channels','--skip-skills','--skip-bootstrap','--skip-search','--skip-health','--skip-ui','--suppress-gateway-token-output','--skip-hooks','--node-manager','--import-from','--import-source','--import-secrets','--remote-url','--remote-token','--json')
$completions | Where-Object { $_ -like "$wordToComplete*" } | ForEach-Object {
[System.Management.Automation.CompletionResult]::new($_, $_, 'ParameterName', $_)
}
}
if ($commandPath -eq 'onboard') {
$completions = @('--workspace','--reset','--reset-scope','--non-interactive','--modern','--classic','--accept-risk','--flow','--mode','--auth-choice','--token-provider','--token','--token-profile-id','--token-expires-in','--secret-input-mode','--cloudflare-ai-gateway-account-id','--cloudflare-ai-gateway-gateway-id','--alibaba-model-studio-api-key','--anthropic-api-key','--byteplus-api-key','--clawrouter-api-key','--cohere-api-key','--comfy-api-key','--fal-api-key','--github-copilot-token','--gemini-api-key','--huggingface-api-key','--litellm-api-key','--lmstudio-api-key','--meta-api-key','--minimax-api-key','--mistral-api-key','--novita-api-key','--nvidia-api-key','--ollama-cloud-api-key','--openai-api-key','--opencode-zen-api-key','--opencode-go-api-key','--openrouter-api-key','--runway-api-key','--synthetic-api-key','--together-api-key','--volcengine-api-key','--vydra-api-key','--xai-api-key','--xiaomi-api-key','--xiaomi-token-plan-api-key','--arceeai-api-key','--cerebras-api-key','--chutes-api-key','--cloudflare-ai-gateway-api-key','--deepinfra-api-key','--deepseek-api-key','--featherless-api-key','--gmi-api-key','--longcat-api-key','--groq-api-key','--kilocode-api-key','--kimi-code-api-key','--pixverse-api-key','--qianfan-api-key','--modelstudio-standard-api-key-cn','--modelstudio-standard-api-key','--modelstudio-api-key-cn','--modelstudio-api-key','--qwen-oauth-token','--fireworks-api-key','--moonshot-api-key','--tokenhub-api-key','--tokenplan-api-key','--venice-api-key','--ai-gateway-api-key','--zai-api-key','--stepfun-api-key','--custom-base-url','--custom-api-key','--custom-model-id','--custom-provider-id','--custom-compatibility','--custom-image-input','--custom-text-input','--gateway-port','--gateway-bind','--gateway-auth','--gateway-token','--gateway-token-ref-env','--gateway-password','--remote-url','--remote-token','--tailscale','--tailscale-reset-on-exit','--install-daemon','--no-install-daemon','--skip-daemon','--daemon-runtime','--skip-channels','--skip-skills','--skip-bootstrap','--skip-search','--skip-health','--skip-ui','--suppress-gateway-token-output','--skip-hooks','--node-manager','--import-from','--import-source','--import-secrets','--json')
$completions = @('--workspace','--reset','--reset-scope','--non-interactive','--modern','--classic','--accept-risk','--flow','--mode','--auth-choice','--token-provider','--token','--token-profile-id','--token-expires-in','--secret-input-mode','--cloudflare-ai-gateway-account-id','--cloudflare-ai-gateway-gateway-id','--alibaba-model-studio-api-key','--anthropic-api-key','--byteplus-api-key','--clawrouter-api-key','--cohere-api-key','--comfy-api-key','--fal-api-key','--github-copilot-token','--gemini-api-key','--huggingface-api-key','--litellm-api-key','--lmstudio-api-key','--meta-api-key','--minimax-api-key','--mistral-api-key','--novita-api-key','--nvidia-api-key','--ollama-cloud-api-key','--openai-api-key','--opencode-zen-api-key','--opencode-go-api-key','--openrouter-api-key','--runway-api-key','--synthetic-api-key','--together-api-key','--volcengine-api-key','--vydra-api-key','--xai-api-key','--xiaomi-api-key','--xiaomi-token-plan-api-key','--deepseek-api-key','--arceeai-api-key','--cerebras-api-key','--chutes-api-key','--cloudflare-ai-gateway-api-key','--deepinfra-api-key','--featherless-api-key','--gmi-api-key','--longcat-api-key','--groq-api-key','--kilocode-api-key','--kimi-code-api-key','--pixverse-api-key','--qianfan-api-key','--modelstudio-standard-api-key-cn','--modelstudio-standard-api-key','--modelstudio-api-key-cn','--modelstudio-api-key','--qwen-oauth-token','--fireworks-api-key','--moonshot-api-key','--tokenhub-api-key','--tokenplan-api-key','--venice-api-key','--ai-gateway-api-key','--zai-api-key','--stepfun-api-key','--custom-base-url','--custom-api-key','--custom-model-id','--custom-provider-id','--custom-compatibility','--custom-image-input','--custom-text-input','--gateway-port','--gateway-bind','--gateway-auth','--gateway-token','--gateway-token-ref-env','--gateway-password','--remote-url','--remote-token','--tailscale','--tailscale-reset-on-exit','--install-daemon','--no-install-daemon','--skip-daemon','--daemon-runtime','--skip-channels','--skip-skills','--skip-bootstrap','--skip-search','--skip-health','--skip-ui','--suppress-gateway-token-output','--skip-hooks','--node-manager','--import-from','--import-source','--import-secrets','--json')
$completions | Where-Object { $_ -like "$wordToComplete*" } | ForEach-Object {
[System.Management.Automation.CompletionResult]::new($_, $_, 'ParameterName', $_)
}
+2 -2
View File
@@ -145,12 +145,12 @@ _openclaw_setup() {
"--xai-api-key[xAI API key]" \
"--xiaomi-api-key[Xiaomi MiMo pay-as-you-go API key]" \
"--xiaomi-token-plan-api-key[Xiaomi MiMo Token Plan API key]" \
"--deepseek-api-key[DeepSeek API key]" \
"--arceeai-api-key[Arcee AI API key]" \
"--cerebras-api-key[Cerebras API key]" \
"--chutes-api-key[Chutes API key]" \
"--cloudflare-ai-gateway-api-key[Cloudflare AI Gateway API key]" \
"--deepinfra-api-key[DeepInfra API key]" \
"--deepseek-api-key[DeepSeek API key]" \
"--featherless-api-key[Featherless AI API key]" \
"--gmi-api-key[GMI Cloud API key]" \
"--longcat-api-key[LongCat API key]" \
@@ -257,12 +257,12 @@ _openclaw_onboard() {
"--xai-api-key[xAI API key]" \
"--xiaomi-api-key[Xiaomi MiMo pay-as-you-go API key]" \
"--xiaomi-token-plan-api-key[Xiaomi MiMo Token Plan API key]" \
"--deepseek-api-key[DeepSeek API key]" \
"--arceeai-api-key[Arcee AI API key]" \
"--cerebras-api-key[Cerebras API key]" \
"--chutes-api-key[Chutes API key]" \
"--cloudflare-ai-gateway-api-key[Cloudflare AI Gateway API key]" \
"--deepinfra-api-key[DeepInfra API key]" \
"--deepseek-api-key[DeepSeek API key]" \
"--featherless-api-key[Featherless AI API key]" \
"--gmi-api-key[GMI Cloud API key]" \
"--longcat-api-key[LongCat API key]" \
+7 -3
View File
@@ -3,12 +3,16 @@
"deviceId": "e8510d8b751c9065aebddecb8951b0283fce5457af923f81b6d4a6bd72d421e7",
"tokens": {
"operator": {
"token": "qmmu-2Qk84qMJtYcJei6Jw2sQvmGwx0-vgihHe2AhSQ",
"token": "2720025facf8497986551236793037ea",
"role": "operator",
"scopes": [
"operator.read"
"operator.admin",
"operator.approvals",
"operator.pairing",
"operator.read",
"operator.write"
],
"updatedAtMs": 1785811501091
"updatedAtMs": 1784041767489
}
}
}
@@ -1,742 +0,0 @@
交易时间,交易分类,交易对方,对方账号,商品说明,收/支,金额,收/付款方式,交易状态,交易订单号,商家订单号,备注
2025/12/30 18:46,日用百货,淘宝闪购,ele***@service.aliyun.com,全好佳超市(安庆店),支出,11.5,花呗,交易成功,"2025123022001164411408785699 ","13180600725123005980357849114 ",
2025/12/30 18:40,日用百货,淘宝闪购,ele***@service.aliyun.com,全好佳超市(安庆店),支出,9.5,花呗,交易成功,"2025123022001164411409740402 ","13180600725123046961873849114 ",
2025/12/29 9:30,日用百货,义乌**厂,c2m***@service.aliyun.com,画画收纳册4k美术作品收集册8k画夹画册素描纸画纸a2画稿a3绘画奖状透明儿童大容量作品集收纳袋画作手提A4纸,支出,4.05,花呗,交易关闭,"2025122922001164411457682310 ","T200P3151049235917661070 ",
2025/12/29 9:20,家居家装,诗涵**店,shi***@163.com,防风衣架不锈钢防掉固定卡扣室外晾衣服掉落吹走户外晒衣架子家用,支出,21.73,花呗,交易成功,"2025122922001164411459134149 ","T200P3151490412973661070 ",
2025/12/24 12:05,日用百货,淘宝闪购,ele***@service.aliyun.com,满佳喜超市(宜秀店),支出,7.8,花呗,交易成功,"2025122422001164411432182935 ","13120600725122483295125849114 ",
2025/12/22 18:29,医疗健康,淘宝闪购,ele***@service.aliyun.com,老百姓大药房(祥和路七街一店),支出,15.4,花呗,交易成功,"2025122222001164411425561507 ","13180600725122220152039849114 ",
2025/12/21 17:20,餐饮美食,新皖韵生鲜超市,/,新皖韵生鲜超市,支出,7.3,花呗,交易成功,"2025122122001464411417812674 ","33126600004802000020251221172037407323957504 ",
2025/12/21 16:17,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,正新鸡排(金桂丽园店)外卖订单,支出,8.38,花呗,交易成功,"2025122122001164411420550512 ","13160600725122115704763849114 ",
2025/12/21 11:26,餐饮美食,江记土猪肉,139******44,收钱码收款,支出,10,花呗,交易成功,"2025122122001464411416748644 ","17662876125602126064414 ",
2025/12/21 11:23,餐饮美食,胖子水果蔬菜超市,187******83,收钱码收款,支出,6.24,花呗&到店支付立减券,交易成功,"2025122122001464411417901096 ","17662874005602126064414 ",
2025/12/21 11:13,医疗健康,北京烤鸭,187******60,收钱码收款,支出,35.21,花呗&现金抵价券,交易成功,"2025122122001464411417383021 ","47662868383602126064414 ",
2025/12/21 9:37,退款,wt**0,407***@qq.com,退款-骊枥高腰显瘦a字针织裙 修身半身裙女秋冬 通勤软糯宽松长裙5081 等多件,不计收支,76.38,花呗,退款成功,"2025121722001164411458325882_3129155365307661070_advance ","T200P3129155365305661070 ",
2025/12/21 9:36,退款,wt**0,407***@qq.com,退款-骊枥高腰显瘦a字针织裙 修身半身裙女秋冬 通勤软糯宽松长裙5081 等多件,不计收支,68.66,花呗,退款成功,"2025121722001164411458325882_3129155365306661070_advance ","T200P3129155365305661070 ",
2025/12/21 9:36,退款,am**店,wxx***@163.com,退款-【优惠价】格子毛呢高级感短裙女2025冬季新品气质a字显瘦百搭包臀半身裙子,不计收支,70.64,花呗,退款成功,"2025121422001164411445060303_3121917816045661070_advance ","T200P3121917816045661070 ",
2025/12/20 10:09,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|25091459225998710731|期数|202512|续期交易付款,支出,9.9,花呗,交易成功,"20251220315991154105 ","202512201100300707310101692928 ",
2025/12/19 23:01,信用借还,花呗|信用购,/,主动还款-花呗|信用购2025年12月账单,不计收支,1354.11,徽商银行储蓄卡(1491),还款成功,"2025121929020999410197938506 "," ",
2025/12/19 19:00,餐饮美食,淘宝闪购,pin***@service.alibaba.com,超级吃货卡,支出,0.1,花呗,交易成功,"2025121922001164411406096845 ","13190600725121931547794849114 ",
2025/12/19 19:00,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,沪上阿姨·精选茶饮安庆七街店外卖订单,支出,7,花呗,交易成功,"2025121922001164411409729034 ","13190600725121931547793849114 ",
2025/12/19 14:13,数码电器,tb**4,133******15,加热鼠标垫暖桌垫220V两孔充电源线发热垫2孔8字纯铜芯充电电源线,支出,1,花呗,交易成功,"2025121922001164411406085039 ","T200P3132111829029661070 ",
2025/12/18 18:54,医疗健康,淘宝闪购,ele***@service.aliyun.com,老百姓大药房(祥和路七街一店),支出,29.2,花呗,交易成功,"2025121822001164411404420128 ","13180600725121895788313849114 ",
2025/12/18 18:00,医疗健康,淘宝闪购,ele***@service.aliyun.com,老百姓大药房(天柱山东路一店),支出,18.2,花呗,交易成功,"2025121822001164411404490278 ","13180600725121899134150849114 ",
2025/12/17 22:06,退款,苏朵**店,sud***@163.com,退款-【优惠价】巨好看粉色针织上衣半身连衣裙套装女秋冬季2025新款长裙ootd穿搭,不计收支,33.07,花呗,退款成功,"2025121722001164411458561557_3129155365308661070 ","T200P3129155365308661070 ",
2025/12/17 22:06,服饰装扮,wt**0,407***@qq.com,骊枥高腰显瘦a字针织裙 修身半身裙女秋冬 通勤软糯宽松长裙5081 等多件,支出,145.04,花呗,交易关闭,"2025121722001164411458325882 ","T200P3129155365305661070 ",
2025/12/17 22:06,服饰装扮,苏朵**店,sud***@163.com,【优惠价】巨好看粉色针织上衣半身连衣裙套装女秋冬季2025新款长裙ootd穿搭,支出,33.07,花呗,交易关闭,"2025121722001164411458561557 ","T200P3129155365308661070 ",
2025/12/15 19:45,退款,aj**店,sgx***@sohu.com,退款-Aji惊奇脆片饼干不规则薄脆咸味网红蔬菜办公室零食小吃休闲食品 等多件,不计收支,22.69,花呗,退款成功,"2025121522001164411451801750_3124720202614661070 ","T200P3124720202612661070 ",
2025/12/15 19:44,餐饮美食,aj**店,sgx***@sohu.com,Aji惊奇脆片饼干不规则薄脆咸味网红蔬菜办公室零食小吃休闲食品 等多件,支出,44.35,花呗,交易成功,"2025121522001164411451801750 ","T200P3124720202612661070 ",
2025/12/14 17:49,餐饮美食,老杨全牛馆,155******15,收钱码收款,支出,33.5,花呗,交易成功,"2025121422001464411446578092 ","17657057687602126064414 ",
2025/12/14 11:28,退款,星优**店,qua***@163.com,退款-儿童玩具收纳桶家用大容量超大毛绒玩偶收纳神器翻盖娃娃收纳箱子,不计收支,30.56,花呗&优惠,退款成功,"2025121422001164411444779581_3121917816047661070 ","T200P3121917816047661070 ",
2025/12/14 11:28,退款,百胜**店,mir***@163.com,退款-【优惠价】百胜狐2025冬款男胖子休闲裤加绒加厚大码保暖商务男士宽松直筒裤,不计收支,160.36,花呗,退款成功,"2025121422001164411447405197_3121917816046661070 ","T200P3121917816046661070 ",
2025/12/14 11:27,母婴亲子,膳魔**店,yr***@zjhzsl.com,【优惠价】膳魔师旗舰店哈利波特儿童保温杯宝宝吸管杯学生上学直饮水杯水壶,支出,154.96,花呗,交易成功,"2025121422001164411443797808 ","T200P3121917816048661070 ",
2025/12/14 11:27,母婴亲子,tb**3,131******08,大小卷拜年服套装男童汉服冬装儿童新中式国风唐装喜庆宝宝过年服,支出,135.71,花呗,交易成功,"2025121422001164411443891416 ","T200P3121917816049661070 ",
2025/12/14 11:27,家居家装,星优**店,qua***@163.com,儿童玩具收纳桶家用大容量超大毛绒玩偶收纳神器翻盖娃娃收纳箱子,支出,30.56,花呗&优惠,交易关闭,"2025121422001164411444779581 ","T200P3121917816047661070 ",
2025/12/14 11:27,服饰装扮,am**店,wxx***@163.com,【优惠价】格子毛呢高级感短裙女2025冬季新品气质a字显瘦百搭包臀半身裙子,支出,70.64,花呗,交易关闭,"2025121422001164411445060303 ","T200P3121917816045661070 ",
2025/12/14 11:27,服饰装扮,百胜**店,mir***@163.com,【优惠价】百胜狐2025冬款男胖子休闲裤加绒加厚大码保暖商务男士宽松直筒裤,支出,160.36,花呗,交易关闭,"2025121422001164411447405197 ","T200P3121917816046661070 ",
2025/12/13 12:27,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,1点点(安庆弘阳广场店)外卖订单,支出,0.01,花呗,交易成功,"2025121322001164411441435637 ","13120600725121315460757849114 ",
2025/12/13 11:22,日用百货,水***天,188******17,小熊多功能电热锅,支出,35,花呗,交易成功,"2025121322001164411442626826 ","T200P3119348354577661070 ",
2025/12/13 11:11,餐饮美食,戴绍兵,183******17,收钱码收款,支出,10,花呗,交易成功,"2025121322001464411440109001 ","17655955029602126064414 ",
2025/12/12 18:47,医疗健康,淘宝闪购,ele***@service.aliyun.com,国胜大药房(安庆置地店),支出,30.18,花呗,交易成功,"2025121222001164411438009704 ","13180600725121207292200849114 ",
2025/12/12 18:24,医疗健康,淘宝闪购,ele***@service.aliyun.com,华氏大药房(百悦府小区分店),支出,45.5,花呗,交易成功,"2025121222001164411435876553 ","13180600725121260498429849114 ",
2025/12/12 16:14,生活服务,杭州菜鸟供应链管理有限公司,gg4***@cainiao.com,菜鸟裹裹-寄件费_702667010_LP00783743389754,支出,7.1,余额宝,交易成功,"2025121222001464411435886435 ","CN_V1_602388408600680333 ",
2025/12/11 0:41,投资理财,余额宝,cxd***@cxfund.com.cn,余额宝-自动转入,不计收支,6,账户余额,交易成功,"20251211019130101000410081226552 ","20251211009130501000410054397954 ",
2025/12/10 12:52,商业服务,上海淘天商业管理有限公司,/,退货宝_订单号:3095343012656661070,收入,6,账户余额,交易成功,"BO2025121046363643310205 ","HJCAEF==500000068730107031==1560188960550010 ",
2025/12/10 0:44,投资理财,余额宝,cxd***@cxfund.com.cn,余额宝-自动转入,不计收支,5.4,账户余额,交易成功,"20251210019130101000410080323932 ","20251210009130501000410053640658 ",
2025/12/9 20:47,日用百货,淘宝闪购,ele***@service.aliyun.com,公里购·精品超市(迎江店),支出,15.39,花呗,交易成功,"2025120922001164411423556269 ","13200600725120969794068849114 ",
2025/12/9 17:55,医疗健康,淘宝闪购,ele***@service.aliyun.com,老百姓大药房(恒禾东尚小区店),支出,42.9,花呗,交易成功,"2025120922001164411423884653 ","13170600725120977808420849114 ",
2025/12/9 11:57,保险,泰康在线财产保险股份有限公司,/,保险理赔-退货宝补偿-订单号:3101287693648661070 保单号:25120463792033010940,收入,5.4,,交易成功,"20251209874023074105 ","202512091100300309400271089738 ",
2025/12/9 11:55,退款,汉御**店,138***@163.com,退款-【优惠价】燃气灶盖板罩厨房置物架猛火灶台加高电磁炉架子煤气灶燃气灶架托,不计收支,21.76,花呗,退款成功,"2025113022001164411433699235_3095343012656661070_advance ","T200P3095343012656661070 ",
2025/12/9 11:55,退款,百胜**店,mir***@163.com,退款-百胜狐加厚加棉马夹2025大码男士新款立领拼色时尚无袖马甲上衣冬 等多件,不计收支,91.28,花呗,退款成功,"2025120422001164411455820037_3101287693649661070_advance ","T200P3101287693648661070 ",
2025/12/8 1:00,投资理财,余额宝,cxd***@cxfund.com.cn,余额宝-自动转入,不计收支,9.9,账户余额,交易成功,"20251208019130101000410078629179 ","20251208009130501000410052204990 ",
2025/12/7 20:54,保险,国泰财产保险有限责任公司,/,保险退保-全网运费险-退保保费(20251129009010070000000000004410009731960),收入,9.9,,交易成功,"20251207821594634105 ","202512071100300904610581805746 ",
2025/12/7 12:03,餐饮美食,淘宝闪购,pin***@service.alibaba.com,超级吃货卡,支出,0.1,花呗,交易成功,"2025120722001164411408782480 ","13120600725120739392715849114 ",
2025/12/7 12:03,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,霸王茶姬安庆人民路店外卖订单,支出,13,花呗,交易成功,"2025120722001164411410615618 ","13120600725120739392714849114 ",
2025/12/7 1:07,投资理财,余额宝,cxd***@cxfund.com.cn,余额宝-自动转入,不计收支,5.4,账户余额,交易成功,"20251207019130101000410077814329 ","20251207009130501000410051770586 ",
2025/12/6 16:44,保险,国泰财产保险有限责任公司,/,保险理赔-退货宝补偿-订单号:3095343012657661070 保单号:25120163847479910072,收入,5.4,,交易成功,"20251206783057524105 ","202512061100300300720277751338 ",
2025/12/6 14:00,生活服务,杭州菜鸟供应链管理有限公司,gg4***@cainiao.com,菜鸟裹裹-寄件费_702667010_LP00780127811508,支出,4,余额宝,交易成功,"2025120623001464411404119626 ","CN_V1_602360896153230653 ",
2025/12/6 13:41,日用百货,盼夫**店,sdv***@163.com,袖套女2025新款工作防脏秋冬季套袖护袖办公室羽绒服家务干活袖头,支出,7.9,花呗,交易成功,"2025120622001164411403952069 ","T200P3105453866195661070 ",
2025/12/6 11:19,退款,百胜**店,mir***@163.com,退款-【优惠价】百胜狐加厚加棉马夹2025大码男士新款立领拼色时尚无袖马甲上衣冬,不计收支,96.7,花呗,退款成功,"2025113022001164411433759993_3095343012657661070_advance ","T200P3095343012657661070 ",
2025/12/6 0:34,医疗健康,淘宝闪购,ele***@service.aliyun.com,老百姓大药房(祥和路七街一店),支出,19.1,花呗,交易成功,"2025120622001164411405425443 ","13000600725120677659982849114 ",
2025/12/4 20:23,服饰装扮,正泰**牌,xia***@qq.com,拉夏贝尔深灰色加绒加厚毛呢半身裙女秋冬季高腰垂感a字鱼尾长裙,不计收支,83.3,,交易关闭,"2025120422001164411456220918 ","T200P3102457263443661070 ",
2025/12/4 6:35,退款,我**,121***@qq.com,退款-时髦实用 撞色格子拼接内里毛料 秋冬新款小众宽松立领加绒马甲女,不计收支,230.15,花呗,退款成功,"2025120422001164411453108581_3101287693652661070 ","T200P3101287693652661070 ",
2025/12/4 6:35,退款,百胜**店,mir***@163.com,退款-百胜狐加厚加棉马夹2025大码男士新款立领拼色时尚无袖马甲上衣冬 等多件,不计收支,231.38,花呗,退款成功,"2025120422001164411455820037_3101287693651661070 ","T200P3101287693648661070 ",
2025/12/4 6:34,家居家装,好再**货,188******42,门后挂钩竖款包包收纳悬挂式宿舍床边挂衣钩衣柜门五段多功能衣架,支出,0.01,花呗,交易成功,"2025120422001164411452294717 ","T200P3101344824918661070 ",
2025/12/4 6:34,家居家装,好再**货,188******42,门后挂钩竖款包包收纳悬挂式宿舍床边挂衣钩衣柜门五段多功能衣架,不计收支,0.01,,交易关闭,"2025120422001164411451724020 ","T200P3101290033597661070 ",
2025/12/4 6:33,家居家装,好再**货,188******42,门后挂钩竖款包包收纳悬挂式宿舍床边挂衣钩衣柜门五段多功能衣架,不计收支,2.01,,交易关闭,"2025120422001164411455691830 ","T200P3101346516498661070 ",
2025/12/4 6:28,母婴亲子,ba**店,bei***@xier-inc.com,【天猫U先】babycare婴儿湿巾纸新生手口专用宝宝儿童便携装6抽,支出,5.9,花呗,交易成功,"2025120422001164411452558121 ","T200P3101287693653661070 ",
2025/12/4 6:28,服饰装扮,我**,121***@qq.com,时髦实用 撞色格子拼接内里毛料 秋冬新款小众宽松立领加绒马甲女,支出,230.15,花呗,交易关闭,"2025120422001164411453108581 ","T200P3101287693652661070 ",
2025/12/4 6:28,服饰装扮,百胜**店,mir***@163.com,百胜狐加厚加棉马夹2025大码男士新款立领拼色时尚无袖马甲上衣冬 等多件,支出,413.94,花呗,交易成功,"2025120422001164411455820037 ","T200P3101287693648661070 ",
2025/12/3 19:20,宠物,饰宠**店,213***@qq.com,猫咪零食排毛大师云杉鱼油冻干磨牙棒即食宠物补充营养狗狗零食,支出,14.42,花呗,交易成功,"2025120322001164411453820284 ","T200P3100778617936661070 ",
2025/12/2 19:42,餐饮美食,淘宝闪购,ele***@service.aliyun.com,盒马鲜生(紫悦广场店),支出,13.6,花呗,交易成功,"2025120222001164411445868247 ","13190600725120243645680849114 ",
2025/12/2 19:22,其他,淘宝闪购,ele***@service.aliyun.com,海豚购(安庆七街店),支出,7.4,花呗,交易成功,"2025120222001164411445822177 ","13190600725120231009479849114 ",
2025/11/30 20:30,退款,tb**8,189******65,退款-巨好看的冬装一整套大码胖mm高领打底衫叠穿马甲背心半身裙三件套,不计收支,141.3,花呗,退款成功,"2025113022001164411437095307_3095343012658661070 ","T200P3095343012658661070 ",
2025/11/30 20:29,日用百货,汉御**店,138***@163.com,【优惠价】燃气灶盖板罩厨房置物架猛火灶台加高电磁炉架子煤气灶燃气灶架托,支出,21.76,花呗,交易关闭,"2025113022001164411433699235 ","T200P3095343012656661070 ",
2025/11/30 20:29,服饰装扮,百胜**店,mir***@163.com,【优惠价】百胜狐加厚加棉马夹2025大码男士新款立领拼色时尚无袖马甲上衣冬,支出,96.7,花呗,交易关闭,"2025113022001164411433759993 ","T200P3095343012657661070 ",
2025/11/30 20:29,日用百货,天**,tmc***@service.aliyun.com,高洁丝经典棉柔小Q包护垫150mm*40片无香透气姨妈巾卫生巾 等多件,支出,60.53,花呗,交易成功,"2025113022001164411436797240 ","T200P3095343012641661070 ",
2025/11/30 20:29,服饰装扮,tb**8,189******65,巨好看的冬装一整套大码胖mm高领打底衫叠穿马甲背心半身裙三件套,支出,141.3,花呗,交易关闭,"2025113022001164411437095307 ","T200P3095343012658661070 ",
2025/11/30 20:29,餐饮美食,天**,tmc***@service.aliyun.com,【包邮】小康牛肉酱220g*2瓶经典即食拌饭下饭酱调味徐州特产,支出,0,,交易成功,"2025113022001164411437167583 ","T200P3095343012654661070 ",
2025/11/30 20:29,日用百货,天**,tmc***@service.aliyun.com,【下拉享百补优惠】立白茶籽洗洁精1.45kg*2瓶装除菌强力去油,支出,0,,交易成功,"2025113022001164411437532250 ","T200P3095343012655661070 ",
2025/11/30 20:13,充值缴费,天猫超市,tmc***@service.aliyun.com,享淘卡200元面额(电子卡),支出,200,邮储银行储蓄卡(1069),交易成功,"2025113022001164411434317751 ","T200P3095316084102661070 ",
2025/11/30 16:00,保险,国泰财产保险有限责任公司,/,保险承保-自动续保-全网运费险,支出,9.9,花呗,交易成功,"20251130102553010664410064016819 ","25113063539622610461 ",
2025/11/26 17:25,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,中原大刀·肉饼·拌面·酸辣粉·面皮(回祥店搜王炸红包)外卖订单,支出,13.9,花呗,交易成功,"2025112622001164411415793110 ","13170600725112698968716849114 ",
2025/11/23 9:49,餐饮美食,安庆市宜秀区严岭生鲜经营部,/,付款码支付,支出,51.8,花呗,交易成功,"2025112322001464411452498396 ","802017052207307325102202511230949474160001 ",
2025/11/22 17:49,爱车养车,中石化安庆石油分公司,/,石化安庆石油分公司,支出,224.36,花呗,交易成功,"2025112222001464411449933038 ","542017092208872157130955410024000062511220619091 ",
2025/11/20 10:11,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|25091459225998710731|期数|202511|续期交易付款,支出,9.9,花呗,交易成功,"20251120272357854105 ","202511201100300707310092908504 ",
2025/11/19 22:15,家居家装,贝贝**巾,158***@163.com,贝贝柔洗脸巾一次性纯棉卷筒式加厚纯棉柔巾美容院专用面巾纸,支出,47.02,花呗,交易成功,"2025111922001164411428217978 ","T200P3074046889608661070 ",
2025/11/19 11:15,信用借还,花呗|信用购,/,主动还款-花呗|信用购2025年11月账单,不计收支,1537.65,徽商银行储蓄卡(1491),还款成功,"2025111929020999410110754631 "," ",
2025/11/15 21:10,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,临榆炸鸡腿(回祥路店)外卖订单,支出,8.8,花呗,交易成功,"2025111522001164411401177037 ","13210600725111564642364849114 ",
2025/11/15 18:21,餐饮美食,安庆市迎江区野妹火锅店,/,商品,支出,275,花呗,交易成功,"2025111522001464411404432136 ","0012660000482200007895089566159764 ",
2025/11/15 10:05,日用百货,新皖韵生鲜超市,/,新皖韵生鲜超市,支出,43,花呗,交易成功,"2025111522001464411451909874 ","55126600004802000020251115100517406931769518 ",
2025/11/14 20:46,家居家装,贝贝**巾,158***@163.com,贝贝柔洗脸巾一次性纯棉卷筒式加厚纯棉柔巾美容院专用面巾纸,支出,51.24,花呗,交易成功,"2025111422001164411452519436 ","T200P3063887292081661070 ",
2025/11/14 20:44,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,绝味鸭脖(安庆高铁店)外卖订单,支出,20.14,花呗,交易成功,"2025111422001164411452658096 ","13200600725111451986320849114 ",
2025/11/14 18:41,餐饮美食,萍姐炸串烧烤,132******80,收钱码收款,支出,104.5,花呗&店铺会员卡优惠,交易成功,"2025111422001464411451969755 ","47631168751602126064414 ",
2025/11/14 12:36,退款,罗蒙**店,199***@163.com,退款-【优惠价】【含绵羊毛】罗蒙男士长袖半高领针织衫2025冬季新款加绒加厚毛衣 等多件,不计收支,95.06,花呗,退款成功,"2025110822001164411416340473_3050313963513661070_239778517273667010 ","T200P3050313963511661070 ",
2025/11/14 12:36,退款,罗蒙**店,199***@163.com,退款-【优惠价】【含绵羊毛】罗蒙男士长袖半高领针织衫2025冬季新款加绒加厚毛衣 等多件,不计收支,138.43,花呗,退款成功,"2025110822001164411416340473_3050313963512661070_239778517274667010 ","T200P3050313963511661070 ",
2025/11/13 12:23,日用百货,笑笑**嘿,198***@qq.com,8层彩虹疏油抹布加厚纯棉不沾油厨房专用加厚全棉食品级洗碗布巾,支出,0.01,花呗,交易成功,"2025111322001164411450268648 ","T200P3060832512990661070 ",
2025/11/13 10:01,退款,杉杉**店,sha***@126.com,退款-【优惠价】【加绒】杉杉翻领长袖T恤男2025冬季新款中年商务保暖重磅POLO衫 等多件,不计收支,117.59,花呗,退款成功,"2025110822001164411415602362_3050313963517661070_advance ","T200P3050313963515661070 ",
2025/11/13 9:59,退款,杉杉**店,sha***@126.com,退款-【优惠价】【加绒】杉杉翻领长袖T恤男2025冬季新款中年商务保暖重磅POLO衫 等多件,不计收支,131.53,花呗,退款成功,"2025110822001164411415602362_3050313963516661070_advance ","T200P3050313963515661070 ",
2025/11/13 9:59,退款,杉杉**店,sha***@126.com,退款-【优惠价】【加绒】杉杉翻领长袖T恤男2025冬季新款中年商务保暖重磅POLO衫 等多件,不计收支,107.71,花呗,退款成功,"2025110822001164411415602362_3050313963519661070_advance ","T200P3050313963515661070 ",
2025/11/13 9:58,退款,杉杉**店,sha***@126.com,退款-【优惠价】【加绒】杉杉翻领长袖T恤男2025冬季新款中年商务保暖重磅POLO衫 等多件,不计收支,121.63,花呗,退款成功,"2025110822001164411415602362_3050313963520661070_advance ","T200P3050313963515661070 ",
2025/11/11 19:01,日用百货,妙洁**店,top***@126.com,【优惠价】妙洁一次性保鲜膜套罩400只食品级专用家用保鲜套膜袋剩菜碗罩,支出,18.4,花呗,交易成功,"2025111122001164411438578512 ","T200P3057160801661661070 ",
2025/11/10 21:39,退款,三资**店,198***@163.com,退款-【优惠价】三资堂睫毛打底膏防水纤长定型卷翘不晕染钢管睫毛膏官方旗舰店 等多件,不计收支,37,花呗分期,退款成功,"2025111022001164411430196297_3054713306726661070 ","T200P3054713306725661070 ",
2025/11/10 21:39,美容美发,欧莱**店,lrl***@loreal.com,【李佳琦直播间美妆节付定金】欧莱雅第四代小蜜罐面霜水乳*,支出,0,,支付成功,"20251110300000108764411206746500 ","T10000P3050291714046661070 ",
2025/11/10 21:39,美容美发,三资**店,198***@163.com,【优惠价】三资堂睫毛打底膏防水纤长定型卷翘不晕染钢管睫毛膏官方旗舰店 等多件,支出,37,花呗分期(24期),交易关闭,"2025111022001164411430196297 ","T200P3054713306725661070 ",
2025/11/10 21:39,餐饮美食,诺特**店,jin***@163.com,【优惠价】【直播专享】诺特兰德液体钙铁锌儿营养包官方旗舰店非童氨基丁酸,支出,143.6,花呗分期(24期),交易成功,"2025111022001164411430343906 ","T200P3054713306728661070 ",
2025/11/10 0:33,投资理财,余额宝,cxd***@cxfund.com.cn,余额宝-自动转入,不计收支,5.5,账户余额,交易成功,"20251110019130101000410055357757 ","20251110009130501000410032520106 ",
2025/11/9 13:28,商业服务,上海淘天商业管理有限公司,/,退货宝_订单号:3033725737710661070,收入,5.5,账户余额,交易成功,"BO2025110916483840310205 ","HJCAEF==500000068730107031==1532463482690010 ",
2025/11/9 12:36,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,面线时光铺(七街店)外卖订单,支出,6.69,花呗,交易成功,"2025110922001164411425673205 ","13120600725110936206760849114 ",
2025/11/9 12:05,日用百货,安庆发润家供应链有限公司,/,二维码支付,支出,45.81,花呗,交易成功,"2025110922001464411425275025 ","31P2088721085226061W03_M2503040000404072511090035568 ",
2025/11/9 1:13,投资理财,余额宝,cxd***@cxfund.com.cn,余额宝-自动转入,不计收支,5.4,账户余额,交易成功,"20251109019130101000410054651592 ","20251109009130501000410031893117 ",
2025/11/8 22:29,服饰装扮,杉杉**店,sha***@126.com,【优惠价】【加绒】杉杉翻领长袖T恤男2025冬季新款中年商务保暖重磅POLO衫 等多件,支出,633.65,花呗,交易成功,"2025110822001164411415602362 ","T200P3050313963515661070 ",
2025/11/8 22:29,服饰装扮,罗蒙**店,199***@163.com,【优惠价】【含绵羊毛】罗蒙男士长袖半高领针织衫2025冬季新款加绒加厚毛衣 等多件,支出,233.49,花呗,交易关闭,"2025110822001164411416340473 ","T200P3050313963511661070 ",
2025/11/8 22:29,其他,天**,tmc***@service.aliyun.com,elme艾美适0-6岁儿童牙膏含氟防蛀护齿进口宝宝孩童低泡温和,支出,20.58,花呗,交易成功,"2025110822001164411418862138 ","T200P3050313963521661070 ",
2025/11/8 22:29,日用百货,蓝月**店,tma***@bluemoon.com.cn,【优惠价】蓝月亮洗衣液家用薰衣草持久留香深层洁净除螨专用官方旗舰店正品,支出,108.69,花呗,交易成功,"2025110822001164411418888688 ","T200P3050313963514661070 ",
2025/11/8 21:37,美容美发,欧莱**店,lrl***@loreal.com,【李佳琦直播间美妆节付定金】欧莱雅第四代小蜜罐面霜水乳*,支出,0,,支付成功,"20251108300000008764411204244648 ","T10000P3050291714046661070 ",
2025/11/8 21:13,转账红包,购物金,lrl***@loreal.com,【购物金】充470得500/充920得1000,支出,920,花呗,交易成功,"2025110822001164411414036717 ","T200P3050174427196661070 ",
2025/11/8 21:13,转账红包,欧莱**店,/,退款-【购物金】充470得500/充920得1000,不计收支,470,花呗,退款成功,"2025110822001164411416210421*3050481036158661070_238756982926667010 ","3050481036158661070_238756982926667010 ",
2025/11/8 21:00,转账红包,购物金,lrl***@loreal.com,【购物金】充470得500/充920得1000,支出,470,花呗,交易成功,"2025110822001164411416210421 ","T200P3050481036158661070 ",
2025/11/8 20:58,转账红包,欧莱**店,/,退款-【购物金】充470得500/充920得1000,不计收支,920,花呗,退款成功,"2025110322001164411436895560*3038041920734661070_238824375618667010 ","3038041920734661070_238824375618667010 ",
2025/11/8 15:20,商业服务,上海淘天商业管理有限公司,/,退货宝_订单号:3033433167078661070,收入,5.4,账户余额,交易成功,"BO2025110803224442150205 ","HJCAEF==500000068730107031==1531695764350010 ",
2025/11/8 14:28,退款,松达**店,nix***@163.com,退款-【优惠价】松达婴儿护肤山茶油霜宝宝秋冬润肤霜儿童面霜新生儿婴幼儿保湿霜 等多件,不计收支,20.24,花呗分期,退款成功,"2025110122001164411427534912_3033725737712661070 ","T200P3033725737710661070 ",
2025/11/8 11:17,退款,雪中**店,sno***@163.com,退款-【优惠价】雪中飞2025冬新款男士V领爸爸款分格羽绒马甲无袖背心黑色大码,不计收支,98.15,花呗,退款成功,"2025110122001164411424800038_3033433167078661070_advance ","T200P3033433167078661070 ",
2025/11/7 10:58,餐饮美食,哆啦**8,139******36,贵州特产香辣脆香出门220g香酥辣椒脆麻辣贵阳油炸农家零食香脆椒,支出,8.87,花呗,交易成功,"2025110722001164411409122037 ","T200P3046756981683661070 ",
2025/11/6 10:11,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|24113041628346210934|期数|202511|续期交易付款,支出,9.9,花呗,交易成功,"20251106865100814105 ","202511061100300709340090046709 ",
2025/11/4 17:38,餐饮美食,安庆市宜秀区严岭生鲜经营部,/,付款码支付,支出,53,花呗,交易成功,"2025110422001464411449961473 ","312017052207307325102202511041738010020001 ",
2025/11/4 14:59,爱车养车,俄罗**一,182******42,汽车脚垫隐形固定贴神器卡扣防滑耐高温双面胶魔术贴车用背胶贴片,支出,0.01,余额宝,交易成功,"2025110422001164411451982362 ","T200P3040797363555661070 ",
2025/11/3 7:19,转账红包,购物金,lrl***@loreal.com,【购物金】充470得500/充920得1000,支出,920,花呗,交易成功,"2025110322001164411436895560 ","T200P3038041920734661070 ",
2025/11/1 15:39,服饰装扮,九**,lin***@msn.com,南风谷【编织旧梦】复古芥末绿钩花针织衫毛衣女秋冬立体花朵上衣,不计收支,159.1,,交易关闭,"2025110122001164411430726959 ","T200P3034386483798661070 ",
2025/11/1 12:14,医疗健康,淘宝闪购,ele***@service.aliyun.com,国胜大药房(安庆祥和路店),支出,19.41,花呗,交易成功,"2025110122001164411425282762 ","13120600725110176217843849114 ",
2025/11/1 9:38,母婴亲子,xi**2,251***@qq.com,米米哈罗女童公主裙秋冬2025新款儿童小香风连衣裙轻奢女孩礼服裙,支出,96.42,花呗分期(3期),交易成功,"2025110122001164411428123422 ","T200P3033534434474661070 ",
2025/11/1 9:26,服饰装扮,雪中**店,sno***@163.com,【优惠价】雪中飞2025冬新款男士V领爸爸款分格羽绒马甲无袖背心黑色大码,支出,98.15,花呗,交易关闭,"2025110122001164411424800038 ","T200P3033433167078661070 ",
2025/11/1 9:21,美容美发,松达**店,nix***@163.com,【优惠价】松达婴儿护肤山茶油霜宝宝秋冬润肤霜儿童面霜新生儿婴幼儿保湿霜 等多件,支出,119.56,花呗分期(3期),交易成功,"2025110122001164411427534912 ","T200P3033725737710661070 ",
2025/10/29 22:34,服饰装扮,义乌**司,c2m***@service.aliyun.com,【优惠价】韩系飘带发圈大肠蝴蝶结2025发绳高级马尾头绳少女半扎发饰秋冬发,支出,0.07,花呗,交易成功,"2025102922001164411411778834 ","T200P3029024460320661070 ",
2025/10/29 8:37,餐饮美食,早餐店铺,151******17,收钱码收款,支出,0.8,花呗,交易成功,"2025102922001464411406517050 ","47616982331602126064414 ",
2025/10/28 17:37,生活服务,杭州菜鸟供应链管理有限公司,gg4***@cainiao.com,菜鸟裹裹-寄件费_702667010_LP00770411951985,支出,4,余额宝,交易成功,"2025102822001464411400203616 ","CN_V1_602294421038710524 ",
2025/10/26 15:34,服饰装扮,fi**店,ant***@anta.com,【优惠价】易烊千玺同款FILA斐乐官方男梭织外套25冬新款时尚休闲防泼水上衣,不计收支,1213.46,,交易关闭,"2025102622001164411446931300 ","T200P3021661058457661070 ",
2025/10/25 16:55,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,宫膳煌北京片皮烤鸭(好七·七街店)外卖订单,支出,22.2,花呗,交易成功,"2025102522001164411439425827 ","13160600725102549076248849114 ",
2025/10/25 15:24,日用百货,安庆发润家供应链有限公司,/,二维码支付,支出,0.3,花呗,交易成功,"2025102522001464411438962362 ","10P2088721085226061W03_M2503040000404062510250084185 ",
2025/10/25 15:24,日用百货,安庆发润家供应链有限公司,/,二维码支付,支出,68.97,花呗,交易成功,"2025102522001464411438158367 ","31P2088721085226061W03_M2503040000404062510250083860 ",
2025/10/23 18:48,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,詹记桃酥(安庆绿地店)外卖订单,支出,20,花呗,交易成功,"2025102322001164411427223187 ","13180600725102386649828849114 ",
2025/10/20 11:42,信用借还,花呗|信用购,/,自动还款-花呗|信用购2025年10月账单,不计收支,2048.51,邮储银行储蓄卡(8719),还款成功,"2025102029020999410122346685 "," ",
2025/10/20 10:11,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|25091459225998710731|期数|202510|续期交易付款,支出,9.9,花呗,交易成功,"20251020684454284105 ","202510201100300707310083491995 ",
2025/10/19 17:23,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,三米粥铺(七街店)外卖订单,支出,12,花呗,交易成功,"2025101922001164411400818058 ","13170600725101966924742849114 ",
2025/10/19 12:27,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,萍姐炸串烧烤(好七·回祥店)外卖订单,支出,12.48,花呗,交易成功,"2025101922001164411400955816 ","13120600725101983511898849114 ",
2025/10/19 10:43,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,塔斯汀·中国汉堡(回祥路店)外卖订单,支出,27.6,花呗,交易成功,"2025101922001164411404106871 ","13100600725101934291094849114 ",
2025/10/18 14:49,日用百货,安庆市宜秀区嗨吃不够零食店,/,安庆经开区回祥小区店,支出,59.27,花呗,交易成功,"2025101822001464411457613782 ","982019011062861739002125101814493807851875 ",
2025/10/18 14:35,日用百货,小丁水果仓储批发零售,/,购买商品临时商品等,支出,22.94,花呗,交易成功,"2025101822001464411451732899 ","96126600004836000083620251018782031197 ",
2025/10/18 10:06,日用百货,新皖韵生鲜超市,/,新皖韵生鲜超市,支出,43.3,花呗,交易成功,"2025101822001464411451372147 ","18126600004802000020251018100626406639402607 ",
2025/10/18 8:42,信用借还,花呗|信用购,/,花呗|信用购主动还款,不计收支,2048.51,,还款失败,"2025101829020999410117149703 "," ",
2025/10/16 17:12,餐饮美食,霞子金赛葡萄采摘园,151******20,收钱码收款,支出,16,花呗,交易成功,"2025101622001464411438857542 ","17606059318602126064414 ",
2025/10/15 9:03,日用百货,wa**2,842***@qq.com,得力纳米净橡皮擦干净无痕学生用集屑成条无碎屑马卡龙大号橡皮擦,支出,0.01,花呗,交易成功,"2025101522001164411434733638 ","T200P2994845377445661070 ",
2025/10/14 22:32,日用百货,快乐**货,188******78,建党节建军节手摇旗小红旗2元手拿带杆包邮8号7号五星红旗小商品,支出,0.01,花呗,交易成功,"2025101422001164411431701558 ","T200P2994531133401661070 ",
2025/10/14 17:27,商业服务,山药米糕缘,155******01,收钱码收款,支出,9.9,花呗,交易成功,"2025101422001464411425448425 ","17604340268602126064414 ",
2025/10/13 8:52,日用百货,安庆市宜秀区筠霖百货商行,/,筠霖烟酒,支出,3,花呗,交易成功,"2025101322001464411412893792 ","512017052207307325100202510130852064730001 ",
2025/10/12 18:08,母婴亲子,玲姐烧饼,181******67,收钱码收款,支出,1.2,花呗,交易成功,"2025101222001464411414838425 ","17602637097602126064414 ",
2025/10/12 18:08,母婴亲子,玲姐烧饼,181******67,收钱码收款,支出,4.8,花呗,交易成功,"2025101222001464411419111825 ","17602636830602126064414 ",
2025/10/12 17:20,餐饮美食,戴大姐柳州螺蛳粉,dzp***@sina.com,经营码交易,支出,12.5,花呗,交易成功,"2025101222001464411415320948 ","17602608320602126064414 ",
2025/10/11 19:44,服饰装扮,笑笑**嘿,198***@qq.com,高品质葡萄椰椰波点电话线发圈夏天百搭发绳耐用皮筋女扎头草莓,支出,0.01,花呗,交易成功,"2025101122001164411409814310 ","T200P2988000086535661070 ",
2025/10/9 22:38,服饰装扮,林**,175***@qq.com,格雷系灰色布艺蝴蝶结印花大肠发圈女法式优雅发绳时尚高级感头绳,支出,0.01,花呗,交易成功,"2025100922001164411457249438 ","T200P2984498185118661070 ",
2025/10/8 21:25,服饰装扮,笑笑**嘿,198***@qq.com,黑色迷你刘海夹公主头小抓夹女2025年新款侧边刘海碎发夹发卡头饰,支出,0.01,花呗,交易成功,"2025100822001164411450764374 ","T200P2982097815506661070 ",
2025/10/8 18:49,餐饮美食,贺强果林超级批发行,/,【订货猿】订单号:1975876172252119040,支出,16.82,花呗&红包,交易成功,"2025100823001464411447306717 ","17126600004836000083620251008906343160 ",
2025/10/7 18:00,商业服务,**生,187******79,收钱码收款,支出,12,花呗,交易成功,"2025100723001464411440729821 ","47598312146602126064414 ",
2025/10/7 15:11,生活服务,杭州菜鸟供应链管理有限公司,gg4***@cainiao.com,菜鸟裹裹-寄件费_702667010_LP00765846537472,支出,2,余额宝,交易成功,"2025100722001464411438235006 ","CN_V1_602275754686850232 ",
2025/10/6 10:11,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|24113041628346210934|期数|202510|续期交易付款,支出,9.9,花呗,交易成功,"20251006520769094105 ","202510061100300709340081091052 ",
2025/10/6 8:56,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,82.75,花呗,交易成功,"2025100622001464411427846868 ","44126600004802000020251006085637406516628345 ",
2025/10/5 18:45,日用百货,安庆市迎江区航哥百货经营部,/,付款码支付,支出,779,花呗&碰一下立减,交易成功,"2025100522001464411429060347 ","492017052207307325102202510051845054500005 ",
2025/10/5 17:12,爱车养车,安徽省高速石化有限公司,ahg***@watch-dog.com.cn,轻-花园东,支出,247.21,花呗&碰一下立减,交易成功,"2025100522001464411428112348 ","29462510051711121266014893 ",
2025/10/5 13:58,酒店旅游,**梅,133******68,收钱码收款,支出,10,花呗,交易成功,"2025100522001464411428387837 ","47596439143602126064414 ",
2025/10/5 13:45,信用借还,哈啰好物,/,预授权解冻,不计收支,0,,解冻成功,"20251005519492734105 ","CPR251005134512434312037333S ",
2025/10/5 13:03,餐饮美食,豪达米店,137******66,收钱码收款,支出,8,花呗,交易成功,"2025100522001464411428102065 ","17596406154602126064414 ",
2025/10/5 7:50,爱车养车,哈啰好物,zij***@hellobike.com,电动车租赁费用支付,支出,56,花呗,交易成功,"2025100522001464411421779392 ","CPR251005075053690312037333G ",
2025/10/5 7:50,交通出行,上海钧哈网络科技有限公司,/,电动车租车预授权,不计收支,0,,芝麻免押下单成功,"20251005516514814105 ","CPR251005075043460312037333Y ",
2025/10/4 20:18,日用百货,语璇平价超市,/,商品,支出,10.5,花呗,交易成功,"2025100422001464411416378326 ","221266000048490000451152481662803306086481 ",
2025/10/4 15:41,酒店旅游,浮梁瓷茶古镇运营管理有限公司,/,古县衙观光车收费点-扫码支付,支出,35,花呗,交易成功,"2025100422001464411421713504 ","3920170110049699758175956369341639313281858 ",
2025/10/4 15:39,酒店旅游,同程,gao***@service.aliyun.com,高德地图景区门票订单,支出,114,花呗,交易成功,"2025100422001464411419087331 ","ZF3004641000000256316650 ",
2025/10/4 11:13,日用百货,**星,152******56,收钱码收款,支出,15,花呗,交易成功,"2025100423001464411421629360 ","47595475993602126064414 ",
2025/10/4 11:12,日用百货,**星,152******56,收钱码收款,支出,45,花呗,交易成功,"2025100423001464411421522707 ","47595475576602126064414 ",
2025/10/4 5:46,餐饮美食,马老大清真牛肉包子,152******67,经营码交易,支出,12,花呗,交易成功,"2025100422001464411419240400 ","17595279651602126064414 ",
2025/10/3 16:16,退款,义乌**司,c2m***@service.aliyun.com,退款-一次性防尘罩万能全盖松紧束口床罩装修防尘塑料膜家用家具保护膜 等多件,不计收支,4.64,花呗,退款成功,"2025100322001164411414535031_2972501220556661070 ","T200P2972501220554661070 ",
2025/10/3 16:15,家居家装,义乌**司,c2m***@service.aliyun.com,一次性防尘罩万能全盖松紧束口床罩装修防尘塑料膜家用家具保护膜 等多件,支出,20.3,花呗,交易成功,"2025100322001164411414535031 ","T200P2972501220554661070 ",
2025/10/2 15:55,其他,淘宝闪购,ele***@service.aliyun.com,江禾蔬菜,支出,12.3,花呗,交易成功,"2025100222001164411405919778 ","13150600725100210448011849114 ",
2025/10/2 1:12,投资理财,余额宝,cxd***@cxfund.com.cn,余额宝-自动转入,不计收支,26.84,账户余额,交易成功,"20251002019130101000410021820092 ","20251002009130501000410004799874 ",
2025/10/1 21:16,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,CoCo都可(苏果店)外卖订单,支出,7.9,花呗,交易成功,"2025100122001164411405321565 ","13210600725100101488528849114 ",
2025/10/1 18:15,商业服务,杭州闲鱼信息技术有限公司,xys***@service.aliyun.com,分账-基础软件服务费(2955130395908898578)扣款,支出,0.16,,交易成功,"2025100110032004420214649945 "," ",
2025/10/1 18:01,退款,ok**i,137******74,退款-特别的炸街亲子装一家三口打底衫春秋长袖上衣母女装母子高端洋气,不计收支,40.59,花呗,退款成功,"2025100122001164411401735115_2968855251637661070 ","T200P2968855251637661070 ",
2025/10/1 18:01,退款,飞利**店,ali***@jumbomart.cn,退款-[母婴认证]飞利浦轻音无雾加湿器孕妇婴儿卧室家用香薰一体HU5710,不计收支,452.96,花呗&优惠,退款成功,"2025100122001164411459797501_2968855251636661070 ","T200P2968855251636661070 ",
2025/10/1 18:01,母婴亲子,ok**i,137******74,特别的炸街亲子装一家三口打底衫春秋长袖上衣母女装母子高端洋气,支出,40.59,花呗,交易关闭,"2025100122001164411401735115 ","T200P2968855251637661070 ",
2025/10/1 18:01,餐饮美食,天**,tmc***@service.aliyun.com,【中秋送礼】伊利QQ星DHA125ml*16盒+A2&beta;酪蛋白纯牛奶125ml*16盒,支出,119.9,花呗,交易成功,"2025100122001164411402831753 ","T200P2968855251635661070 ",
2025/10/1 18:01,数码电器,飞利**店,ali***@jumbomart.cn,[母婴认证]飞利浦轻音无雾加湿器孕妇婴儿卧室家用香薰一体HU5710,支出,452.96,花呗&优惠,交易关闭,"2025100122001164411459797501 ","T200P2968855251636661070 ",
2025/9/30 20:49,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,喜姐炸串·排骨(迎江吾悦广场金街店)外卖订单,支出,12,花呗,交易成功,"2025093022001164411452618953 ","13200600725093036784282849114 ",
2025/9/28 16:30,数码电器,均昊**店,jun***@aliyun.com,【狂欢价】秋冬新款暖风机取暖器家用客厅卧室卫生间全屋大面积速热变频节能省电立式智能语控机械自动摇头定时安全保护,支出,0.97,花呗,支付成功,"20250928300000006764411235676611 ","T200P2356387683754661070 ",
2025/9/28 0:00,日用百货,达达**b,su0***@163.com,开学ins小红书同款锤子笔搞怪有趣仿真沙雕文具锤子0.5签字笔,支出,0.01,花呗,交易成功,"2025092822001164411431695312 ","T200P2961731427087661070 ",
2025/9/27 12:26,退款,摩祝**店,moz***@163.com,退款-【优惠价】黑色棒球帽女春夏季新款韩系大头围深顶宽帽檐百搭显脸小鸭舌帽男 等多件,不计收支,7.45,花呗,退款成功,"2025091422001164411400086178_2933605203624661070_advance ","T200P2933605203623661070 ",
2025/9/27 12:25,退款,摩祝**店,moz***@163.com,退款-【优惠价】黑色棒球帽女春夏季新款韩系大头围深顶宽帽檐百搭显脸小鸭舌帽男 等多件,不计收支,26.37,花呗,退款成功,"2025091422001164411400086178_2933605203625661070_advance ","T200P2933605203623661070 ",
2025/9/27 12:24,退款,tb**4,ss1***@126.com,退款-lychee帽社大头围定制CO字母棒球帽大帽檐显脸小鸭舌帽女玲珑布落 等多件,不计收支,20.93,花呗,退款成功,"2025091422001164411457511370_2933605203618661070_advance ","T200P2933605203615661070 ",
2025/9/27 10:21,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,21.5,花呗,交易成功,"2025092722001464411424804311 ","99126600004802000020250927102100406406110063 ",
2025/9/26 21:41,家居家装,帽子**馆,yik***@163.com,六爪挂钩360度旋转衣柜挂包架多功能内衣架吊带包包衣帽收纳挂勾,支出,0.01,花呗,交易成功,"2025092622001164411426867688 ","T200P2959301391640661070 ",
2025/9/24 21:49,收入,****萍,188******45,超级软弹电动车前置儿童座椅电瓶车宝宝安全坐骑踏板车可调节椅子,收入,27,,交易成功,"2025092422001159421416474794 ","T200P2955130395908898578 ",
2025/9/24 18:21,日用百货,淘宝闪购,ele***@service.aliyun.com,大润发(皖江店),支出,61.9,花呗,交易成功,"2025092422001164411410210217 ","13180600725092429819172849114 ",
2025/9/24 16:36,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,今卤坊·卤味卤菜烤鸭饭(安庆店)外卖订单,支出,32.8,花呗,交易成功,"2025092422001164411410502776 ","13160600725092454470260849114 ",
2025/9/24 16:35,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,退款-今卤坊·卤味卤菜烤鸭饭(安庆店)外卖订单,不计收支,32.8,花呗,退款成功,"2025092422001164411409452067_13160601325092459769350849114 ","13160600725092471628102849114 ",
2025/9/24 16:33,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,今卤坊·卤味卤菜烤鸭饭(安庆店)外卖订单,支出,32.8,花呗,交易关闭,"2025092422001164411409452067 ","13160600725092471628102849114 ",
2025/9/23 22:22,日用百货,达达**b,su0***@163.com,开学ins小红书同款锤子笔搞怪有趣仿真沙雕文具锤子0.5签字笔,支出,0.01,花呗,交易成功,"2025092322001164411403463116 ","T200P2953561764151661070 ",
2025/9/22 23:06,日用百货,雅**,134******58,得力橡皮擦纳米净小学生专用无屑超干净不留痕幼儿园专用铅笔橡皮,支出,0.01,花呗,交易成功,"2025092222001164411453474627 ","T200P2951352229891661070 ",
2025/9/21 17:39,餐饮美食,何记板栗,158******81,收钱码收款,支出,10,花呗,交易成功,"2025092122001464411447818623 ","17584475637602126064414 ",
2025/9/21 17:37,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,44.4,花呗,交易成功,"2025092122001464411445168543 ","93126600004802000020250921173737406351098733 ",
2025/9/21 16:59,服饰装扮,帽子**馆,yik***@163.com,一字夹刘海发夹头饰懒人编发神器碎发边夹女侧边鸭嘴夹子前额发卡,支出,0.01,花呗,交易成功,"2025092122001164411449300550 ","T200P2948237259412661070 ",
2025/9/21 12:23,退款,tb**4,ss1***@126.com,退款-lychee帽社大头围定制CO字母棒球帽大帽檐显脸小鸭舌帽女玲珑布落 等多件,不计收支,14.07,花呗,退款成功,"2025091422001164411457511370_2933605203616661070_230746911548667010 ","T200P2933605203615661070 ",
2025/9/21 12:23,退款,tb**4,ss1***@126.com,退款-lychee帽社大头围定制CO字母棒球帽大帽檐显脸小鸭舌帽女玲珑布落 等多件,不计收支,16.68,花呗,退款成功,"2025091422001164411457511370_2933605203617661070_230708928501667010 ","T200P2933605203615661070 ",
2025/9/21 12:23,退款,tb**4,ss1***@126.com,退款-lychee帽社大头围定制CO字母棒球帽大帽檐显脸小鸭舌帽女玲珑布落 等多件,不计收支,14.07,花呗,退款成功,"2025091422001164411457511370_2933605203619661070_230691002126667010 ","T200P2933605203615661070 ",
2025/9/21 12:22,退款,tb**4,ss1***@126.com,退款-lychee帽社大头围定制CO字母棒球帽大帽檐显脸小鸭舌帽女玲珑布落 等多件,不计收支,14.07,花呗,退款成功,"2025091422001164411457511370_2933605203620661070_230915929956667010 ","T200P2933605203615661070 ",
2025/9/21 12:22,退款,tb**4,ss1***@126.com,退款-lychee帽社大头围定制CO字母棒球帽大帽檐显脸小鸭舌帽女玲珑布落 等多件,不计收支,16.68,花呗,退款成功,"2025091422001164411457511370_2933605203621661070_230916685614667010 ","T200P2933605203615661070 ",
2025/9/19 19:50,服饰装扮,老兵**1,130***@163.com,法式缎面仿真丝发圈高级复古纯色大肠圈扎马尾发绳头花韩款发饰女,支出,0.01,花呗,交易成功,"2025091922001164411437311265 ","T200P2944326865266661070 ",
2025/9/19 11:57,信用借还,花呗|信用购,/,主动还款-花呗|信用购2025年09月账单,不计收支,7281.02,徽商银行储蓄卡(1491)&花呗还款立减,还款成功,"2025091929020999410134109500 "," ",
2025/9/18 16:54,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,萍姐炸串烧烤(好七·回祥店)外卖订单,支出,10.49,花呗,交易成功,"2025091822001164411427713025 ","13160600725091879321002849114 ",
2025/9/16 17:07,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,5.3,花呗,交易成功,"2025091622001464411413560577 ","01126600004802000020250916170758406295854066 ",
2025/9/15 22:33,服饰装扮,tb**8,130******32,韩国可爱小苹果刘海发夹碎发卡安可拉红高颜值侧边一字夹子发饰品,支出,0.01,余额宝,交易成功,"2025091522001164411412047270 ","T200P2936326260376661070 ",
2025/9/14 19:41,退款,大城**4,210***@qq.com,退款-「北岛AMUU原创」蓝色松紧腰a字半身裙女秋季新款百搭抽绳中长裙,不计收支,137.01,花呗,退款成功,"2025091422001164411456524388_2933605203622661070 ","T200P2933605203622661070 ",
2025/9/14 19:41,服饰装扮,摩祝**店,moz***@163.com,【优惠价】黑色棒球帽女春夏季新款韩系大头围深顶宽帽檐百搭显脸小鸭舌帽男 等多件,支出,33.82,花呗,交易关闭,"2025091422001164411400086178 ","T200P2933605203623661070 ",
2025/9/14 19:41,服饰装扮,大城**4,210***@qq.com,「北岛AMUU原创」蓝色松紧腰a字半身裙女秋季新款百搭抽绳中长裙,支出,137.01,花呗,交易关闭,"2025091422001164411456524388 ","T200P2933605203622661070 ",
2025/9/14 19:41,服饰装扮,tb**4,ss1***@126.com,lychee帽社大头围定制CO字母棒球帽大帽檐显脸小鸭舌帽女玲珑布落 等多件,支出,96.5,花呗,交易关闭,"2025091422001164411457511370 ","T200P2933605203615661070 ",
2025/9/14 15:18,保险,国泰财产保险有限责任公司,/,保险承保-自动续保-全网运费险,支出,9.9,花呗,交易成功,"20250914102553010664410023715520 ","25091459225998710731 ",
2025/9/14 11:19,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,13.8,花呗,交易成功,"2025091422001464411457217255 ","86126600004802000020250914111916406270710194 ",
2025/9/14 11:07,餐饮美食,卖鸡店,147******70,收钱码收款,支出,27,花呗,交易成功,"2025091422001464411459355497 ","17578192307602126064414 ",
2025/9/13 17:24,餐饮美食,米花糖,151******88,收钱码收款,支出,11,花呗,交易成功,"2025091322001464411447102862 ","17577554567602126064414 ",
2025/9/12 21:43,爱车养车,中国石油安庆大桥加油站,zha***@petrochina.com.cn,中国石油-条码支付,支出,251,花呗,交易成功,"2025091222001464411446847800 ","17576845937663424153 ",
2025/9/11 21:03,餐饮美食,扫码点单店主,181******36,收钱码收款,支出,8,花呗,交易成功,"2025091122001464411440951067 ","17575958214602126064414 ",
2025/9/11 20:20,服饰装扮,tb**8,130******32,韩国可爱小苹果刘海发夹碎发卡安可拉红高颜值侧边一字夹子发饰品,支出,0.01,余额宝,交易成功,"2025091122001164411440726863 ","T200P2926947144962661070 ",
2025/9/10 12:05,家居家装,安居**e,bet***@sina.cn,一次性床罩松紧束口沙发盖布防尘罩家具防尘膜塑料罩婴儿床罩宿舍,支出,3.48,花呗,交易成功,"2025091022001164411429151759 ","T200P2923436427259661070 ",
2025/9/9 17:23,餐饮美食,莹莹果铺,/,莹莹果铺收款,支出,16.7,花呗,交易成功,"2025090922001464411426274146 ","0312660000489000000000725123525252 ",
2025/9/7 23:02,日用百货,tb**7,192******58,高颅顶固定前额刘海卷发筒发夹无痕发根夹头发蓬松神器发根蓬松夹,支出,0.01,花呗,交易成功,"2025090722001164411416939605 ","T200P2918413705448661070 ",
2025/9/7 19:53,转账红包,杨轩(杨轩),187******89,转账,支出,100,邮储银行储蓄卡(8719),交易成功,"20250907200040011100410056995209 "," ",
2025/9/7 14:46,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,詹记桃酥(安庆弘阳广场店)外卖订单,支出,23,花呗,交易成功,"2025090722001164411414917221 ","13140600725090723499305849114 ",
2025/9/6 22:47,服饰装扮,平**,fux***@163.com,高弹简约森系网纱大肠发圈发绳高级感扎头绳皮筋优雅百搭发绳发饰,支出,0.07,花呗,交易成功,"2025090622001164411408941187 ","T200P2915998646953661070 ",
2025/9/6 22:47,服饰装扮,平**,fux***@163.com,高弹简约森系网纱大肠发圈发绳高级感扎头绳皮筋优雅百搭发绳发饰,不计收支,2.07,,交易关闭,"2025090622001164411408534532 ","T200P2916000842727661070 ",
2025/9/6 19:29,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,詹记桃酥(安庆弘阳广场店)外卖订单,支出,22.6,花呗,交易成功,"2025090622001164411408484869 ","13190600725090668235487849114 ",
2025/9/6 16:36,日用百货,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,27.2,花呗,交易成功,"2025090622001464411407221931 ","01126600004802000020250906163645406190821514 ",
2025/9/6 16:24,餐饮美食,卖鸡店,147******70,收钱码收款,支出,31,花呗,交易成功,"2025090622001464411405588441 ","17571470402602126064414 ",
2025/9/6 10:10,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|24113041628346210934|期数|202509|续期交易付款,支出,9.9,花呗,交易成功,"20250906192285264105 ","202509061100300709340071866812 ",
2025/9/6 9:37,日用百货,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,6.1,花呗,交易成功,"2025090622001464411400871291 ","24126600004802000020250906093726406185146243 ",
2025/9/6 6:58,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,卢记鸡蛋煎饼·油炸(好七·店)外卖订单,支出,6.1,花呗,交易成功,"2025090622001164411405360740 ","13060600725090618542670849114 ",
2025/9/4 21:56,服饰装扮,笑笑**嘿,198***@qq.com,发夹波浪侧边两件套一字糖果金属镂空碎发发卡刘海鸭嘴发饰头饰,支出,0.01,花呗,交易成功,"2025090422001164411455194245 ","T200P2911475856679661070 ",
2025/9/3 17:18,餐饮美食,沉默,158******27,收钱码收款,支出,3,花呗,交易成功,"2025090322001464411452623873 ","47568910927602126064414 ",
2025/9/3 11:06,家居家装,tb**6,131******71,不锈钢晒鞋架阳台窗台防风挂晾鞋架子加粗晒鞋神器免打孔多功能 等多件,支出,0.01,花呗,交易成功,"2025090322001164411451514276 ","T200P2908872014430661070 ",
2025/9/2 18:57,医疗健康,淘宝闪购,ele***@service.aliyun.com,春源大药房(朝阳路店),支出,33.5,花呗,交易成功,"2025090222001164411448072589 ","13180600725090227229751849114 ",
2025/9/2 17:51,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,爷爷家|现炒小碗菜(七街店)外卖订单,支出,13,花呗,交易成功,"2025090222001164411447539090 ","13170600725090269881361849114 ",
2025/9/2 17:43,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,Biangbiang面油泼面(好七·七街店)外卖订单,支出,6.8,花呗,交易成功,"2025090222001164411446762288 ","13170600725090242436637849114 ",
2025/9/2 17:32,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,桂林米粉(七街店)外卖订单,支出,10.49,花呗,交易成功,"2025090222001164411447630047 ","13170600725090234027419849114 ",
2025/9/1 21:45,服饰装扮,平**,fux***@163.com,简约化妆发夹无痕鸭嘴夹刘海夹前额碎发整理神器洗脸一字夹侧边夹,支出,0.01,花呗,交易成功,"2025090122001164411443018315 ","T200P2906861089386661070 ",
2025/9/1 11:56,服饰装扮,尚轩**店,301***@qq.com,白鹿同款发夹碎发小夹子女侧边发卡头发迷你黑色小抓夹小号刘海夹,不计收支,1.8,,交易关闭,"2025090122001164411443755732 ","T200P2905985893944661070 ",
2025/9/1 11:51,服饰装扮,义乌**行,c2m***@service.aliyun.com,侧边公主头小抓夹女前额黑色碎发刘海夹迷你发夹小号发卡夹子头饰,不计收支,1.98,,交易关闭,"2025090122001164411441493330 ","T200P2905845135489661070 ",
2025/8/31 20:34,教育培训,安庆市宜秀区新星幼教中心,/,安庆市宜秀区新星幼教中心,支出,4500,江苏银行信用购,交易成功,"2025083122001464411437897961 ","652017052207307325100202508312033473400001 ",
2025/8/31 20:06,日用百货,安庆发润家供应链有限公司,/,二维码支付,支出,17.99,花呗&红包,交易成功,"2025083122001464411441271581 ","10P2088721085226061W03_M2503040000404102508310403873 ",
2025/8/31 11:54,家居家装,贝贝**巾,158***@163.com,贝贝柔洗脸巾一次性纯棉卷筒式加厚纯棉柔巾美容院专用面巾纸,支出,27.21,花呗,交易成功,"2025083122001164411439992481 ","T200P2904413772035661070 ",
2025/8/30 21:20,家居家装,贝贝**巾,158***@163.com,贝贝柔洗脸巾一次性纯棉卷筒式加厚纯棉柔巾美容院专用面巾纸,支出,24.21,花呗,交易成功,"2025083022001164411435886285 ","T200P2903663857817661070 ",
2025/8/30 21:17,其他,阿里**P,p-s***@service.taobao.com,88VIP购物卡年卡,支出,88,花呗,交易成功,"2025083022001364411434493164 ","T3901P2903625158406661070 ",
2025/8/30 17:09,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,7饭时间-土菜馆(好七·店)外卖订单,支出,9.5,花呗,交易成功,"2025083022001164411435789913 ","13170600725083070037786849114 ",
2025/8/30 16:51,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,小高米线(七街店搜王炸红包)外卖订单,支出,6.9,花呗,交易成功,"2025083022001164411434493141 ","13160600725083035874546849114 ",
2025/8/30 9:04,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,山东五谷杂粮煎餅(好七·店)外卖订单,支出,7.38,花呗,交易成功,"2025083022001164411434803327 ","13090600725083077774523849114 ",
2025/8/27 10:46,日用百货,安庆发润家供应链有限公司,/,二维码支付,支出,46.79,花呗,交易成功,"2025082722001464411424224643 ","20P2088721085226061W03_M2503040000404102508270174572 ",
2025/8/26 21:10,生活服务,享充云,/,充电充值,用户:34967278流水号:337572782,支出,2,花呗,交易成功,"2025082622001464411420510138 ","84126600004823000003232508267621881608697 ",
2025/8/25 7:03,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,16.8,花呗&红包,交易成功,"2025082522001464411412653900 ","84126600004802000020250825070341406059435819 ",
2025/8/24 21:15,日用百货,零食伴友安庆市宜秀区裕轩零食店,/,支付-金桂丽园店,支出,14.9,花呗,交易成功,"2025082422001464411411766126 ","88126600004823000003232508247654574308402 ",
2025/8/24 17:03,日用百货,发润家弘阳广场店,/,条码支付-发润家弘阳店-M2502960000707032508240326418,支出,80.39,花呗,交易成功,"2025082422001464411412080291 ","141266000048490000421149500276137541632045 ",
2025/8/23 18:34,餐饮美食,萍姐火锅·公路夜市(安庆店),/,美团收银909700203626730104,支出,91,花呗,交易成功,"2025082322001464411409269808 ","5220180330024764010461368606020941548405382 ",
2025/8/23 10:38,日用百货,安庆发润家供应链有限公司,/,二维码支付,支出,36.79,花呗,交易成功,"2025082322001464411405186408 ","30P2088721085226061W03_M2503040000404102508230190565 ",
2025/8/22 20:21,生活服务,**瑜,138******91,收钱码收款,支出,3,花呗,交易成功,"2025082222001464411406938283 ","17558653002602126064414 ",
2025/8/22 9:23,日用百货,抖音电商商家,shg***@bytedance.com,抖音电商-多笔订单6920878074484391060等,支出,30.7,花呗,交易成功,"2025082222001464411403577376 ","2001052508220200454037985861 ",
2025/8/20 17:38,餐饮美食,赵一鸣零食安徽安庆七街店,/,二维码支付,支出,9,花呗,交易成功,"2025082022001464411453745948 ","10P2088721085226061W03_S214H0003125082001910010511 ",
2025/8/20 17:28,餐饮美食,苏家顺,156******00,收钱码收款,支出,22,花呗,交易成功,"2025082022001464411455706111 ","17556821074602126064414 ",
2025/8/20 10:18,交通出行,南京地铁运营有限责任公司,njd***@njmetro.com.cn,南京地铁(天隆寺2025-08-17 11:41:45--南京南站2025-08-17 12:41:45),支出,3,花呗,交易成功,"2025082022001464411454060339 ","T000002034119250817114145697747 ",
2025/8/20 10:10,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|24091436888345010109|期数|202508|续期交易付款,支出,9.9,花呗,交易成功,"20250820002727644105 ","202508201100300701090077565514 ",
2025/8/20 8:44,日用百货,安庆市宜家鲜购超市,/,付款码支付,支出,28.1,花呗,交易成功,"2025082022001464411452599439 ","552017052207307325102202508200844110590007 ",
2025/8/19 12:27,信用借还,花呗|信用购,/,主动还款-花呗|信用购2025年08月账单,不计收支,2309.74,徽商银行储蓄卡(1491)&花呗还款立减,还款成功,"2025081929020999410140574095 "," ",
2025/8/17 11:09,交通出行,南京地铁运营有限责任公司,njd***@njmetro.com.cn,南京地铁(南京站2025-08-17 10:39:48--天隆寺2025-08-17 11:08:52),支出,4,花呗,交易成功,"2025081722001464411441966528 ","T000002011402250817103948923181 ",
2025/8/16 22:31,交通出行,铁路12306,chi***@alipay.com,火车票,支出,190,花呗,交易成功,"2025081622001464411440281874 ","M20250816261900394 ",
2025/8/16 18:18,转账红包,吾王称乙,130******71,收款,支出,50,邮储银行储蓄卡(8719),交易成功,"20250816200040011100410044920228 "," ",
2025/8/16 18:17,退款,智行火车票机票蒜芽,pay***@suanya.cn,退款-火车|沈阳北-南京|1130338074234733,不计收支,361,江苏银行信用购,退款成功,"2025081622001464411436645670_20250816537751352 ","1130338074234733-3468397516 ",
2025/8/16 18:02,退款,驰行天下票务专营店,asl***@service.taobao.com,退款-火车票在线换座,不计收支,36,江苏银行信用购,退款成功,"2025081522001164411436344603_2879768568797661070 ","T200P2879768568797661070 ",
2025/8/16 18:02,退款,阿斯兰票务专营店,tho***@service.aliyun.com,退款-火车票改签新票差额,不计收支,1083,江苏银行信用购,退款成功,"2025081522001164411436083513_2879768568796661070_225845906481667010 ","T6800P2879768568796661070 ",
2025/8/16 15:17,母婴亲子,鑫鑫宝贝便利店,139******81,收钱码收款,支出,390,邮储银行储蓄卡(8719),交易成功,"2025081622001464411438768265 ","17553286439602126064414 ",
2025/8/16 9:29,生活服务,杭州菜鸟供应链管理有限公司,gg4***@cainiao.com,菜鸟裹裹-寄件费_702667010_LP00754366137571,支出,32,余额宝,交易成功,"2025081622001464411438211561 ","CN_V1_602182105436430503 ",
2025/8/16 5:59,交通出行,智行火车票机票蒜芽,pay***@suanya.cn,火车|沈阳北-南京|1130338074234733,支出,361,江苏银行信用购,交易关闭,"2025081622001464411436645670 ","1130338074234733-3468397516 ",
2025/8/16 5:58,退款,智行火车票机票蒜芽,pay***@suanya.cn,退款-火车|沈阳北-南京|1130338074225588,不计收支,1083,江苏银行信用购,退款成功,"2025081622001464411437975853_20250816537462748 ","1130338074225588-3468395789 ",
2025/8/16 5:55,交通出行,智行火车票机票蒜芽,pay***@suanya.cn,火车|沈阳北-南京|1130338074225588,支出,1083,江苏银行信用购,交易关闭,"2025081622001464411437975853 ","1130338074225588-3468395789 ",
2025/8/15 21:01,交通出行,沈阳地铁科技有限公司,out***@symetrotech.com,沈阳地铁-乘车(中街-浑河站-2025-08-15 21:01:00),支出,5,花呗,交易成功,"2025081522001464411436271720 ","IAGM20250815210104m21unxf2z0hhqx ",
2025/8/15 20:20,交通出行,阿斯兰票务专营店,tho***@service.aliyun.com,火车票改签新票差额,支出,1083,江苏银行信用购,交易关闭,"2025081522001164411436083513 ","T6800P2879768568796661070 ",
2025/8/15 20:20,交通出行,驰行天下票务专营店,asl***@service.taobao.com,火车票在线换座,支出,36,江苏银行信用购,交易关闭,"2025081522001164411436344603 ","T200P2879768568797661070 ",
2025/8/15 18:11,交通出行,沈阳地铁科技有限公司,out***@symetrotech.com,沈阳地铁-乘车(浑河站-中街-2025-08-15 18:11:26),支出,5,花呗,交易成功,"2025081522001464411434192622 ","IAGM202508151811319gzoawmatv3nkj ",
2025/8/15 12:55,交通出行,铁路12306,chi***@alipay.com,退款-火车票,不计收支,72,江苏银行信用购,退款成功,"2025081322001464411428939197_M2025081517031487 ","M2025081394500542 ",
2025/8/15 11:09,生活服务,伊辉朋,150******12,收钱码收款,支出,150,花呗,交易成功,"2025081522001464411430645253 ","17552273559602126064414 ",
2025/8/14 18:11,餐饮美食,沈阳市浑南区琥珀狼头山火锅店,/,沈阳市浑南区琥珀狼头山火锅店扫码收款,支出,270,花呗,交易成功,"2025081422001464411429712119 ","10126600004822000020250814110113230166201966602877 ",
2025/8/13 17:17,交通出行,铁路12306,chi***@alipay.com,火车票,支出,1083,江苏银行信用购,交易成功,"2025081322001464411428939197 ","M2025081394500542 ",
2025/8/13 8:22,交通出行,铁路12306,chi***@alipay.com,退款-火车票,不计收支,388,江苏银行信用购,退款成功,"2025081222001464411423718207_M2025081387853608 ","M2025081285799532 ",
2025/8/13 7:01,交通出行,铁路12306,chi***@alipay.com,退款-火车票,不计收支,397,江苏银行信用购,退款成功,"2025081222001464411425167393_M2025081387230166 ","M20250812236916005 ",
2025/8/13 4:13,退款,阿斯兰票务专营店,tho***@service.aliyun.com,退款-抢票差额补款费用,不计收支,317.5,花呗,退款成功,"2025081222001164411423403919_2875264251048661070_225442416660667010 ","T6800P2875264251048661070 ",
2025/8/13 4:13,退款,阿斯**店,tho***@service.aliyun.com,退款-南京到沈阳北的火车票,不计收支,346,花呗,退款成功,"2025081222001164411423551503_2875185588412661070_225445692035667010 ","T6800P2875185588412661070 ",
2025/8/13 4:13,退款,驰行天下票务专营店,asl***@service.taobao.com,退款-飞猪预约购票权益套餐,不计收支,20,花呗,退款成功,"2025081222001164411423571488_2875543320857661070 ","T200P2875543320857661070 ",
2025/8/13 4:13,退款,飞猪机票官方旗舰店,asl***@service.taobao.com,退款-专人抢,不计收支,25,花呗,退款成功,"2025081222001164411424928646_2875163305420661070 ","T200P2875163305420661070 ",
2025/8/12 23:08,交通出行,铁路12306,chi***@alipay.com,退款-火车票,不计收支,361,江苏银行信用购,退款成功,"2025081222001464411423453052_M2025081286407038 ","M2025081285556350 ",
2025/8/12 22:37,交通出行,铁路12306,chi***@alipay.com,退款-火车票,不计收支,14,江苏银行信用购,退款成功,"2025081222001464411423013226_M2025081286124323 ","M2025081285764536 ",
2025/8/12 22:05,交通出行,铁路12306,chi***@alipay.com,火车票,支出,388,江苏银行信用购,交易关闭,"2025081222001464411423718207 ","M2025081285799532 ",
2025/8/12 22:04,交通出行,铁路12306,chi***@alipay.com,火车票,支出,397,江苏银行信用购,交易关闭,"2025081222001464411425167393 ","M20250812236916005 ",
2025/8/12 22:01,交通出行,铁路12306,chi***@alipay.com,火车票,支出,407,江苏银行信用购,交易成功,"2025081222001464411423013226 ","M2025081285764536 ",
2025/8/12 21:43,交通出行,驰行天下票务专营店,asl***@service.taobao.com,飞猪预约购票权益套餐,支出,20,花呗,交易关闭,"2025081222001164411423571488 ","T200P2875543320857661070 ",
2025/8/12 21:42,交通出行,驰行天下票务专营店,asl***@service.taobao.com,飞猪预约购票权益套餐,不计收支,20,,交易关闭,"2025081222001164411423514700 ","T200P2875489465746661070 ",
2025/8/12 21:42,交通出行,铁路12306,chi***@alipay.com,火车票,支出,361,江苏银行信用购,交易关闭,"2025081222001464411423453052 ","M2025081285556350 ",
2025/8/12 19:50,交通出行,阿斯兰票务专营店,tho***@service.aliyun.com,抢票差额补款费用,支出,317.5,花呗,交易关闭,"2025081222001164411423403919 ","T6800P2875264251048661070 ",
2025/8/12 17:50,交通出行,飞猪机票官方旗舰店,asl***@service.taobao.com,专人抢,支出,25,花呗,交易关闭,"2025081222001164411424928646 ","T200P2875163305420661070 ",
2025/8/12 17:47,交通出行,驰行天下票务专营店,asl***@service.taobao.com,飞猪预约购票权益套餐,不计收支,20,,交易关闭,"2025081222001164411422978353 ","T200P2875180082646661070 ",
2025/8/12 17:24,交通出行,阿斯**店,tho***@service.aliyun.com,南京到沈阳北的火车票,支出,346,花呗,交易关闭,"2025081222001164411423551503 ","T6800P2875185588412661070 ",
2025/8/12 10:09,餐饮美食,美团,zxp***@meituan.com,北陵公园-美团App-25081211100400001302748752525949,支出,20,花呗,交易成功,"2025081222001464411421182942 ","20250812100925U91981556572754504 ",
2025/8/9 13:12,餐饮美食,沈阳市沈河区铁板油炸餐饮经营店,/,沈阳市沈河区铁板油炸餐饮经营店,支出,15,花呗,交易成功,"2025080922001464411410244886 ","992017052507338883ZPZ908650027830485509131225 ",
2025/8/8 19:49,医疗健康,鑫荣大药房,151******00,收钱码收款,支出,10,花呗,交易成功,"2025080822001464411409682399 ","17546537786602126064414 ",
2025/8/7 16:12,餐饮美食,上海新上铁实业发展集团有限公司,xin***@aliyun.com,NJZ南京回味鸭血粉丝汤店,支出,40,花呗,交易成功,"2025080722001464411403287527 ","25080716121731113347492848160769 ",
2025/8/7 14:52,交通出行,南京地铁运营有限责任公司,njd***@njmetro.com.cn,南京地铁(南京南站2025-08-07 14:15:35--南京站2025-08-07 14:51:50),支出,5,花呗,交易成功,"2025080722001464411405576630 ","T000002034408250807141535578520 ",
2025/8/7 10:46,餐饮美食,安庆麦陇香食品股份有限公司,/,安庆麦陇香食品股份有限公司,支出,13.86,花呗,交易成功,"2025080722001464411401829101 ","58126600004802000020250807104640405863565796 ",
2025/8/7 8:49,日用百货,零食伴友安庆市宜秀区裕轩零食店,/,支付-金桂丽园店,支出,10.46,花呗,交易成功,"2025080722001464411401441431 ","33126600004823000003242508073174744411949 ",
2025/8/6 17:35,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,这一碗·川湘小碗菜(七街店)外卖订单,支出,7.8,花呗,交易成功,"2025080622001164411402371223 ","13170600725080675560666849114 ",
2025/8/6 13:22,交通出行,铁路12306,chi***@alipay.com,火车票,支出,315,花呗,交易成功,"2025080622001464411459853677 ","M2025080627389199 ",
2025/8/6 13:09,交通出行,铁路12306,chi***@alipay.com,退款-火车票,不计收支,1083,花呗,退款成功,"2025080522001464411452772510_M20250806278633904 ","M2025080516710606 ",
2025/8/6 12:07,退款,江苏**务,/,退款-合肥到苏家屯的火车票,不计收支,335.5,江苏银行信用购,退款成功,"2025080622001164411458286450*2864736949067661070_224497058843667010 ","2864736949067661070_224497058843667010 ",
2025/8/6 11:50,退款,江苏**务,/,退款-合肥到苏家屯的火车票,不计收支,335.5,江苏银行信用购,退款成功,"2025080622001164411458286450*2864736949067661070_224535468199667010 ","2864736949067661070_224535468199667010 ",
2025/8/6 11:46,退款,江苏**务,/,退款-合肥到苏家屯的火车票,不计收支,335.5,江苏银行信用购,退款成功,"2025080622001164411458286450*2864736949067661070_224744269273667010 ","2864736949067661070_224744269273667010 ",
2025/8/6 11:31,退款,驰行**店,asl***@service.taobao.com,退款-专人定制下铺,不计收支,45,江苏银行信用购,退款成功,"2025080622001164411457870529_2864736949068661070 ","T200P2864736949068661070 ",
2025/8/6 11:30,退款,江苏**务,623***@qq.com,退款-合肥到苏家屯的火车票,不计收支,72,江苏银行信用购,退款成功,"2025080622001164411458286450_2864736949067661070_224492270956667010 ","T6800P2864736949067661070 ",
2025/8/6 11:28,交通出行,驰行**店,asl***@service.taobao.com,专人定制下铺,支出,45,江苏银行信用购,交易关闭,"2025080622001164411457870529 ","T200P2864736949068661070 ",
2025/8/6 11:28,交通出行,江苏**务,623***@qq.com,合肥到苏家屯的火车票,支出,1131,江苏银行信用购,交易成功,"2025080622001164411458286450 ","T6800P2864736949067661070 ",
2025/8/6 10:43,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,4.2,花呗,交易成功,"2025080622001464411456138674 ","90126600004802000020250806104310405853248200 ",
2025/8/6 10:11,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|24113041628346210934|期数|202508|续期交易付款,支出,9.9,花呗,交易成功,"20250806838313254105 ","202508061100300709340062693907 ",
2025/8/5 8:46,交通出行,铁路12306,chi***@alipay.com,火车票,支出,1083,花呗分期(3期),交易关闭,"2025080522001464411452772510 ","M2025080516710606 ",
2025/8/3 9:38,日用百货,安庆市沪超比那多超市,/,3.01739E+29,支出,31.9,花呗,交易成功,"2025080322001464411445839708 ","0312660000489000009000071080125215 ",
2025/8/2 17:34,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,安庆程记烤鸭(好七·店)外卖订单,支出,14.5,花呗,交易成功,"2025080222001164411445521173 ","13170600725080245520716849114 ",
2025/8/2 15:47,爱车养车,安徽省高速石化有限公司,ahg***@watch-dog.com.cn,非-顺安北,支出,120,花呗,交易成功,"2025080222001464411442335259 ","288420250802154649623 ",
2025/8/2 15:47,爱车养车,安徽省高速石化有限公司,ahg***@watch-dog.com.cn,轻-顺安北,支出,244,花呗&碰一下立减,交易成功,"2025080222001464411442990242 ","28842508021546201048382683 ",
2025/8/2 11:00,日用百货,x***3,147******51,南京山姆雨花台区带进店+代结账服务,每天在店,带你入,自己逛,支出,7.76,花呗,交易成功,"2025080222001164411443300849 ","T200P2858904552646661070 ",
2025/8/1 18:21,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,苏客饭堂(郁金香路店)外卖订单,支出,14.3,花呗,交易成功,"2025080122001164411441764978 ","13180600725080137233028849114 ",
2025/7/31 21:32,日用百货,d***o,l_d***@163.com,咖宝重装巨人和特警巨人,还有几个名创买的单独的,就是图片这些,支出,70,邮储银行储蓄卡(8719),交易成功,"2025073122001164411439504431 ","T200P2856979994823661070 ",
2025/7/31 18:25,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,百川记·川味凉拌菜外卖订单,支出,12.3,花呗,交易成功,"2025073122001164411436083390 ","13180600725073193907600849114 ",
2025/7/31 12:22,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,正宗淮南牛肉汤(托乐嘉店)外卖订单,支出,8.08,花呗,交易成功,"2025073122001164411435356825 ","13120600725073109729032849114 ",
2025/7/30 19:41,餐饮美食,开心果园景明佳园店,/,购买商品香焦等,支出,3.1,花呗,交易成功,"2025073022001464411430975205 ","29126600004836000083620250730684658240 ",
2025/7/30 19:34,日用百货,雨花台区梓封百货店(个体工商户),/,南京雨花台区景明佳园店,支出,40.47,花呗,交易成功,"2025073022001464411431170734 ","952019011062861739002125073019340101290641 ",
2025/7/30 11:26,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,拌将麻辣拌·麻辣烫(软件大道店)外卖订单,支出,10.3,花呗,交易成功,"2025073022001164411431284201 ","13110600725073036572316849114 ",
2025/7/30 11:18,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,永和大王·现磨豆浆·卤肉饭·早餐粥·盖浇饭(雨花世茂NJ024店)外卖订单,支出,7.7,花呗,交易成功,"2025073022001164411430425548 ","13110600725073058553362849114 ",
2025/7/29 17:42,日用百货,顺星便利店,/,顺星便利店,支出,8,花呗,交易成功,"2025072922001464411428082020 ","8612660000482200007895006663265295 ",
2025/7/29 17:00,交通出行,南京交通一卡通有限公司,njc***@163.com,公交-46 路(基础票价:2.0元)-车号[338813] 2025-07-29 17:00:52,支出,2,花呗,交易成功,"2025072922001464411427629539 ","20250729170054653002350 ",
2025/7/29 14:38,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,库迪咖啡(南京夫子庙瞻园奥莱店)外卖订单,支出,6.49,花呗,交易成功,"2025072922001164411426398919 ","13140600725072934840632849114 ",
2025/7/28 20:17,餐饮美食,开心果园景明佳园店,/,购买商品宁夏麒麟西瓜等,支出,9.6,花呗,交易成功,"2025072822001464411422566792 ","02126600004836000083620250728921884795 ",
2025/7/28 16:56,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,融柳·大铁牛螺蛳粉(喜马拉雅店)外卖订单,支出,6.99,花呗,交易成功,"2025072822001164411423886408 ","13160600725072830170339849114 ",
2025/7/28 13:04,交通出行,南京地铁运营有限责任公司,njd***@njmetro.com.cn,南京地铁(天隆寺2025-07-28 12:57:32--软件大道2025-07-28 13:04:28),支出,2,花呗,交易成功,"2025072822001464411422316857 ","T000002034107250728125732922576 ",
2025/7/28 12:51,退款,牛得钢·齐齐哈尔烤肉自助(宜悦城店),/,退款-美团收银909700202724549027,不计收支,50,花呗,退款成功,"2025072822001464411419469979_3420180330024764010461368605962927281312995 ","3420180330024764010461368605962539032202995 ",
2025/7/28 11:19,餐饮美食,牛得钢·齐齐哈尔烤肉自助(宜悦城店),/,美团收银909700202724549027,支出,50,花呗,交易关闭,"2025072822001464411419469979 ","3420180330024764010461368605962539032202995 ",
2025/7/28 10:17,交通出行,南京地铁运营有限责任公司,njd***@njmetro.com.cn,南京地铁(蒋王庙2025-07-28 09:29:09--天隆寺2025-07-28 10:16:34),支出,5,花呗,交易成功,"2025072822001464411418636090 ","T000019081914250728092909232739 ",
2025/7/28 8:59,医疗健康,中国医学科学院皮肤病医院,/,中国医学科学院皮肤病医院,支出,76.4,花呗,交易成功,"2025072822001464411418654469 ","26106600004802000020250728085910405758025712 ",
2025/7/28 8:38,餐饮美食,杂粮煎饼,/,杂粮煎饼,支出,9,花呗,交易成功,"2025072822001464411418582458 ","1212660000481800007895006657693672 ",
2025/7/28 8:34,交通出行,南京地铁运营有限责任公司,njd***@njmetro.com.cn,南京地铁(软件大道2025-07-28 07:54:58--蒋王庙2025-07-28 08:34:21),支出,5,花呗,交易成功,"2025072822001464411419863557 ","T000002034207250728075458131277 ",
2025/7/27 20:32,餐饮美食,开心果园景明佳园店,/,购买商品美都麒麟瓜等,支出,10.2,花呗,交易成功,"2025072722001464411418886930 ","65126600004836000083620250727637667736 ",
2025/7/27 20:28,日用百货,雨花台区梓封百货店(个体工商户),/,南京雨花台区景明佳园店,支出,34.2,花呗,交易成功,"2025072722001464411418119467 ","852019011062861739002125072720285609563760 ",
2025/7/26 14:17,爱车养车,宣城市泾县蔡村加油站,/,宣城市泾县蔡村加油站,支出,300,花呗,交易成功,"2025072622001464411414757862 ","122017052207307325100202507261417123620000 ",
2025/7/25 21:34,交通出行,哈啰出行,zij***@hellobike.com,哈啰助力车骑行,支出,15,江苏银行信用购,交易成功,"2025072522001464411410803127 ","CPR250725213447198312037333J ",
2025/7/24 20:54,餐饮美食,好想来品牌零食,/,安庆经开区回祥小区店,支出,23.58,花呗,交易成功,"2025072422001464411406630680 ","882019011062861739002125072420540805496392 ",
2025/7/24 10:39,日用百货,发润家连锁超市七街店,/,条码支付-发润家七街店-M2503040000404102507240157272,支出,12.95,花呗,交易成功,"2025072422001464411402885746 ","021266000048250000705209318573250724 ",
2025/7/23 15:23,餐饮美食,安庆市迎江区彦林食品店,/,安庆市迎江区彦林食品店,支出,6,花呗,交易成功,"2025072322001464411401171457 ","542017052207307325100202507231523234280000 ",
2025/7/21 16:45,日用百货,安庆市沪超比那多超市,/,3.01739E+29,支出,8.6,花呗,交易成功,"2025072122001464411451417429 ","3712660000489000009000752480125202 ",
2025/7/21 7:48,餐饮美食,香酥烤馒头,187******18,收钱码收款,支出,2,花呗,交易成功,"2025072122001464411447623584 ","17530552839602126064414 ",
2025/7/21 7:45,餐饮美食,杂货铺,131******91,收钱码收款,支出,18,花呗,交易成功,"2025072122001464411447877126 ","47530551269602126064414 ",
2025/7/21 7:41,餐饮美食,卖鸡店,147******70,收钱码收款,支出,110,花呗,交易成功,"2025072122001464411447676033 ","47530548620602126064414 ",
2025/7/20 11:08,日用百货,发润家连锁超市七街店,/,条码支付-发润家七街店-M2503040000404102507200242554,支出,66.2,花呗,交易成功,"2025072022001464411446561491 ","261266000048250000705151272259250720 ",
2025/7/20 10:50,信用借还,花呗|信用购,/,自动还款-花呗|信用购2025年07月账单,不计收支,1401.32,徽商银行储蓄卡(1491),还款成功,"2025072029020999410192042947 "," ",
2025/7/20 10:10,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|24091436888345010109|期数|202507|续期交易付款,支出,9.9,花呗,交易成功,"20250720663064614105 ","202507201100300701090068071911 ",
2025/7/16 0:36,转账红包,杨轩(杨轩),187******89,转账,支出,850,徽商银行储蓄卡(1491),交易成功,"20250716200040011100410027907463 "," ",
2025/7/15 16:26,日用百货,发润家连锁超市七街店,/,条码支付-发润家七街店-M2503040000404082507150154423,支出,79.28,花呗,交易成功,"2025071522001464411427396942 ","611266000048250000705080097256250715 ",
2025/7/15 15:38,医疗健康,安庆市立医院,aqs***@163.com,移动支付,支出,12.1,花呗,交易成功,"2025071522001464411427441956 ","2025071523040015_153858_26 ",
2025/7/13 19:04,餐饮美食,商户_汪丹丹,/,亮厨,支出,208,花呗,交易成功,"2025071323001464411419756276 ","902017052207307325100202507131904526730000 ",
2025/7/13 10:12,日用百货,发润家连锁超市七街店,/,条码支付-发润家七街店-M2503040000404042507130157024,支出,24.42,花呗,交易成功,"2025071322001464411418451819 ","481266000048250000705045434275250713 ",
2025/7/12 7:40,餐饮美食,马老大清真牛肉包子,152******67,经营码交易,支出,9.6,花呗,交易成功,"2025071222001464411412097946 ","17522772152602126064414 ",
2025/7/12 7:39,母婴亲子,玲姐烧饼,181******67,收钱码收款,支出,11,花呗,交易成功,"2025071222001464411410893386 ","17522771449602126064414 ",
2025/7/11 16:53,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,21.1,花呗,交易成功,"2025071122001464411410834804 ","20126600004802000020250711165300405583940516 ",
2025/7/11 0:47,投资理财,余额宝,cxd***@cxfund.com.cn,余额宝-自动转入,不计收支,39.76,账户余额,交易成功,"20250711019130101000410052698061 ","20250711009130501000410052509994 ",
2025/7/10 18:45,商业服务,杭州闲鱼信息技术有限公司,xys***@service.aliyun.com,分账-基础软件服务费(2816792256337457277)扣款,支出,0.24,,交易成功,"2025071010032004970292665242 "," ",
2025/7/10 18:04,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,临榆炸鸡腿(七街商业街店)外卖订单,支出,7.9,花呗,交易成功,"2025071022001164411405482583 ","13180600725071021603342849114 ",
2025/7/10 17:39,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,冷记老冰粉(七街店)外卖订单,支出,9.9,花呗,交易成功,"2025071022001164411407649943 ","13170600725071041113814849114 ",
2025/7/9 13:30,日用百货,天**,tmc***@service.aliyun.com,【李昀锐同款】下拉享优惠清风金装卷纸4层加厚厕纸卫生纸巾整箱 等多件,支出,89.85,花呗,交易成功,"2025070922001164411401505382 ","T200P2820717661407661070 ",
2025/7/9 8:54,日用百货,天**,tmc***@service.aliyun.com,【李昀锐同款】下拉享优惠清风金装卷纸4层加厚厕纸卫生纸巾整箱,不计收支,114.39,,交易关闭,"2025070922001164411400512645 ","T200P2820304020942661070 ",
2025/7/8 15:37,日用百货,天**,tmc***@service.aliyun.com,【李昀锐同款】下拉享优惠清风抽纸厚柔金装4层M码面巾纸巾卫生纸,支出,91.42,花呗,交易成功,"2025070822001164411457658078 ","T200P2819374934128661070 ",
2025/7/7 10:23,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,54.9,花呗,交易成功,"2025070722001464411450617938 ","79126600004802000020250707102325405545183573 ",
2025/7/6 18:11,收入,****人,198***@qq.com,学院风套装,轻微穿着痕迹,适合儿童。套装包括针织开衫、白衬衫,收入,40,,交易成功,"2025070622001157971427565926 ","T200P2816792256337457277 ",
2025/7/6 14:04,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,雅克雅思(七街店)外卖订单,支出,3,花呗,交易成功,"2025070622001164411448378773 ","13140600725070609796572849114 ",
2025/7/6 11:36,其他,淘宝闪购,ele***@service.aliyun.com,江禾蔬菜,支出,10.79,花呗,交易成功,"2025070622001164411447274170 ","13110600725070670944268849114 ",
2025/7/6 10:10,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|24113041628346210934|期数|202507|续期交易付款,支出,9.9,花呗,交易成功,"20250706488993424105 ","202507061100300709340053277015 ",
2025/7/5 12:09,日用百货,发润家弘阳广场店,/,条码支付-发润家弘阳店-M2502960000707072507050032010,支出,57.74,花呗,交易成功,"2025070522001464411442635119 ","551266000048490000451145861578388088422430 ",
2025/7/1 17:04,日用百货,发润家连锁超市七街店,/,条码支付-发润家七街店-M2503040000404082507010129086,支出,61.86,花呗,交易成功,"2025070122001464411428551351 ","741266000048250000705876028086250701 ",
2025/6/29 18:04,医疗健康,淘宝闪购,ele***@service.aliyun.com,老百姓大药房(官圣公路店),支出,49.76,花呗,交易成功,"2025062922001164411420772329 ","13180600725062984286483849114 ",
2025/6/29 9:07,爱车养车,中石化安庆石油分公司,/,石化安庆石油分公司,支出,253.18,花呗,交易成功,"2025062922001464411417292386 ","052017092208872157130955410024000082506290419293 ",
2025/6/27 17:05,退款,若妍**7,325***@qq.com,退款-2025新款亲子装一家三四口短袖T恤夏季拼色户外全家服活动装 等多件,不计收支,30.74,江苏银行信用购,退款成功,"2025061822001164411426806595_2616722799940661070_219146630856667010 ","T200P2616722799939661070 ",
2025/6/27 17:05,退款,若妍**7,325***@qq.com,退款-2025新款亲子装一家三四口短袖T恤夏季拼色户外全家服活动装 等多件,不计收支,46.52,江苏银行信用购,退款成功,"2025061822001164411426806595_2616722799941661070_219146630857667010 ","T200P2616722799939661070 ",
2025/6/26 16:17,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,老城小店·5566炸串(好七·店)外卖订单,支出,5,中国银行储蓄卡(4028)&中国银行立减,交易成功,"2025062622001164411406397936 ","13160600725062695843102849114 ",
2025/6/26 13:21,退款,山岛**店,285***@qq.com,退款-【狂欢价】美式坎肩宽松背心女夏外穿工字白色内搭纯棉无袖t恤健身运动上衣 等多件,不计收支,26.91,江苏银行信用购,退款成功,"2025061822001164411425657048_2616259764653661070_advance ","T200P2616259764651661070 ",
2025/6/26 13:20,退款,山岛**店,285***@qq.com,退款-【狂欢价】美式坎肩宽松背心女夏外穿工字白色内搭纯棉无袖t恤健身运动上衣 等多件,不计收支,26.91,江苏银行信用购,退款成功,"2025061822001164411425657048_2616259764652661070_advance ","T200P2616259764651661070 ",
2025/6/26 13:19,退款,山岛**店,285***@qq.com,退款-【狂欢价】美式坎肩宽松背心女夏外穿工字白色内搭纯棉无袖t恤健身运动上衣 等多件,不计收支,26.91,江苏银行信用购,退款成功,"2025061822001164411425657048_2616259764654661070_advance ","T200P2616259764651661070 ",
2025/6/26 8:45,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,81.5,花呗,交易成功,"2025062622001464411403403391 ","45126600004802000020250626084521405444061290 ",
2025/6/25 10:47,餐饮美食,安庆市宜秀区严岭生鲜经营部,/,付款码支付,支出,7.8,花呗,交易成功,"2025062522001464411400550675 ","732017052207307325102202506251047213070001 ",
2025/6/25 9:35,医疗健康,安庆市立医院,/,医保支付(不含自费),支出,0,,支付成功,"20250625644105449459 ","34082025062556328969 ",
2025/6/25 9:15,医疗健康,安庆新市立医院儿童医院,whh***@163.com,好吃点熊字饼115克组图 x 1,支出,4.2,花呗,交易成功,"2025062522001464411401756371 ","1050814148951933122 ",
2025/6/25 8:37,日用百货,便民服务中心,/,移动支付,支出,1.5,花呗,交易成功,"2025062522001464411400550599 ","892017053107394200187560044305202506252167375702 ",
2025/6/25 8:32,医疗健康,安庆市立医院,/,医保支付(不含自费),支出,0,,支付成功,"20250625644104900280 ","34082025062556319725 ",
2025/6/25 8:29,生活服务,泰洋康业售货机,qiy***@126.com,百岁山饮用天然矿泉水,支出,3,花呗,交易成功,"2025062522001464411402681420 ","910269901027 ",
2025/6/24 10:43,日用百货,安庆市迎江区航哥百货经营部,/,付款码支付,支出,51.58,花呗,交易成功,"2025062422001464411455934239 ","962017052207307325102202506241043442460002 ",
2025/6/23 8:25,餐饮美食,马老大清真牛肉包子,152******67,经营码交易,支出,4.8,花呗,交易成功,"2025062322001464411446550774 ","17506383457602126064414 ",
2025/6/23 8:22,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,23.3,花呗,交易成功,"2025062322001464411445195682 ","26126600004802000020250623082250405420263701 ",
2025/6/22 10:32,餐饮美食,安庆市宜秀区严岭生鲜经营部,/,付款码支付,支出,35.6,花呗,交易成功,"2025062222001464411441175687 ","582017052207307325102202506221032225430002 ",
2025/6/21 18:16,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,塔斯汀·中国汉堡(回祥路店)外卖订单,支出,49.9,花呗,交易成功,"2025062122001164411441695023 ","13180600725062116314004849114 ",
2025/6/21 10:57,餐饮美食,新一家生鲜超市,/,安庆卓利贸易有限公司-20250621105725719104,支出,55.9,花呗,交易成功,"2025062122001464411433281782 ","16126600004836000083620250621332526363 ",
2025/6/20 10:57,退款,sc**店,kcz***@163.com,退款-【狂欢价】隔尿垫床单床笠婴儿儿童防水可洗水洗床姨妈垫整床大尺寸纯棉透气 等多件,不计收支,53.71,邮储银行储蓄卡(8719)&邮储银行满减,退款成功,"2025062022001164411435524336_2619378338950661070 ","T200P2619378338949661070 ",
2025/6/20 10:56,日用百货,天**,tmc***@service.aliyun.com,护舒宝液体卫生巾经典日用240mm套组超薄透气姨妈巾官方正品 等多件,支出,174.98,邮储银行储蓄卡(8719),交易成功,"2025062022001164411431945593 ","T200P2619378338938661070 ",
2025/6/20 10:56,母婴亲子,sc**店,kcz***@163.com,【狂欢价】隔尿垫床单床笠婴儿儿童防水可洗水洗床姨妈垫整床大尺寸纯棉透气 等多件,支出,109.1,邮储银行储蓄卡(8719)&邮储银行满减,交易成功,"2025062022001164411435524336 ","T200P2619378338949661070 ",
2025/6/20 10:27,信用借还,花呗|信用购,/,自动还款-花呗|信用购2025年06月账单,不计收支,5127.92,徽商银行储蓄卡(1491),还款成功,"2025062029020999410151690149 "," ",
2025/6/20 10:10,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|24091436888345010109|期数|202506|续期交易付款,支出,9.9,江苏银行信用购,交易成功,"20250620305922494105 ","202506201100300701090059052476 ",
2025/6/20 8:59,餐饮美食,饭店,151******49,经营码交易,支出,37,江苏银行信用购,交易成功,"2025062022001464411432023910 ","17503811732602126064414 ",
2025/6/19 9:49,餐饮美食,安庆市宜秀区严岭生鲜经营部,/,付款码支付,支出,2.5,江苏银行信用购,交易成功,"2025061922001464411429066640 ","712017052207307325102202506190949446530001 ",
2025/6/18 22:04,母婴亲子,bb**1,928***@qq.com,网红炸街亲子装可爱t恤2025夏季一家三四口休闲时尚短袖母女母子 等多件,支出,76.21,江苏银行信用购,交易成功,"2025061822001164411427011131 ","T200P2617193102922661070 ",
2025/6/18 21:55,母婴亲子,若妍**7,325***@qq.com,2025新款亲子装一家三四口短袖T恤夏季拼色户外全家服活动装 等多件,支出,77.26,江苏银行信用购,交易关闭,"2025061822001164411426806595 ","T200P2616722799939661070 ",
2025/6/18 17:36,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,小高米线(七街店搜王炸红包)外卖订单,支出,4.4,花呗,交易成功,"2025061822001164411424041232 ","13170600725061867199227849114 ",
2025/6/18 12:56,日用百货,天**,tmc***@service.aliyun.com,Repharm厨房清洁湿巾除油去油一次性抹布厨房湿巾纸加大加厚90抽 等多件,支出,197.14,江苏银行信用购,交易成功,"2025061822001164411420303717 ","T200P2616259764655661070 ",
2025/6/18 12:56,日用百货,el**店,elm***@niesheng.com,【明星李亚男爱用】elmex艾美适儿童牙膏奥拉氟防蛀3-6-12岁牙膏,支出,38.61,江苏银行信用购,交易成功,"2025061822001164411420306563 ","T200P2616259764667661070 ",
2025/6/18 12:56,服饰装扮,山岛**店,285***@qq.com,【狂欢价】美式坎肩宽松背心女夏外穿工字白色内搭纯棉无袖t恤健身运动上衣 等多件,支出,80.73,江苏银行信用购,交易关闭,"2025061822001164411425657048 ","T200P2616259764651661070 ",
2025/6/18 12:56,母婴亲子,天**,tmc***@service.aliyun.com,包邮润本童锁定时款恒温电热蚊香液室内驱蚊专用驱蚊液2液+1器,支出,17.01,江苏银行信用购,交易成功,"2025061822001164411425716573 ","T200P2616259764666661070 ",
2025/6/18 12:56,日用百货,佳帮**店,duo***@163.com,【狂欢价】佳帮手装米桶家用防虫防潮密封米缸大米收纳盒米箱面粉面桶储物罐,支出,33.33,江苏银行信用购,交易成功,"2025061822001164411425986536 ","T200P2616259764668661070 ",
2025/6/18 12:34,日用百货,el**店,elm***@niesheng.com,【明星李亚男爱用】elmex艾美适儿童牙膏奥拉氟防蛀3-6-12岁牙膏,不计收支,42.9,,交易关闭,"2025061822001164411425195578 ","T200P2616892033411661070 ",
2025/6/15 16:08,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,58.18,江苏银行信用购,交易成功,"2025061522001464411406678650 ","38126600004802000020250615160812405357422741 ",
2025/6/15 10:04,餐饮美食,胖大嫂鱼鲜,150******17,收钱码收款,支出,40,江苏银行信用购,交易成功,"2025061522001464411404395491 ","47499530976602126064414 ",
2025/6/15 10:02,餐饮美食,卖鸡店,147******70,收钱码收款,支出,33,江苏银行信用购,交易成功,"2025061522001464411409174924 ","47499529268602126064414 ",
2025/6/15 9:58,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,33.83,江苏银行信用购&红包,交易成功,"2025061522001464411400228539 ","87126600004802000020250615095824405353143870 ",
2025/6/14 15:51,爱车养车,安庆酷我车居郑久洲,909***@qq.com,收钱码收款,支出,460,徽商银行储蓄卡(1491),交易成功,"2025061422001464411459619947 ","17498874832602126064414 ",
2025/6/8 16:33,日用百货,安庆市迎江区航哥百货经营部,/,付款码支付,支出,5.56,江苏银行信用购,交易成功,"2025060822001464411435641570 ","932017052207307325102202506081633462320001 ",
2025/6/7 9:55,日用百货,发润家连锁超市七街店,/,条码支付-发润家七街店-M2503040000404032506070131728,支出,75.86,江苏银行信用购,交易成功,"2025060722001464411426100311 ","601266000048250000705524734838250607 ",
2025/6/6 10:13,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|24113041628346210934|期数|202506|续期交易付款,支出,9.9,花呗,交易成功,"20250606140723354105 ","202506061100300709340044342114 ",
2025/6/6 9:41,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,106,江苏银行信用购,交易成功,"2025060600003001410046581946 ","63191880351 ",
2025/6/6 9:39,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,59,江苏银行信用购,交易成功,"2025060600003001410046574794 ","23012969958 ",
2025/6/6 9:39,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,59,江苏银行信用购,交易成功,"2025060600003001410046580021 ","23002962393 ",
2025/6/6 9:38,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,29,江苏银行信用购,交易成功,"2025060600003001410046582087 ","23003427943 ",
2025/6/6 9:37,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,29,江苏银行信用购,交易成功,"2025060600003001410046576770 ","20009935043 ",
2025/6/6 9:37,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,74.9,江苏银行信用购,交易成功,"2025060600003001410046578672 ","20012296000 ",
2025/6/6 9:36,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,29,江苏银行信用购,交易成功,"2025060600003001410046572739 ","23000610353 ",
2025/6/6 9:35,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,29.4,江苏银行信用购,交易成功,"2025060600003001410046573217 ","23000428302 ",
2025/6/6 9:35,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,29,江苏银行信用购,交易成功,"2025060600003001410046580598 ","20006775879 ",
2025/6/6 9:10,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,29,江苏银行信用购,交易成功,"2025060600003001410046571992 ","20000670407 ",
2025/6/6 9:05,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,59.9,江苏银行信用购,交易成功,"2025060600003001410046569462 ","20000780673 ",
2025/6/6 9:04,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,59,江苏银行信用购,交易成功,"2025060600003001410046567722 ","20000780749 ",
2025/6/6 9:04,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,59,江苏银行信用购,交易成功,"2025060600003001410046570711 ","98885983908 ",
2025/6/6 9:03,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,84,江苏银行信用购,交易成功,"2025060600003001410046563408 ","93707881999 ",
2025/6/6 9:02,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,84,江苏银行信用购,交易成功,"2025060600003001410046569008 ","20009934891 ",
2025/6/6 9:02,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,59,江苏银行信用购,交易成功,"2025060600003001410046566148 ","98885983800 ",
2025/6/6 9:01,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,65,江苏银行信用购,交易成功,"2025060600003001410046566037 ","98885983802 ",
2025/6/6 9:00,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,36.4,江苏银行信用购,交易成功,"2025060600003001410046566379 ","98885983905 ",
2025/6/6 9:00,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,59,江苏银行信用购,交易成功,"2025060600003001410046563399 ","98885983904 ",
2025/6/6 8:59,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,59,江苏银行信用购,交易成功,"2025060600003001410046569729 ","94555367702 ",
2025/6/6 8:58,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,66.9,江苏银行信用购,交易成功,"2025060600003001410046562727 ","92215645786 ",
2025/6/6 8:58,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,59,江苏银行信用购,交易成功,"2025060600003001410046567006 ","91955420051 ",
2025/6/6 8:56,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,73,江苏银行信用购,交易成功,"2025060600003001410046561517 ","92035485147 ",
2025/6/6 8:54,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,59,江苏银行信用购,交易成功,"2025060600003001410046569721 ","88286483533 ",
2025/6/6 8:49,充值缴费,中国电信股份有限公司上海分公司,/,5月-固话/宽带费,支出,133.5,江苏银行信用购,交易成功,"2025060600003001410046568179 ","96516147461 ",
2025/6/5 10:11,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,20.4,江苏银行信用购,交易成功,"2025060522001464411409796793 ","11126600004802000020250605101100112231481767 ",
2025/6/4 17:51,餐饮美食,贺强果林超级批发行,/,【订货猿】订单号:1930200846137171968,支出,7.4,花呗,交易成功,"2025060422001464411415516717 ","20126600004836000083620250604381911209 ",
2025/6/1 10:53,餐饮美食,何记鲜肉铺,136******72,经营码交易,支出,37,江苏银行信用购,交易成功,"2025060122001464411453921112 ","17487464317602126064414 ",
2025/6/1 10:38,餐饮美食,卖鸡店,147******70,收钱码收款,支出,31,江苏银行信用购,交易成功,"2025060122001464411452500459 ","17487455165602126064414 ",
2025/6/1 10:32,爱车养车,中石化安庆石油分公司,/,石化安庆石油分公司,支出,238.94,江苏银行信用购,交易成功,"2025060122001464411452435548 ","052017092208872157130955410024000022506010385109 ",
2025/6/1 10:15,日用百货,发润家弘阳广场店,/,条码支付-发润家弘阳店-M2502960000707042506010087324,支出,142.16,花呗,交易成功,"2025060122001464411452670758 ","711266000048490000451143391610976914636819 ",
2025/5/31 8:03,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,54.4,花呗,交易成功,"2025053122001464411441081572 ","27126600004802000020250531080355112219490686 ",
2025/5/30 17:58,餐饮美食,金鑫源糖酒,187******91,收钱码收款,支出,435,邮储银行储蓄卡(8719),交易成功,"2025053022001464411441136402 ","17485990807602126064414 ",
2025/5/29 19:54,餐饮美食,安庆市天鲜配蔬果超市有限责任公司,/,付款码支付,支出,16.4,花呗,交易成功,"2025052922001464411435229211 ","092017052207307325102202505291954396050003 ",
2025/5/29 19:48,餐饮美食,安庆市宜秀区新鲜配生鲜经营部,/,付款码支付,支出,86.18,花呗,交易成功,"2025052922001464411436688619 ","622017052207307325102202505291948056110001 ",
2025/5/25 17:29,生活服务,杭州菜鸟供应链管理有限公司,gg4***@cainiao.com,菜鸟裹裹-寄件费_702667010_LP00736396760365,支出,1.04,余额宝,交易成功,"2025052522001464411412693112 ","CN_V1_602078561961980357 ",
2025/5/25 17:29,生活服务,杭州菜鸟供应链管理有限公司,gg4***@cainiao.com,菜鸟裹裹-寄件费_702667010_LP00737377092792,支出,0.04,余额宝,交易成功,"2025052522001464411413824633 ","CN_V1_602078561560360260 ",
2025/5/25 13:45,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,沪上阿姨·精选茶饮(迎江绿地店搜王炸红包)外卖订单,支出,1.62,花呗,交易成功,"2025052522001164411408132754 ","13130600725052540673593849114 ",
2025/5/24 10:43,餐饮美食,安庆市宜秀区严岭生鲜经营部,/,付款码支付,支出,150,花呗,交易成功,"2025052422001464411458397881 ","552017052207307325102202505241043243040001 ",
2025/5/24 10:42,餐饮美食,安庆市宜秀区严岭生鲜经营部,/,付款码支付,支出,852.41,花呗&红包,交易成功,"2025052422001464411456670589 ","992017052207307325102202505241042264710001 ",
2025/5/24 10:03,餐饮美食,**妹,130******40,收钱码收款,支出,104,花呗,交易成功,"2025052422001464411400319189 ","17480521868602126064414 ",
2025/5/24 9:37,退款,医保定点医药机构,/,退款-医保支付(不含自费),不计收支,0,,退款成功,"20250524644183635948 ","34082025052454931346 ",
2025/5/24 8:41,医疗健康,安庆市立医院,/,医保支付(不含自费),支出,0,,支付成功,"20250524644183615185 ","34082025052454934121 ",
2025/5/24 8:22,医疗健康,安庆市立医院,/,医保支付(不含自费),支出,0,,支付成功,"20250524644183635948 ","34082025052454931346 ",
2025/5/24 8:21,医疗健康,安庆市立医院,/,医保支付(不含自费),支出,0,,支付成功,"20250524644183640650 ","34082025052454929361 ",
2025/5/23 17:30,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,老乡鸡(七街文苑路分店)外卖订单,支出,7.89,花呗,交易成功,"2025052322001164411454436040 ","13170600725052307967101849114 ",
2025/5/22 10:25,退款,浅左**装,hzy***@163.com,退款-镂空蕾丝小香风套装裤女夏2025新款高级感小众绝美气质短裤两件套,不计收支,139.53,花呗,退款成功,"2025052222001164411448826354_2575468923022661070 ","T200P2575468923022661070 ",
2025/5/22 10:25,数码电器,爱普**店,181***@qq.com,【狂欢价】投影仪支架墙上壁挂床头置物架适用小米坚果极米当贝小明爱普生专用放置台万向云台沙发后天猫魔屏多功能架子,支出,41.77,花呗,交易成功,"2025052222001164411445927807 ","T200P2575468923023661070 ",
2025/5/22 10:25,服饰装扮,浅左**装,hzy***@163.com,镂空蕾丝小香风套装裤女夏2025新款高级感小众绝美气质短裤两件套,支出,139.53,花呗,交易关闭,"2025052222001164411448826354 ","T200P2575468923022661070 ",
2025/5/20 21:32,医疗健康,淘宝闪购,ele***@service.aliyun.com,国胜大药房(安庆盛唐湾路店),支出,31.66,花呗,交易成功,"2025052022001164411435244999 ","13210600725052011638643849114 ",
2025/5/20 17:07,母婴亲子,天**,tmc***@service.aliyun.com,babycare婴儿手口湿巾加厚加大无酒精湿纸巾非棉柔巾,不计收支,20.01,,交易关闭,"2025052022001164411430464084 ","T200P2573307663657661070 ",
2025/5/20 10:12,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|24091436888345010109|期数|202505|续期交易付款,支出,9.9,花呗,交易成功,"20250520948599734105 ","202505201100300701090049706425 ",
2025/5/17 11:29,信用借还,花呗|信用购,/,主动还款-花呗|信用购2025年05月账单,不计收支,3621.82,徽商银行储蓄卡(1491),还款成功,"2025051729020999410191880907 "," ",
2025/5/17 11:28,信用借还,花呗|信用购,/,花呗|信用购主动还款,不计收支,3621.82,,还款失败,"2025051729020999410191534761 "," ",
2025/5/17 9:56,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,45.7,江苏银行信用购,交易成功,"2025051722001464411401557882 ","47126600004802000020250517095631405124737119 ",
2025/5/15 20:02,医疗健康,淘宝闪购,ele***@service.aliyun.com,老百姓大药房(盛唐湾路店),支出,12.1,江苏银行信用购,交易成功,"2025051522001164411400890115 ","13200600725051590695402849114 ",
2025/5/13 17:38,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,宫膳煌北京片皮烤鸭(好七·七街店)外卖订单,支出,17,江苏银行信用购,交易成功,"2025051322001164411448456858 ","13170600725051381718942849114 ",
2025/5/11 18:21,餐饮美食,董家馄饨胖哥金牌锅贴,/,美团收银909700200154898259,支出,6.5,江苏银行信用购,交易成功,"2025051122001464411433983261 ","5120180330024764010461368605796580731109403 ",
2025/5/11 18:21,餐饮美食,董家馄饨胖哥金牌锅贴,/,美团收银909700200154898258,支出,8.5,江苏银行信用购,交易成功,"2025051122001464411437219703 ","5220180330024764010461368605796592574609403 ",
2025/5/11 9:23,日用百货,宜秀区邻居汇生鲜超市,/,3.01681E+29,支出,72.76,江苏银行信用购,交易成功,"2025051122001464411432740493 ","6612660000489000001000190977625131 ",
2025/5/11 9:01,美容美发,苗莲花美白祛斑,/,苗莲花美白祛斑,支出,10,江苏银行信用购,交易成功,"2025051122001464411433984975 ","07201703270643361639120300000197272505110901419301 ",
2025/5/11 8:58,餐饮美食,马老大清真牛肉包子,152******67,经营码交易,支出,10.8,江苏银行信用购,交易成功,"2025051122001464411429633611 ","17469250908602126064414 ",
2025/5/10 21:19,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,瑞幸咖啡(安庆七街店)外卖订单,支出,2.9,江苏银行信用购,交易成功,"2025051022001164411428490431 ","13210600725051040065156849114 ",
2025/5/9 22:23,退款,凡客**店,101***@qq.com,退款-【活动价】凡客潮流纯棉短袖T恤两件装亲肤舒适休闲时尚纯色圆领百搭打底,不计收支,49.28,江苏银行信用购,退款成功,"2025050522001164411455519605_2554588417023661070_212009845462667010 ","T200P2554588417023661070 ",
2025/5/9 18:52,餐饮美食,水果,114***@qq.com,收钱码收款,支出,18,江苏银行信用购,交易成功,"2025050922001464411422355402 ","17467879382602126064414 ",
2025/5/9 18:17,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,沪上阿姨·精选茶饮(七街店搜王炸红包)外卖订单,支出,0.01,花呗,交易成功,"2025050922001164411420707781 ","13180600725050924784222849114 ",
2025/5/9 18:05,餐饮美食,安庆市开发区匠心桃酥店,/,商品,支出,1.7,江苏银行信用购,交易成功,"2025050922001464411422848213 ","6412660000482200007895225346144948 ",
2025/5/9 18:00,餐饮美食,贺强果林超级批发行,/,【订货猿】订单号:1920780937958289408,支出,13.5,江苏银行信用购,交易成功,"2025050922001464411421702303 ","78126600004836000083620250509381292609 ",
2025/5/9 9:14,服饰装扮,凡客**店,101***@qq.com,【活动价】凡客潮流纯棉短袖T恤两件装亲肤舒适休闲时尚纯色圆领百搭打底,支出,49.41,江苏银行信用购,交易成功,"2025050922001164411419531365 ","T200P2557603455861661070 ",
2025/5/6 10:12,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|24113041628346210934|期数|202505|续期交易付款,支出,9.9,江苏银行信用购,交易成功,"20250506782361174105 ","202505061100300709340035114727 ",
2025/5/5 20:17,服饰装扮,凡客**店,101***@qq.com,【活动价】凡客潮流纯棉短袖T恤两件装亲肤舒适休闲时尚纯色圆领百搭打底,支出,49.28,江苏银行信用购,交易关闭,"2025050522001164411455519605 ","T200P2554588417023661070 ",
2025/5/5 12:43,餐饮美食,妞妞小吃店,139******15,收钱码收款,支出,60,江苏银行信用购,交易成功,"2025050522001464411445360996 ","47464201812602126064414 ",
2025/5/5 12:06,餐饮美食,安庆市大南门小董清真熟食,/,移动支付,支出,57,江苏银行信用购,交易成功,"2025050522001464411455581424 ","462017053107394200187580003013202505052257588084 ",
2025/5/5 9:49,退款,巴拉**店,bal***@ecsemir.com,退款-巴拉巴拉童鞋运动凉鞋男女童沙滩鞋儿童夏新款透气防滑透气宝宝鞋,不计收支,62.9,江苏银行信用购,退款成功,"2025042722001164411400983030_2545654981476661070_advance ","T200P2545654981476661070 ",
2025/5/4 17:56,服饰装扮,安庆市宜秀区芊妃服装店,/,灿灿木格童装,支出,160,江苏银行信用购,交易成功,"2025050422001464411448172758 ","012017052207307325100202505041756252080000 ",
2025/5/4 9:06,爱车养车,中国石油中兴大道加油站,zha***@petrochina.com.cn,中国石油-条码支付,支出,233.19,江苏银行信用购,交易成功,"2025050422001464411448172575 ","17463208075463414002 ",
2025/5/4 8:48,母婴亲子,玲姐烧饼,181******67,收钱码收款,支出,6.4,江苏银行信用购,交易成功,"2025050422001464411447246578 ","17463197124602126064414 ",
2025/5/4 8:47,餐饮美食,马老大清真牛肉包子,152******67,经营码交易,支出,9.6,江苏银行信用购,交易成功,"2025050422001464411447217936 ","17463196242602126064414 ",
2025/5/3 18:34,账户存取,中国邮政储蓄银行,/,提现-实时提现,不计收支,7000,余额,交易成功,"20250503200040011100410088230619 ","0693f6de9c37ac9a0ce8d2b41d3b777c ",
2025/5/3 18:32,投资理财,王芳,cxd***@cxfund.com.cn,余额宝-转出到余额,不计收支,7000,余额,交易成功,"20250503019130200010410013283450 ","LC2025050318323120886021260644140442 ",
2025/5/3 18:31,投资理财,余额宝,cxd***@cxfund.com.cn,转账收款到余额宝,不计收支,7000,账户余额,交易成功,"20250503019130125000410092349373 ","20250503200040011100550028711715 ",
2025/5/3 18:31,转账红包,,131******22,转账,收入,7000,账户余额,交易成功,"20250503200040011100550028711715 "," ",
2025/5/3 9:05,餐饮美食,安庆市宜秀区橙柿鲜言果业经营部,/,安庆市宜秀区橙柿鲜言果业经营部,支出,230,江苏银行信用购,交易成功,"2025050322001464411440388973 ","742017052207307325100202505030905381890001 ",
2025/5/3 8:46,餐饮美食,安庆市开发区匠心桃酥店,/,商品,支出,25.5,江苏银行信用购,交易成功,"2025050322001464411441364690 ","3612660000482200007895004265005697 ",
2025/5/2 14:07,餐饮美食,商户_甘惠芬,/,康大大米批发部,支出,15,江苏银行信用购,交易成功,"2025050222001464411435295796 ","492017052207307325100202505021407262440000 ",
2025/5/2 14:07,餐饮美食,商户_甘惠芬,/,康大大米批发部,支出,45,江苏银行信用购,交易成功,"2025050222001464411432113673 ","942017052207307325100202505021407046100000 ",
2025/5/2 14:06,日用百货,鑫华百货,/,移动支付,支出,3,花呗,交易成功,"2025050222001464411434734779 ","732017053107394200187510036962202505022232283438 ",
2025/5/2 14:04,餐饮美食,Leeping,150******52,收钱码收款,支出,20,江苏银行信用购,交易成功,"2025050222001464411434749734 ","17461658682602126064414 ",
2025/5/2 14:04,日用百货,老刘一次性用品批发部,136******83,收钱码收款,支出,13,江苏银行信用购,交易成功,"2025050222001464411434726819 ","17461658471602126064414 ",
2025/5/2 13:55,日用百货,兴隆商行,151******30,收钱码收款,支出,40,江苏银行信用购,交易成功,"2025050222001464411432856697 ","17461653351602126064414 ",
2025/5/2 13:51,餐饮美食,安庆市开发区翔龙食品商行,/,翔龙食品商行(5) 117461651155621104,支出,150,江苏银行信用购,交易成功,"2025050222001464411434726816 ","15126600004802000011UX2505027535157134281641 ",
2025/5/1 9:05,餐饮美食,安庆市开发区泾川冷冻食品商行,/,安庆市开发区泾川冷冻食品商行,支出,260,江苏银行信用购,交易成功,"2025050122001464411424208101 ","862017052207307325100202505010905461890000 ",
2025/5/1 7:24,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,34.46,江苏银行信用购,交易成功,"2025050122001464411425472092 ","98126600004802000020250501072447112145135786 ",
2025/4/28 10:17,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,王不二·圆圆柠檬茶坊(好七店)外卖订单,支出,8.5,江苏银行信用购,交易成功,"2025042822001164411410583992 ","13100600725042892797179849114 ",
2025/4/27 10:11,母婴亲子,巴拉**店,bal***@ecsemir.com,巴拉巴拉童鞋运动凉鞋男女童沙滩鞋儿童夏新款透气防滑透气宝宝鞋,支出,62.9,江苏银行信用购,交易关闭,"2025042722001164411400983030 ","T200P2545654981476661070 ",
2025/4/26 16:56,医疗健康,朗程驿站,724***@qq.com,全款交易:探险者露营桌椅户外折叠蛋卷桌野餐桌便携式桌子椅子一体全套装备,支出,35.44,邮储银行储蓄卡(8719),支付成功,"2025042622001864411459832085_11160600725042636028763667010 ","T50060NP2544542078779661070 ",
2025/4/26 16:28,医疗健康,淘宝闪购,ele***@service.aliyun.com,丰原大药房(安庆同安府连锁店),支出,26.5,江苏银行信用购,交易成功,"2025042622001164411457567189 ","13160600725042631330018849114 ",
2025/4/26 15:53,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,12.9,花呗,交易成功,"2025042622001464411400106079 ","58126600004802000020250426155309404965356779 ",
2025/4/25 17:54,餐饮美食,安庆市开发区匠心桃酥店,/,商品,支出,12.6,花呗,交易成功,"2025042522001464411456044948 ","1112660000482200007895000746906278 ",
2025/4/25 17:53,餐饮美食,安庆市开发区匠心桃酥店,/,商品,支出,12.6,花呗,交易成功,"2025042522001464411450748500 ","2912660000482200007895000746513672 ",
2025/4/25 15:21,医疗健康,霸州群峰科技有限公司,180******16,全款交易:【带腿托】高靠背月亮椅躺椅露营三档可调节折叠椅便携带钓鱼凳,支出,62.1,邮储银行储蓄卡(8719),支付成功,"2025042522001864411451948691_11150600725042500970616667010 ","T50060NP2543710297108661070 ",
2025/4/25 15:15,医疗健康,霸州群峰科技有限公司,180******16,全款交易:【带腿托】高靠背月亮椅躺椅露营三档可调节折叠椅便携带钓鱼凳,支出,67.1,徽商银行储蓄卡(1491),支付成功,"2025042522001864411455913725_11150600725042512843002667010 ","T50060NP2543012796003661070 ",
2025/4/25 15:10,医疗健康,霸州群峰科技有限公司,180******16,全款交易:【带腿托】高靠背月亮椅躺椅露营三档可调节折叠椅便携带钓鱼凳,不计收支,70,,交易关闭,"2025042522001864411455476187_11150600725042509063929667010 ","T50060NP2543002788845661070 ",
2025/4/24 21:32,日用百货,i***x,156******87,带轮子可移动儿童玩具收纳架米白色3X4格,支出,57.65,邮储银行储蓄卡(8719)&邮储银行立减,交易成功,"2025042422001164411446515395 ","T200P2542996453654661070 ",
2025/4/20 11:46,信用借还,花呗|信用购,/,自动还款-花呗|信用购2025年04月账单,不计收支,3828.05,徽商银行储蓄卡(1491),还款成功,"2025042029020999410167386445 "," ",
2025/4/20 10:11,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|24091436888345010109|期数|202504|续期交易付款,支出,9.9,江苏银行信用购,交易成功,"20250420609653294105 ","202504201100300701090040440230 ",
2025/4/20 8:51,爱车养车,中国石油安庆大桥加油站,zha***@petrochina.com.cn,中国石油-条码支付,支出,240.8,江苏银行信用购&碰一下立减,交易成功,"2025042022001464411422201469 ","17451103051023460910 ",
2025/4/20 8:33,医疗健康,安庆市立医院,/,医保支付(不含自费),支出,0,,支付成功,"20250420644161135363 ","34082025042053403538 ",
2025/4/20 8:05,医疗健康,安庆市立医院,/,医保支付(不含自费),支出,0,,支付成功,"20250420644161326402 ","34082025042053400071 ",
2025/4/19 20:35,商业服务,绿地大润发广场福利彩票亭,189******50,收钱码收款,支出,20,江苏银行信用购,交易成功,"2025041922001464411422202444 ","47450661356602126064414 ",
2025/4/19 17:07,餐饮美食,诚信志远果业,147***@qq.com,安庆市宜秀区果实惠水果商店,支出,6.6,江苏银行信用购,交易成功,"2025041922001464411422127283 ","340811001250419170707 ",
2025/4/18 11:12,母婴亲子,四叶**草,184***@qq.com,女童夏装连衣裙洋气周岁女宝礼服公主裙婴儿童夏季网纱蓬蓬tutu裙,不计收支,73.56,,交易关闭,"2025041822001164411413288370 ","T200P2535824497898661070 ",
2025/4/15 17:54,餐饮美食,贺强果林超级批发行,/,【订货猿】订单号:1912082178407858176,支出,22.5,江苏银行信用购,交易成功,"2025041522001464411452941445 ","41126600004836000083620250415627924517 ",
2025/4/15 15:17,退款,众安在线财产保险股份有限公司,/,保险退保-退保保费支付[25011444236453310552],不计收支,4.96,江苏银行信用购,退款成功,"20250415102553010664410065429366 ","202503241100300705520026180261_refund ",
2025/4/14 17:55,日用百货,安庆市迎江区航哥百货经营部,/,付款码支付,支出,5.93,江苏银行信用购,交易成功,"2025041422001464411450596229 ","522017052207307325102202504141755092460002 ",
2025/4/14 16:37,信用借还,借呗,/,借呗还款,不计收支,501.5,徽商银行储蓄卡(1491),还款成功,"2025041410199318530101010000410075689407 "," ",
2025/4/14 9:57,投资理财,余额宝,cxd***@cxfund.com.cn,余额宝-自动转入,不计收支,6.1,账户余额,交易成功,"20250414019130101000410073349232 ","20250414009130501000410072863804 ",
2025/4/14 8:27,保险,众安在线财产保险股份有限公司,/,保险理赔-退货宝补偿-订单号:2522374287601661070 保单号:25040749149621210011,收入,6.1,,交易成功,"20250414546453174105 ","202504131100300300110154995531 ",
2025/4/13 13:56,日用百货,安庆市开发区优禾生活经营部,/,统一收单交易创建,支出,50,江苏银行信用购,交易成功,"2025041322001464411447615025 ","28126600004826000020250413Nf0000000006009690023610 ",
2025/4/13 10:59,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,53.1,江苏银行信用购,交易成功,"2025041322001464411444646957 ","57126600004802000020250413105943404868211948 ",
2025/4/12 18:03,餐饮美食,**花,130******45,收钱码收款,支出,10,江苏银行信用购,交易成功,"2025041222001464411442677381 ","17444522062602126064414 ",
2025/4/12 14:03,信用借还,借呗,/,借呗还款,不计收支,1000.3,邮储银行储蓄卡(8719),还款成功,"2025041210199318530101010000410072615616 "," ",
2025/4/11 15:45,退款,乔丹**店,qdj***@163.com,退款-乔丹儿童宝宝学步鞋2024春秋款婴小童轻便软底运动跑鞋男童机能鞋,不计收支,87,江苏银行信用购,退款成功,"2025040722001164411420009365_2522374287601661070_advance ","T200P2522374287601661070 ",
2025/4/11 14:35,日用百货,安庆市开发区优禾生活经营部,/,统一收单交易创建,支出,50,江苏银行信用购,交易成功,"2025041122001464411437257623 ","67126600004826000020250411Nf0000000006013640024520 ",
2025/4/11 14:01,母婴亲子,巴拉**店,bal***@ecsemir.com,巴拉巴拉童鞋运动凉鞋沙滩鞋夏新款透气防滑卡通,不计收支,62.9,,交易关闭,"2025041122001164411437998127 ","T200P2527208438853661070 ",
2025/4/11 12:36,餐饮美食,华康酒家,151******56,收钱码收款,支出,950,邮储银行储蓄卡(8719),交易成功,"2025041122001464411435424134 ","17443462055602126064414 ",
2025/4/11 12:36,信用借还,借呗,/,借呗放款至银行卡,不计收支,1000,,放款成功,"20250411102553010589140091647434 ","20250411000000000033220920959115 ",
2025/4/11 7:29,餐饮美食,小吃店,139******08,收钱码收款,支出,13,江苏银行信用购,交易成功,"2025041122001464411434606134 ","47443277583602126064414 ",
2025/4/10 18:56,生活服务,**瑜,138******91,收钱码收款,支出,129.93,江苏银行信用购&晚餐到店红包,交易成功,"2025041022001464411434129672 ","17442825889602126064414 ",
2025/4/9 8:58,日用百货,h***猪,502***@qq.com,速营野餐垫,户外防潮垫,几乎全新。尺寸190x120cm,可,支出,30,江苏银行信用购,交易成功,"2025040922001164411424548514 ","T200P2524305324340661070 ",
2025/4/7 16:33,母婴亲子,乔丹**店,qdj***@163.com,乔丹儿童宝宝学步鞋2024春秋款婴小童轻便软底运动跑鞋男童机能鞋,支出,87,江苏银行信用购,交易关闭,"2025040722001164411420009365 ","T200P2522374287601661070 ",
2025/4/7 8:13,餐饮美食,**媛,139******09,收钱码收款,支出,5,江苏银行信用购,交易成功,"2025040722001464411416351672 ","17439848009602126064414 ",
2025/4/6 18:11,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,42.9,江苏银行信用购,交易成功,"2025040622001464411415141152 ","78126600004802000020250406181146404824201299 ",
2025/4/6 17:52,餐饮美食,江记土猪肉,139******44,收钱码收款,支出,9.93,江苏银行信用购&晚餐到店红包,交易成功,"2025040622001464411412634941 ","17439331735602126064414 ",
2025/4/6 15:24,生活服务,杭州菜鸟供应链管理有限公司,gg4***@cainiao.com,菜鸟裹裹-寄件费_702667010_LP00724522490464,支出,4.5,邮储银行储蓄卡(8719),交易成功,"2025040622001464411415011257 ","CN_V1_602003345228740980 ",
2025/4/6 11:39,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,63.6,江苏银行信用购,交易成功,"2025040622001464411412694444 ","02126600004802000020250406113913404820311777 ",
2025/4/6 10:13,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|24113041628346210934|期数|202504|续期交易付款,支出,9.9,江苏银行信用购,交易成功,"20250406449403594105 ","202504061100300709340026095977 ",
2025/4/5 9:47,餐饮美食,北京烤鸭,187******60,收钱码收款,支出,42,江苏银行信用购,交易成功,"2025040522001464411409525722 ","17438176335602126064414 ",
2025/4/5 9:43,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,74.6,江苏银行信用购,交易成功,"2025040522001464411409499792 ","70126600004802000020250405094332404810948769 ",
2025/4/4 17:23,餐饮美食,北京烤鸭,187******60,收钱码收款,支出,33.93,江苏银行信用购&晚餐到店红包,交易成功,"2025040422001464411404485348 ","47437586149602126064414 ",
2025/4/4 12:23,信用借还,借呗,/,借呗放款至银行卡,不计收支,500,,放款成功,"20250404102553010589140059858170 ","20250404000000000029900971805054 ",
2025/4/4 9:55,母婴亲子,开心玩具经营部,/,开心玩具经营部,支出,200,江苏银行信用购,交易成功,"2025040422001464411404651845 ","942017052207307325100202504040955025880002 ",
2025/4/4 9:43,母婴亲子,开心玩具经营部,/,开心玩具经营部,支出,112,江苏银行信用购,交易成功,"2025040422001464411404440896 ","362017052207307325100202504040943332080000 ",
2025/4/4 8:08,日用百货,特瑞**店,ter***@163.com,特瑞洁木浆棉海绵擦厨房清洁百洁布刷锅神器去污魔力擦洗碗布家用,支出,22.9,江苏银行信用购,交易成功,"2025040422001164411404298397 ","T200P2520163381220661070 ",
2025/4/3 20:00,餐饮美食,小高米线安庆七街店,/,小高米线安庆七街店,支出,10,江苏银行信用购,交易成功,"2025040322001464411403224817 ","31126600004836000083620250403942410778 ",
2025/4/3 16:59,文化休闲,淘票**,dyz***@service.alibaba.com,《哪吒之魔童闹海》安庆中影南方影城七街店电影票,支出,69.8,江苏银行信用购,交易成功,"2025040322001164411401228073 ","T150P2518749987026661070 ",
2025/4/3 15:12,日用百货,舒星**店,186***@163.com,水晶标贴金属标签定制uv转印贴LOGO贴纸透明商标打印移丝印广告烫金定做自粘刻字撕膜留字公司防水不干胶印刷,支出,49,江苏银行信用购,交易成功,"2025040322001164411403194763 ","T200P2518930416961661070 ",
2025/4/1 19:29,日用百货,零食伴友安庆市宜秀区裕轩零食店,/,支付-金桂丽园店,支出,15.03,江苏银行信用购,交易成功,"2025040122001464411455101561 ","57126600004823000003222504017016829409875 ",
2025/3/31 17:59,餐饮美食,贺强果林超级批发行,/,【订货猿】订单号:1906647636145364992,支出,14,江苏银行信用购,交易成功,"2025033122001464411450571416 ","60126600004836000083620250331716433904 ",
2025/3/31 17:58,餐饮美食,贺强果林超级批发行,/,【订货猿】订单号:1906647244158296064,支出,34.7,江苏银行信用购,交易成功,"2025033122001464411448803785 ","32126600004836000083620250331326545624 ",
2025/3/30 9:51,餐饮美食,曾经最美,181******68,收钱码收款,支出,25,江苏银行信用购,交易成功,"2025033022001464411438959301 ","47432994810602126064414 ",
2025/3/30 8:13,爱车养车,中石化安庆石油分公司,/,石化安庆石油分公司,支出,254.24,江苏银行信用购,交易成功,"2025033022001464411438996926 ","292017092208872157130955410024000082503300264216 ",
2025/3/30 7:58,母婴亲子,玲姐烧饼,181******67,收钱码收款,支出,14,江苏银行信用购,交易成功,"2025033022001464411441776114 ","17432927029602126064414 ",
2025/3/29 9:47,餐饮美食,软水**铺,183***@139.com,乐源小吊梨汤275ml*6/12瓶冰糖雪梨汁即饮养生健康果汁饮料整箱,支出,21.15,江苏银行信用购,交易成功,"2025032922001164411438266981 ","T200P2514372169983661070 ",
2025/3/29 8:08,餐饮美食,江镇包子,183******02,收钱码收款,支出,1,江苏银行信用购,交易成功,"2025032922001464411436719220 ","17432069355602126064414 ",
2025/3/29 7:56,餐饮美食,贺强果林超级批发行,/,【订货猿】订单号:1905771035328483328,支出,98.1,江苏银行信用购,交易成功,"2025032922001464411436941626 ","20126600004836000083620250329676540226 ",
2025/3/28 20:35,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,46.5,江苏银行信用购,交易成功,"2025032822001464411436708618 ","26126600004802000020250328203501404757521427 ",
2025/3/25 18:24,日用百货,淘宝闪购,ele***@service.aliyun.com,大润发(皖江店),支出,40.9,江苏银行信用购,交易成功,"2025032522001164411424247955 ","13180600725032537125858849114 ",
2025/3/25 8:03,餐饮美食,大饼,158******37,收钱码收款,支出,3,江苏银行信用购,交易成功,"2025032522001464411421412848 ","17428610290602126064414 ",
2025/3/24 11:32,保险,众安保险,/,2025.3月保费缴清-骑行保·两轮电动车意外险-*芳,支出,21.58,江苏银行信用购,交易成功,"20250324102553010464410074012558 ","202503241100300705520026180261 ",
2025/3/22 20:36,日用百货,旺鲜生超市,/,安庆市大观区旺鲜生超市,支出,31.44,江苏银行信用购,交易成功,"2025032223001464411408093730 ","132017092208872157130904990231000042503220570410 ",
2025/3/22 13:35,餐饮美食,安庆市宜秀区严岭生鲜经营部,/,付款码支付,支出,12.4,江苏银行信用购,交易成功,"2025032222001464411407721512 ","682017052207307325102202503221335174170003 ",
2025/3/22 11:12,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,3.7,江苏银行信用购,交易成功,"2025032222001464411409583647 ","30126600004802000020250322111217404709658469 ",
2025/3/22 10:09,医疗健康,安庆市立医院,aqs***@163.com,缴费_2024172592支付宝xzz201,支出,99,江苏银行信用购,交易成功,"2025032222001464411408206843 ","20250322xzz2010035 ",
2025/3/21 12:15,餐饮美食,邓修龙,155******67,经营码交易,支出,14.92,江苏银行信用购&红包,交易成功,"2025032122001464411405509483 ","17425305031602126064414 ",
2025/3/21 8:17,餐饮美食,**媛,139******09,收钱码收款,支出,5,江苏银行信用购,交易成功,"2025032122001464411402302514 ","17425162338602126064414 ",
2025/3/20 19:54,餐饮美食,老杨全牛馆,155******15,收钱码收款,支出,8.98,江苏银行信用购&红包,交易成功,"2025032022001464411402138025 ","17424716622602126064414 ",
2025/3/20 10:14,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|24091436888345010109|期数|202503|续期交易付款,支出,9.9,江苏银行信用购,交易成功,"20250320264592704105 ","202503201100300701090031381412 ",
2025/3/19 10:29,信用借还,花呗|信用购,/,主动还款-花呗|信用购2025年03月账单,不计收支,1496.57,徽商银行储蓄卡(1491),还款成功,"2025031929020999410111345756 "," ",
2025/3/17 17:51,餐饮美食,贺强果林超级批发行,/,【订货猿】订单号:1901572150553862144,支出,39.75,江苏银行信用购&红包,交易成功,"2025031722001464411450171868 ","12126600004836000083620250317616710378 ",
2025/3/17 12:24,餐饮美食,好运来正味牛肉馆,139******98,收钱码收款,支出,9.96,花呗&红包,交易成功,"2025031722001464411445411071 ","47421854428602126064414 ",
2025/3/17 8:43,餐饮美食,**春,137******76,收钱码收款,支出,3.42,花呗&红包,交易成功,"2025031722001464411445409447 ","17421721831602126064414 ",
2025/3/16 18:44,日用百货,安庆发润家贸易有限公司,/,二维码支付,支出,106.03,江苏银行信用购&红包,交易成功,"2025031622001464411445699275 ","31P2088721085226061W03_M22132520706202503160142073 ",
2025/3/16 8:51,餐饮美食,大饼快餐,186******76,收钱码收款,支出,8.98,花呗&红包,交易成功,"2025031622001464411439529582 ","17420863128602126064414 ",
2025/3/15 21:41,数码电器,gr**店,275***@qq.com,【Gree/格力官方】新一级能效正1.5匹变频冷暖空调挂机云锦III 等多件,不计收支,3299,,交易关闭,"2025031522001164411441471980 ","T200P2498556831583661070 ",
2025/3/15 20:35,生活服务,**瑜,138******91,收钱码收款,支出,64.92,江苏银行信用购&红包,交易成功,"2025031522001464411441915925 ","17420421369602126064414 ",
2025/3/15 19:55,餐饮美食,卤校长重庆火锅(安庆店),/,美团收银909700198356231793,支出,95.97,江苏银行信用购&红包,交易成功,"2025031522001464411441673656 ","4220180330024764010461368605677641463604914 ",
2025/3/15 8:10,餐饮美食,大饼,158******37,收钱码收款,支出,5.97,花呗&红包,交易成功,"2025031522001464411437408426 ","17419974391602126064414 ",
2025/3/12 17:24,家居家装,贝贝**巾,m15***@163.com,贝贝柔洗脸巾一次性纯棉卷筒式加厚纯棉柔巾美容院专用面巾纸,支出,56,江苏银行信用购,交易成功,"2025031222001164411428625833 ","T200P2495209443550661070 ",
2025/3/9 16:23,日用百货,淘宝闪购,ele***@service.aliyun.com,拾惠客24h超市(安庆吾悦店),支出,43,花呗,交易成功,"2025030923001164411410335891 ","13160600725030932481858849114 ",
2025/3/9 16:17,宠物,泰格**店,tai***@126.com,超长粘毛器猫毛清理神器加大滚筒可撕式长杆拼接粘除灰尘不伤衣物 等多件,支出,109.07,江苏银行信用购,交易成功,"2025030922001164411412231960 ","T200P2492310108257661070 ",
2025/3/9 6:48,爱车养车,中国石油中兴大道加油站,zha***@petrochina.com.cn,中国石油-条码支付,支出,252.14,江苏银行信用购&红包,交易成功,"2025030923001464411410337540 ","17414741212073464913 ",
2025/3/8 23:26,转账红包,欧莱**店,/,退款-【充值享9.25折购物】欧莱雅购物金充740得800,不计收支,25.07,邮储银行储蓄卡(8719),退款成功,"2024030822001164411416538791*2080428890819661070_203095740716667010 ","2080428890819661070_203095740716667010 ",
2025/3/8 20:35,退款,淘宝闪购,ele***@service.aliyun.com,退款-好多购便利店(安庆店),不计收支,36.8,花呗,退款成功,"2025030822001164411408064501_13200601325030823217892849114 ","13180600725030892613402849114 ",
2025/3/8 18:01,餐饮美食,淘宝闪购,ele***@service.aliyun.com,好多购便利店(安庆店),支出,36.8,花呗,交易关闭,"2025030822001164411408064501 ","13180600725030892613402849114 ",
2025/3/8 16:43,日用百货,安庆发润家贸易有限公司,/,二维码支付,支出,139.5,江苏银行信用购&红包,交易成功,"2025030823001464411406398921 ","10P2088721085226061W03_M22132520709202503080229823 ",
2025/3/7 22:49,数码电器,技嘉**店,202***@qq.com,【活动价】英特尔i9 14代I9 /14900KF/K/KS搭技嘉小雕冰雕电竞雕主板CPU套装,支出,4436.4,花呗分期(3期)&88VIP专享花呗分期立减,交易成功,"2025030722001164411404899886 ","T200P2490481524737661070 ",
2025/3/7 21:27,日用百货,燕***y,hyz***@163.com,【官方正版】四五快读全套8册 幼小衔接 宝宝早教书 3-4-,支出,40,花呗,交易成功,"2025030722001164411405182953 ","T200P2490663182455661070 ",
2025/3/7 11:38,退款,盛千**店,you***@qq.com,退款-【活动价】修图p图专业照片婚纱照ps做图修图写真人像精修结婚登记证件照片,不计收支,1.1,花呗,退款成功,"2025030722001164411404890932_2489768904640661070_202755470378667010 ","T200P2489768904640661070 ",
2025/3/7 11:37,生活服务,盛千**店,you***@qq.com,【活动价】修图p图专业照片婚纱照ps做图修图写真人像精修结婚登记证件照片,支出,1.1,花呗,交易成功,"2025030722001164411404890932 ","T200P2489768904640661070 ",
2025/3/6 10:14,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|24113041628346210934|期数|202503|续期交易付款,支出,9.9,花呗,交易成功,"20250306101210914105 ","202503061100300709340016776514 ",
2025/3/5 18:02,餐饮美食,江美丽阿婆麻辣烫,/,美团收银909700198058208951,支出,15.82,花呗&红包,交易成功,"2025030523001464411455410952 ","5020180330024764010461368605657715124509990 ",
2025/3/5 13:48,日用百货,天**,tmc***@service.aliyun.com,【下拉详情享优惠】清风卷纸金装4层160克27卷卫生纸厕纸卷筒纸,支出,44.88,花呗,交易成功,"2025030522001164411456165324 ","T200P2488237789143661070 ",
2025/3/4 17:50,餐饮美食,贺强果林超级批发行,/,购买商品鲜枝头蓝莓等,支出,39.77,花呗&红包,交易成功,"2025030423001464411453221769 ","11P2088521461085192W03_2025030430000006313150190110702 ",
2025/3/2 14:29,餐饮美食,水果卖场,/,水果卖场【买单】消费44.00元,支出,43.98,花呗&红包,交易成功,"2025030222001464411444137249 ","30126600004822000020250302110113230266201358733935 ",
2025/3/1 21:52,餐饮美食,**花,130******45,收钱码收款,支出,15.92,花呗&红包,交易成功,"2025030122001464411440784971 ","17408371773602126064414 ",
2025/2/28 11:19,生活服务,宝智**店,143***@qq.com,彩色条幅制作广告横幅定做高档竖幅结婚礼生日宣传标语活动订制做,支出,12,花呗,交易成功,"2025022822001164411438848343 ","T200P2482309453041661070 ",
2025/2/26 12:20,餐饮美食,好运来正味牛肉馆,139******98,收钱码收款,支出,9.98,花呗&红包,交易成功,"2025022622001464411429460709 ","47405436392602126064414 ",
2025/2/24 11:34,保险,众安保险,/,2025.2月保费缴清-骑行保·两轮电动车意外险-*芳,支出,21.58,花呗,交易成功,"20250224102553010464410050924855 ","202502241100300705520017695512 ",
2025/2/23 20:14,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,34.62,花呗&红包,交易成功,"2025022323001464411420656527 ","92126600004802000020250223201412111967199760 ",
2025/2/23 18:43,餐饮美食,福泽油炸,191******06,经营码交易,支出,67.78,花呗&红包,交易成功,"2025022322001464411420383008 ","17403074309602126064414 ",
2025/2/23 17:18,餐饮美食,过把隐烧烤,/,过把隐烧烤,支出,49.92,花呗&红包,交易成功,"2025022322001464411420416256 ","98201703270643361639120100001556652502231718067269 ",
2025/2/23 11:23,餐饮美食,桂林米粉华茂店,/,桂林米粉菱湖南路店,支出,13.92,花呗&红包,交易成功,"2025022323001464411418578993 ","30P2088921985603966W03_0461368605638080729108197 ",
2025/2/21 18:22,爱车养车,中石化安庆石油分公司,/,石化安庆石油分公司,支出,266,花呗&红包,交易成功,"2025022123001464411411867268 ","052017092208872157130955410024000032502210186682 ",
2025/2/20 19:28,信用借还,花呗|信用购,/,主动还款-花呗|信用购2025年02月账单,不计收支,934.67,徽商银行储蓄卡(1491),还款成功,"2025022029020999410180748030 "," ",
2025/2/20 19:16,信用借还,花呗|信用购,/,花呗|信用购自动还款,不计收支,934.67,,还款失败,"2025022029020999410178978390 "," ",
2025/2/20 10:14,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|24091436888345010109|期数|202502|续期交易付款,支出,9.9,花呗,交易成功,"20250220952854894105 ","202502201100300701090022803079 ",
2025/2/20 8:33,信用借还,花呗|信用购,/,自动还款-花呗|信用购2025年02月账单,不计收支,239.44,余额宝,还款成功,"2025022029020999410173015610 "," ",
2025/2/20 2:38,投资理财,长信基金管理有限责任公司,/,余额宝-2025.02.19-收益发放,不计收支,0.01,余额宝,交易成功,"20250220347969257411 "," ",
2025/2/19 2:42,投资理财,长信基金管理有限责任公司,/,余额宝-2025.02.18-收益发放,不计收支,0.01,余额宝,交易成功,"20250219341010382411 "," ",
2025/2/18 2:55,投资理财,长信基金管理有限责任公司,/,余额宝-2025.02.17-收益发放,不计收支,0.01,余额宝,交易成功,"20250218336000401411 "," ",
2025/2/17 3:17,投资理财,长信基金管理有限责任公司,/,余额宝-2025.02.16-收益发放,不计收支,0.01,余额宝,交易成功,"20250217326728001411 "," ",
2025/2/16 13:43,文化休闲,新兴文体,138******37,收钱码收款,支出,35.42,花呗&红包,交易成功,"2025021622001464411451123351 ","17396846160602126064414 ",
2025/2/16 11:23,医疗健康,安庆市大观区金丽娟口腔门诊部(个体工商户),/,安庆市大观区金丽娟口腔门诊部(个体工商户),支出,3199.92,徽商银行储蓄卡(1491)&红包,交易成功,"2025021622001464411447847115 ","242017052507338883ZPZ908310930102374616112304 ",
2025/2/16 3:06,投资理财,长信基金管理有限责任公司,/,余额宝-2025.02.15-收益发放,不计收支,0.01,余额宝,交易成功,"20250216325796760411 "," ",
2025/2/15 17:15,餐饮美食,老杨全牛馆,155******15,收钱码收款,支出,63.98,花呗&红包,交易成功,"2025021522001464411447887464 ","17396109291602126064414 ",
2025/2/15 15:00,餐饮美食,安庆市宜秀区新鲜配生鲜经营部,/,付款码支付,支出,64.02,花呗&红包,交易成功,"2025021523001464411446702342 ","992017052207307325102202502151500004930003 ",
2025/2/15 9:19,餐饮美食,猪肉商铺,153******83,收钱码收款,支出,45.98,花呗&红包,交易成功,"2025021522001464411443581611 ","17395823947602126064414 ",
2025/2/15 2:58,投资理财,长信基金管理有限责任公司,/,余额宝-2025.02.14-收益发放,不计收支,0.01,余额宝,交易成功,"20250215320297211411 "," ",
2025/2/14 2:41,投资理财,长信基金管理有限责任公司,/,余额宝-2025.02.13-收益发放,不计收支,0.01,余额宝,交易成功,"20250214311648911411 "," ",
2025/2/13 5:44,投资理财,长信基金管理有限责任公司,/,余额宝-2025.02.12-收益发放,不计收支,0.01,余额宝,交易成功,"20250213311472080411 "," ",
2025/2/12 3:10,投资理财,长信基金管理有限责任公司,/,余额宝-2025.02.11-收益发放,不计收支,0.01,余额宝,交易成功,"20250212302751425411 "," ",
2025/2/11 7:25,餐饮美食,**枝,138******35,收钱码收款,支出,16.68,花呗&红包,交易成功,"2025021122001464411431265410 ","17392299007602126064414 ",
2025/2/11 7:21,餐饮美食,卖鸡店,147******70,收钱码收款,支出,40.98,余额宝&红包,交易成功,"2025021122001464411429817780 ","17392296888602126064414 ",
2025/2/11 2:34,投资理财,长信基金管理有限责任公司,/,余额宝-2025.02.10-收益发放,不计收支,0.01,余额宝,交易成功,"20250211395721936411 "," ",
2025/2/10 2:52,投资理财,长信基金管理有限责任公司,/,余额宝-2025.02.09-收益发放,不计收支,0.01,余额宝,交易成功,"20250210394130401411 "," ",
2025/2/9 2:54,投资理财,长信基金管理有限责任公司,/,余额宝-2025.02.08-收益发放,不计收支,0.01,余额宝,交易成功,"20250209385879444411 "," ",
2025/2/8 3:07,投资理财,长信基金管理有限责任公司,/,余额宝-2025.02.07-收益发放,不计收支,0.01,余额宝,交易成功,"20250208380265492411 "," ",
2025/2/7 3:17,投资理财,长信基金管理有限责任公司,/,余额宝-2025.02.06-收益发放,不计收支,0.01,余额宝,交易成功,"20250207379125294411 "," ",
2025/2/6 10:14,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|24113041628346210934|期数|202502|续期交易付款,支出,9.9,花呗,交易成功,"20250206793831624105 ","202502061100300709340008503124 ",
2025/2/6 5:38,投资理财,长信基金管理有限责任公司,/,余额宝-2025.02.05-收益发放,不计收支,0.01,余额宝,交易成功,"20250206374920321411 "," ",
2025/2/5 2:54,投资理财,长信基金管理有限责任公司,/,余额宝-2025.02.04-收益发放,不计收支,0.01,余额宝,交易成功,"20250205367997758411 "," ",
2025/2/4 3:15,投资理财,长信基金管理有限责任公司,/,余额宝-2025.02.03-收益发放,不计收支,0.01,余额宝,交易成功,"20250204363525748411 "," ",
2025/2/3 16:52,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,10.12,花呗&红包,交易成功,"2025020323001464411401955744 ","35126600004802000020250203165230111907151773 ",
2025/2/3 16:37,餐饮美食,**妹,130******40,收钱码收款,支出,32.92,花呗&红包,交易成功,"2025020322001464411402676595 ","17385718419602126064414 ",
2025/2/3 16:33,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,40.08,花呗&红包,交易成功,"2025020323001464411403243236 ","08126600004802000020250203163339111907076897 ",
2025/2/3 8:47,医疗健康,淘宝闪购,ele***@service.aliyun.com,国胜大药房(安庆金桂丽园店),支出,33,花呗,交易成功,"2025020322001164411404557804 ","13080600725020361869938849114 ",
2025/2/3 2:49,投资理财,长信基金管理有限责任公司,/,余额宝-2025.02.02-收益发放,不计收支,0.01,余额宝,交易成功,"20250203359048356411 "," ",
2025/2/2 7:50,医疗健康,淘宝闪购,ele***@service.aliyun.com,国胜大药房(安庆祥和路店),支出,22.9,花呗,交易成功,"2025020222001164411400774567 ","13070600725020228129576849114 ",
2025/2/2 2:51,投资理财,长信基金管理有限责任公司,/,余额宝-2025.02.01-收益发放,不计收支,0.01,余额宝,交易成功,"20250202351999168411 "," ",
2025/2/1 15:07,餐饮美食,安庆市宜秀区严岭生鲜经营部,/,付款码支付,支出,19.18,花呗&红包,交易成功,"2025020123001464411458476469 ","072017052207307325102202502011507005120003 ",
2025/2/1 14:51,餐饮美食,江记土猪肉,139******44,收钱码收款,支出,61.98,花呗&红包,交易成功,"2025020122001464411457325227 ","17383926695602126064414 ",
2025/2/1 10:37,日用百货,蒋年香,132******90,收钱码收款,支出,49.98,花呗&红包,交易成功,"2025020122001464411458342982 ","47383774719602126064414 ",
2025/2/1 10:36,日用百货,蒋年香,132******90,收钱码收款,支出,49.92,花呗&红包,交易成功,"2025020122001464411455967487 ","47383774156602126064414 ",
2025/2/1 10:34,日用百货,桐城市新渡大乐购购物中心,/,付款码支付,支出,80.19,花呗&红包,交易成功,"2025020123001464411458507148 ","782017052207307325102202502011034364410003 ",
2025/2/1 3:15,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.31-收益发放,不计收支,0.01,余额宝,交易成功,"20250201350442899411 "," ",
2025/1/31 2:21,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.30-收益发放,不计收支,0.01,余额宝,交易成功,"20250131343147485411 "," ",
2025/1/30 7:47,医疗健康,淘宝闪购,ele***@service.aliyun.com,国胜大药房(安庆金桂丽园店),支出,21.21,花呗,交易成功,"2025013023001164411450030130 ","13070600725013079361685849114 ",
2025/1/30 2:20,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.29-收益发放,不计收支,0.01,余额宝,交易成功,"20250130339075058411 "," ",
2025/1/29 2:47,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.28-收益发放,不计收支,0.01,余额宝,交易成功,"20250129333510531411 "," ",
2025/1/28 7:53,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,24.98,花呗&红包,交易成功,"2025012823001464411443022496 ","42126600004802000020250128075319111891730823 ",
2025/1/28 7:51,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,180.5,花呗&红包,交易成功,"2025012823001464411443973223 ","82126600004802000020250128075156111891734622 ",
2025/1/28 4:26,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.27-收益发放,不计收支,0.03,余额宝,交易成功,"20250128333144418411 "," ",
2025/1/27 14:24,餐饮美食,安庆市开发区老船长酒店,/,二维码支付,支出,252,花呗,交易成功,"2025012723001464411440674382 ","11P2088721085226061W03_0520250127007835302326 ",
2025/1/27 3:10,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.26-收益发放,不计收支,0.02,余额宝,交易成功,"20250127327564521411 "," ",
2025/1/27 2:14,退款,抖音生活服务商家,cds***@bytedance.com,退款-卖完下架70元代金券,不计收支,49.9,亲情卡(杨轩(杨轩)),退款成功,"2024122722001464411447788918_INP25012702135219030872048646184 ","2001052412270100608008507603 ",
2025/1/27 1:12,退款,抖音生活服务商家,cds***@bytedance.com,退款-元旦聚餐必囤100元代金券,不计收支,69.9,亲情卡(杨轩(杨轩)),退款成功,"2024122722001464411449712650_INP25012701121319019223350174376 ","2001052412270100603387954644 ",
2025/1/26 3:16,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.25-收益发放,不计收支,0.01,余额宝,交易成功,"20250126322122914411 "," ",
2025/1/25 4:10,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.24-收益发放,不计收支,0.01,余额宝,交易成功,"20250125318210730411 "," ",
2025/1/24 19:03,文化休闲,客都**店,sha***@163.com,手机充值,支出,6.88,花呗,交易成功,"2025012422001164411430514362 ","T100P2452618166195661070 ",
2025/1/24 18:33,退款,移动**店,gao***@126.com,退款-手机充值,不计收支,4.98,花呗,退款成功,"2025012422001164411429955536_2452928917759661070 ","T100P2452928917759661070 ",
2025/1/24 17:53,文化休闲,移动**店,gao***@126.com,手机充值,支出,4.98,花呗,交易关闭,"2025012422001164411429955536 ","T100P2452928917759661070 ",
2025/1/24 2:53,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.23-收益发放,不计收支,0.01,余额宝,交易成功,"20250124309054774411 "," ",
2025/1/24 1:11,退款,抖音生活服务商家,cds***@bytedance.com,退款-海底捞会员专享100元代金券,不计收支,73,亲情卡(杨轩(杨轩)),退款成功,"2024122422001464411437342052_INP25012401113119034717535220646 ","2001052412240100578461806900 ",
2025/1/23 6:00,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.22-收益发放,不计收支,0.01,余额宝,交易成功,"20250123307649685411 "," ",
2025/1/22 5:59,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.21-收益发放,不计收支,0.01,余额宝,交易成功,"20250122302622695411 "," ",
2025/1/21 3:11,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.20-收益发放,不计收支,0.02,余额宝,交易成功,"20250121396227132411 "," ",
2025/1/20 10:13,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|24091436888345010109|期数|202501|续期交易付款,支出,9.9,花呗,交易成功,"20250120626835774105 ","202501201100300701090013695894 ",
2025/1/20 2:53,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.19-收益发放,不计收支,0.01,余额宝,交易成功,"20250120390034821411 "," ",
2025/1/19 2:54,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.18-收益发放,不计收支,0.01,余额宝,交易成功,"20250119381202983411 "," ",
2025/1/18 19:41,餐饮美食,安庆市新皖韵食品有限公司(新皖韵),/,新皖韵金桂店(超市),支出,6.82,花呗&红包,交易成功,"2025011823001464411406917533 ","62126600004802000020250118194118404226035118 ",
2025/1/18 2:53,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.17-收益发放,不计收支,0.01,余额宝,交易成功,"20250118377149214411 "," ",
2025/1/17 3:07,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.16-收益发放,不计收支,0.01,余额宝,交易成功,"20250117374558886411 "," ",
2025/1/16 3:16,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.15-收益发放,不计收支,0.01,余额宝,交易成功,"20250116369319748411 "," ",
2025/1/15 10:46,信用借还,花呗|信用购,/,主动还款-花呗|信用购2025年01月账单,不计收支,344.48,邮储银行储蓄卡(8719),还款成功,"2025011529020999410197103501 "," ",
2025/1/15 4:25,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.14-收益发放,不计收支,0.01,余额宝,交易成功,"20250115364036857411 "," ",
2025/1/14 11:03,保险,众安保险,/,骑行保·两轮电动车意外险-*芳,支出,21.58,花呗,交易成功,"20250114554281154105 ","25011444236453310552 ",
2025/1/14 2:33,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.13-收益发放,不计收支,0.01,余额宝,交易成功,"20250114358111222411 "," ",
2025/1/13 4:00,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.12-收益发放,不计收支,0.01,余额宝,交易成功,"20250113353225796411 "," ",
2025/1/12 2:50,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.11-收益发放,不计收支,0.01,余额宝,交易成功,"20250112347900673411 "," ",
2025/1/11 2:57,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.10-收益发放,不计收支,0.01,余额宝,交易成功,"20250111338543257411 "," ",
2025/1/10 11:44,餐饮美食,金桂牛肉面,134******00,经营码交易,不计收支,18.98,亲情卡(杨轩(杨轩))&红包,交易成功,"2025011022001464411437907207 ","17364806857602126064414 ",
2025/1/10 2:43,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.09-收益发放,不计收支,0.01,余额宝,交易成功,"20250110336967177411 "," ",
2025/1/10 1:12,投资理财,余额宝,cxd***@cxfund.com.cn,余额宝-自动转入,不计收支,9.5,账户余额,交易成功,"20250110019130101000410077231880 ","20250110009130501000410051588449 ",
2025/1/9 17:58,保险,中国人民财产保险股份有限公司,/,保险理赔-退货宝补偿-订单号:2425517652252661070 保单号:25010143326636310758,收入,9.5,,交易成功,"20250109498378094105 ","202501091100300307580094808243 ",
2025/1/9 3:05,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.08-收益发放,不计收支,0.01,余额宝,交易成功,"20250109328988843411 "," ",
2025/1/8 2:42,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.07-收益发放,不计收支,0.01,余额宝,交易成功,"20250108322728229411 "," ",
2025/1/7 3:13,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.06-收益发放,不计收支,0.01,余额宝,交易成功,"20250107318538356411 "," ",
2025/1/6 22:17,收入,****5,158******66,出全新松达儿童山茶油润护霜100g,不计收支,48.8,,交易关闭,"2025010623001117391437288315 ","T200P4194064011782015629 ",
2025/1/6 14:47,退款,时尚**8,183******36,退款-加厚灰色毛呢半身裙女秋冬季配靴子的a字半裙高腰显瘦包臀短裙裤 等多件,不计收支,54.03,花呗,退款成功,"2024123122001164411404726986_2425517652254661070_advance ","T200P2425517652252661070 ",
2025/1/6 14:47,退款,时尚**8,183******36,退款-加厚灰色毛呢半身裙女秋冬季配靴子的a字半裙高腰显瘦包臀短裙裤 等多件,不计收支,45.02,花呗,退款成功,"2024123122001164411404726986_2425517652253661070_advance ","T200P2425517652252661070 ",
2025/1/6 14:47,退款,时尚**8,183******36,退款-加厚灰色毛呢半身裙女秋冬季配靴子的a字半裙高腰显瘦包臀短裙裤 等多件,不计收支,23.41,花呗,退款成功,"2024123122001164411404726986_2425517652255661070_advance ","T200P2425517652252661070 ",
2025/1/6 14:46,退款,时尚**8,183******36,退款-加厚灰色毛呢半身裙女秋冬季配靴子的a字半裙高腰显瘦包臀短裙裤 等多件,不计收支,45.02,花呗,退款成功,"2024123122001164411404726986_2425517652257661070_advance ","T200P2425517652252661070 ",
2025/1/6 14:46,退款,时尚**8,183******36,退款-加厚灰色毛呢半身裙女秋冬季配靴子的a字半裙高腰显瘦包臀短裙裤 等多件,不计收支,45.02,花呗,退款成功,"2024123122001164411404726986_2425517652256661070_advance ","T200P2425517652252661070 ",
2025/1/6 14:43,退款,时尚**8,183******36,退款-加厚灰色毛呢半身裙女秋冬季配靴子的a字半裙高腰显瘦包臀短裙裤 等多件,不计收支,54.03,花呗,退款成功,"2024123122001164411404726986_2425517652258661070_advance ","T200P2425517652252661070 ",
2025/1/6 10:15,保险,国泰财产保险有限责任公司,/,保险承保-全网运费险|24113041628346210934|期数|202501|续期交易付款,支出,9.9,花呗,交易成功,"20250106465808484105 ","202501061100300709340999449606 ",
2025/1/6 3:06,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.05-收益发放,不计收支,0.01,余额宝,交易成功,"20250106312801937411 "," ",
2025/1/5 4:01,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.04-收益发放,不计收支,0.01,余额宝,交易成功,"20250105307362631411 "," ",
2025/1/4 22:37,医疗健康,淘宝闪购,ele***@service.aliyun.com,老百姓大药房(祥和路七街一店),不计收支,22.9,亲情卡(杨轩(杨轩)),交易成功,"2025010422001164411420156837 ","13220600725010425898921849114 ",
2025/1/4 22:09,医疗健康,淘宝闪购,ele***@service.aliyun.com,国胜大药房(安庆祥和路店),不计收支,17.57,亲情卡(杨轩(杨轩)),交易成功,"2025010423001164411418684181 ","13220600725010477693635849114 ",
2025/1/4 3:05,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.03-收益发放,不计收支,0.01,余额宝,交易成功,"20250104398268251411 "," ",
2025/1/3 5:52,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.02-收益发放,不计收支,0.01,余额宝,交易成功,"20250103397484145411 "," ",
2025/1/2 2:36,投资理财,长信基金管理有限责任公司,/,余额宝-2025.01.01-收益发放,不计收支,0.01,余额宝,交易成功,"20250102387766105411 "," ",
2025/1/1 14:28,宠物,长风沙·花溪谷,/,萌宠乐园,不计收支,15.98,亲情卡(杨轩(杨轩))&红包,交易成功,"2025010122001464411406612392 ","3812660000483300037895002005368366 ",
2025/1/1 14:25,宠物,长风沙·花溪谷,/,萌宠乐园,不计收支,59.38,亲情卡(杨轩(杨轩))&红包,交易成功,"2025010122001464411406304907 ","2212660000483300037895002005309655 ",
2025/1/1 5:47,投资理财,长信基金管理有限责任公司,/,余额宝-2024.12.31-收益发放,不计收支,0.01,余额宝,交易成功,"20250101387451090411 "," ",
1 交易时间 交易分类 交易对方 对方账号 商品说明 收/支 金额 收/付款方式 交易状态 交易订单号 商家订单号 备注
2 2025/12/30 18:46 日用百货 淘宝闪购 ele***@service.aliyun.com 全好佳超市(安庆店) 支出 11.5 花呗 交易成功 2025123022001164411408785699 13180600725123005980357849114
3 2025/12/30 18:40 日用百货 淘宝闪购 ele***@service.aliyun.com 全好佳超市(安庆店) 支出 9.5 花呗 交易成功 2025123022001164411409740402 13180600725123046961873849114
4 2025/12/29 9:30 日用百货 义乌**厂 c2m***@service.aliyun.com 画画收纳册4k美术作品收集册8k画夹画册素描纸画纸a2画稿a3绘画奖状透明儿童大容量作品集收纳袋画作手提A4纸 支出 4.05 花呗 交易关闭 2025122922001164411457682310 T200P3151049235917661070
5 2025/12/29 9:20 家居家装 诗涵**店 shi***@163.com 防风衣架不锈钢防掉固定卡扣室外晾衣服掉落吹走户外晒衣架子家用 支出 21.73 花呗 交易成功 2025122922001164411459134149 T200P3151490412973661070
6 2025/12/24 12:05 日用百货 淘宝闪购 ele***@service.aliyun.com 满佳喜超市(宜秀店) 支出 7.8 花呗 交易成功 2025122422001164411432182935 13120600725122483295125849114
7 2025/12/22 18:29 医疗健康 淘宝闪购 ele***@service.aliyun.com 老百姓大药房(祥和路七街一店) 支出 15.4 花呗 交易成功 2025122222001164411425561507 13180600725122220152039849114
8 2025/12/21 17:20 餐饮美食 新皖韵生鲜超市 / 新皖韵生鲜超市 支出 7.3 花呗 交易成功 2025122122001464411417812674 33126600004802000020251221172037407323957504
9 2025/12/21 16:17 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 正新鸡排(金桂丽园店)外卖订单 支出 8.38 花呗 交易成功 2025122122001164411420550512 13160600725122115704763849114
10 2025/12/21 11:26 餐饮美食 江记土猪肉 139******44 收钱码收款 支出 10 花呗 交易成功 2025122122001464411416748644 17662876125602126064414
11 2025/12/21 11:23 餐饮美食 胖子水果蔬菜超市 187******83 收钱码收款 支出 6.24 花呗&到店支付立减券 交易成功 2025122122001464411417901096 17662874005602126064414
12 2025/12/21 11:13 医疗健康 北京烤鸭 187******60 收钱码收款 支出 35.21 花呗&现金抵价券 交易成功 2025122122001464411417383021 47662868383602126064414
13 2025/12/21 9:37 退款 wt**0 407***@qq.com 退款-骊枥高腰显瘦a字针织裙 修身半身裙女秋冬 通勤软糯宽松长裙5081 等多件 不计收支 76.38 花呗 退款成功 2025121722001164411458325882_3129155365307661070_advance T200P3129155365305661070
14 2025/12/21 9:36 退款 wt**0 407***@qq.com 退款-骊枥高腰显瘦a字针织裙 修身半身裙女秋冬 通勤软糯宽松长裙5081 等多件 不计收支 68.66 花呗 退款成功 2025121722001164411458325882_3129155365306661070_advance T200P3129155365305661070
15 2025/12/21 9:36 退款 am**店 wxx***@163.com 退款-【优惠价】格子毛呢高级感短裙女2025冬季新品气质a字显瘦百搭包臀半身裙子 不计收支 70.64 花呗 退款成功 2025121422001164411445060303_3121917816045661070_advance T200P3121917816045661070
16 2025/12/20 10:09 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|25091459225998710731|期数|202512|续期交易付款 支出 9.9 花呗 交易成功 20251220315991154105 202512201100300707310101692928
17 2025/12/19 23:01 信用借还 花呗|信用购 / 主动还款-花呗|信用购2025年12月账单 不计收支 1354.11 徽商银行储蓄卡(1491) 还款成功 2025121929020999410197938506
18 2025/12/19 19:00 餐饮美食 淘宝闪购 pin***@service.alibaba.com 超级吃货卡 支出 0.1 花呗 交易成功 2025121922001164411406096845 13190600725121931547794849114
19 2025/12/19 19:00 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 沪上阿姨·精选茶饮安庆七街店外卖订单 支出 7 花呗 交易成功 2025121922001164411409729034 13190600725121931547793849114
20 2025/12/19 14:13 数码电器 tb**4 133******15 加热鼠标垫暖桌垫220V两孔充电源线发热垫2孔8字纯铜芯充电电源线 支出 1 花呗 交易成功 2025121922001164411406085039 T200P3132111829029661070
21 2025/12/18 18:54 医疗健康 淘宝闪购 ele***@service.aliyun.com 老百姓大药房(祥和路七街一店) 支出 29.2 花呗 交易成功 2025121822001164411404420128 13180600725121895788313849114
22 2025/12/18 18:00 医疗健康 淘宝闪购 ele***@service.aliyun.com 老百姓大药房(天柱山东路一店) 支出 18.2 花呗 交易成功 2025121822001164411404490278 13180600725121899134150849114
23 2025/12/17 22:06 退款 苏朵**店 sud***@163.com 退款-【优惠价】巨好看粉色针织上衣半身连衣裙套装女秋冬季2025新款长裙ootd穿搭 不计收支 33.07 花呗 退款成功 2025121722001164411458561557_3129155365308661070 T200P3129155365308661070
24 2025/12/17 22:06 服饰装扮 wt**0 407***@qq.com 骊枥高腰显瘦a字针织裙 修身半身裙女秋冬 通勤软糯宽松长裙5081 等多件 支出 145.04 花呗 交易关闭 2025121722001164411458325882 T200P3129155365305661070
25 2025/12/17 22:06 服饰装扮 苏朵**店 sud***@163.com 【优惠价】巨好看粉色针织上衣半身连衣裙套装女秋冬季2025新款长裙ootd穿搭 支出 33.07 花呗 交易关闭 2025121722001164411458561557 T200P3129155365308661070
26 2025/12/15 19:45 退款 aj**店 sgx***@sohu.com 退款-Aji惊奇脆片饼干不规则薄脆咸味网红蔬菜办公室零食小吃休闲食品 等多件 不计收支 22.69 花呗 退款成功 2025121522001164411451801750_3124720202614661070 T200P3124720202612661070
27 2025/12/15 19:44 餐饮美食 aj**店 sgx***@sohu.com Aji惊奇脆片饼干不规则薄脆咸味网红蔬菜办公室零食小吃休闲食品 等多件 支出 44.35 花呗 交易成功 2025121522001164411451801750 T200P3124720202612661070
28 2025/12/14 17:49 餐饮美食 老杨全牛馆 155******15 收钱码收款 支出 33.5 花呗 交易成功 2025121422001464411446578092 17657057687602126064414
29 2025/12/14 11:28 退款 星优**店 qua***@163.com 退款-儿童玩具收纳桶家用大容量超大毛绒玩偶收纳神器翻盖娃娃收纳箱子 不计收支 30.56 花呗&优惠 退款成功 2025121422001164411444779581_3121917816047661070 T200P3121917816047661070
30 2025/12/14 11:28 退款 百胜**店 mir***@163.com 退款-【优惠价】百胜狐2025冬款男胖子休闲裤加绒加厚大码保暖商务男士宽松直筒裤 不计收支 160.36 花呗 退款成功 2025121422001164411447405197_3121917816046661070 T200P3121917816046661070
31 2025/12/14 11:27 母婴亲子 膳魔**店 yr***@zjhzsl.com 【优惠价】膳魔师旗舰店哈利波特儿童保温杯宝宝吸管杯学生上学直饮水杯水壶 支出 154.96 花呗 交易成功 2025121422001164411443797808 T200P3121917816048661070
32 2025/12/14 11:27 母婴亲子 tb**3 131******08 大小卷拜年服套装男童汉服冬装儿童新中式国风唐装喜庆宝宝过年服 支出 135.71 花呗 交易成功 2025121422001164411443891416 T200P3121917816049661070
33 2025/12/14 11:27 家居家装 星优**店 qua***@163.com 儿童玩具收纳桶家用大容量超大毛绒玩偶收纳神器翻盖娃娃收纳箱子 支出 30.56 花呗&优惠 交易关闭 2025121422001164411444779581 T200P3121917816047661070
34 2025/12/14 11:27 服饰装扮 am**店 wxx***@163.com 【优惠价】格子毛呢高级感短裙女2025冬季新品气质a字显瘦百搭包臀半身裙子 支出 70.64 花呗 交易关闭 2025121422001164411445060303 T200P3121917816045661070
35 2025/12/14 11:27 服饰装扮 百胜**店 mir***@163.com 【优惠价】百胜狐2025冬款男胖子休闲裤加绒加厚大码保暖商务男士宽松直筒裤 支出 160.36 花呗 交易关闭 2025121422001164411447405197 T200P3121917816046661070
36 2025/12/13 12:27 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 1点点(安庆弘阳广场店)外卖订单 支出 0.01 花呗 交易成功 2025121322001164411441435637 13120600725121315460757849114
37 2025/12/13 11:22 日用百货 水***天 188******17 小熊多功能电热锅 支出 35 花呗 交易成功 2025121322001164411442626826 T200P3119348354577661070
38 2025/12/13 11:11 餐饮美食 戴绍兵 183******17 收钱码收款 支出 10 花呗 交易成功 2025121322001464411440109001 17655955029602126064414
39 2025/12/12 18:47 医疗健康 淘宝闪购 ele***@service.aliyun.com 国胜大药房(安庆置地店) 支出 30.18 花呗 交易成功 2025121222001164411438009704 13180600725121207292200849114
40 2025/12/12 18:24 医疗健康 淘宝闪购 ele***@service.aliyun.com 华氏大药房(百悦府小区分店) 支出 45.5 花呗 交易成功 2025121222001164411435876553 13180600725121260498429849114
41 2025/12/12 16:14 生活服务 杭州菜鸟供应链管理有限公司 gg4***@cainiao.com 菜鸟裹裹-寄件费_702667010_LP00783743389754 支出 7.1 余额宝 交易成功 2025121222001464411435886435 CN_V1_602388408600680333
42 2025/12/11 0:41 投资理财 余额宝 cxd***@cxfund.com.cn 余额宝-自动转入 不计收支 6 账户余额 交易成功 20251211019130101000410081226552 20251211009130501000410054397954
43 2025/12/10 12:52 商业服务 上海淘天商业管理有限公司 / 退货宝_订单号:3095343012656661070 收入 6 账户余额 交易成功 BO2025121046363643310205 HJCAEF==500000068730107031==1560188960550010
44 2025/12/10 0:44 投资理财 余额宝 cxd***@cxfund.com.cn 余额宝-自动转入 不计收支 5.4 账户余额 交易成功 20251210019130101000410080323932 20251210009130501000410053640658
45 2025/12/9 20:47 日用百货 淘宝闪购 ele***@service.aliyun.com 公里购·精品超市(迎江店) 支出 15.39 花呗 交易成功 2025120922001164411423556269 13200600725120969794068849114
46 2025/12/9 17:55 医疗健康 淘宝闪购 ele***@service.aliyun.com 老百姓大药房(恒禾东尚小区店) 支出 42.9 花呗 交易成功 2025120922001164411423884653 13170600725120977808420849114
47 2025/12/9 11:57 保险 泰康在线财产保险股份有限公司 / 保险理赔-退货宝补偿-订单号:3101287693648661070 保单号:25120463792033010940 收入 5.4 交易成功 20251209874023074105 202512091100300309400271089738
48 2025/12/9 11:55 退款 汉御**店 138***@163.com 退款-【优惠价】燃气灶盖板罩厨房置物架猛火灶台加高电磁炉架子煤气灶燃气灶架托 不计收支 21.76 花呗 退款成功 2025113022001164411433699235_3095343012656661070_advance T200P3095343012656661070
49 2025/12/9 11:55 退款 百胜**店 mir***@163.com 退款-百胜狐加厚加棉马夹2025大码男士新款立领拼色时尚无袖马甲上衣冬 等多件 不计收支 91.28 花呗 退款成功 2025120422001164411455820037_3101287693649661070_advance T200P3101287693648661070
50 2025/12/8 1:00 投资理财 余额宝 cxd***@cxfund.com.cn 余额宝-自动转入 不计收支 9.9 账户余额 交易成功 20251208019130101000410078629179 20251208009130501000410052204990
51 2025/12/7 20:54 保险 国泰财产保险有限责任公司 / 保险退保-全网运费险-退保保费(20251129009010070000000000004410009731960) 收入 9.9 交易成功 20251207821594634105 202512071100300904610581805746
52 2025/12/7 12:03 餐饮美食 淘宝闪购 pin***@service.alibaba.com 超级吃货卡 支出 0.1 花呗 交易成功 2025120722001164411408782480 13120600725120739392715849114
53 2025/12/7 12:03 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 霸王茶姬安庆人民路店外卖订单 支出 13 花呗 交易成功 2025120722001164411410615618 13120600725120739392714849114
54 2025/12/7 1:07 投资理财 余额宝 cxd***@cxfund.com.cn 余额宝-自动转入 不计收支 5.4 账户余额 交易成功 20251207019130101000410077814329 20251207009130501000410051770586
55 2025/12/6 16:44 保险 国泰财产保险有限责任公司 / 保险理赔-退货宝补偿-订单号:3095343012657661070 保单号:25120163847479910072 收入 5.4 交易成功 20251206783057524105 202512061100300300720277751338
56 2025/12/6 14:00 生活服务 杭州菜鸟供应链管理有限公司 gg4***@cainiao.com 菜鸟裹裹-寄件费_702667010_LP00780127811508 支出 4 余额宝 交易成功 2025120623001464411404119626 CN_V1_602360896153230653
57 2025/12/6 13:41 日用百货 盼夫**店 sdv***@163.com 袖套女2025新款工作防脏秋冬季套袖护袖办公室羽绒服家务干活袖头 支出 7.9 花呗 交易成功 2025120622001164411403952069 T200P3105453866195661070
58 2025/12/6 11:19 退款 百胜**店 mir***@163.com 退款-【优惠价】百胜狐加厚加棉马夹2025大码男士新款立领拼色时尚无袖马甲上衣冬 不计收支 96.7 花呗 退款成功 2025113022001164411433759993_3095343012657661070_advance T200P3095343012657661070
59 2025/12/6 0:34 医疗健康 淘宝闪购 ele***@service.aliyun.com 老百姓大药房(祥和路七街一店) 支出 19.1 花呗 交易成功 2025120622001164411405425443 13000600725120677659982849114
60 2025/12/4 20:23 服饰装扮 正泰**牌 xia***@qq.com 拉夏贝尔深灰色加绒加厚毛呢半身裙女秋冬季高腰垂感a字鱼尾长裙 不计收支 83.3 交易关闭 2025120422001164411456220918 T200P3102457263443661070
61 2025/12/4 6:35 退款 我** 121***@qq.com 退款-时髦实用 撞色格子拼接内里毛料 秋冬新款小众宽松立领加绒马甲女 不计收支 230.15 花呗 退款成功 2025120422001164411453108581_3101287693652661070 T200P3101287693652661070
62 2025/12/4 6:35 退款 百胜**店 mir***@163.com 退款-百胜狐加厚加棉马夹2025大码男士新款立领拼色时尚无袖马甲上衣冬 等多件 不计收支 231.38 花呗 退款成功 2025120422001164411455820037_3101287693651661070 T200P3101287693648661070
63 2025/12/4 6:34 家居家装 好再**货 188******42 门后挂钩竖款包包收纳悬挂式宿舍床边挂衣钩衣柜门五段多功能衣架 支出 0.01 花呗 交易成功 2025120422001164411452294717 T200P3101344824918661070
64 2025/12/4 6:34 家居家装 好再**货 188******42 门后挂钩竖款包包收纳悬挂式宿舍床边挂衣钩衣柜门五段多功能衣架 不计收支 0.01 交易关闭 2025120422001164411451724020 T200P3101290033597661070
65 2025/12/4 6:33 家居家装 好再**货 188******42 门后挂钩竖款包包收纳悬挂式宿舍床边挂衣钩衣柜门五段多功能衣架 不计收支 2.01 交易关闭 2025120422001164411455691830 T200P3101346516498661070
66 2025/12/4 6:28 母婴亲子 ba**店 bei***@xier-inc.com 【天猫U先】babycare婴儿湿巾纸新生手口专用宝宝儿童便携装6抽 支出 5.9 花呗 交易成功 2025120422001164411452558121 T200P3101287693653661070
67 2025/12/4 6:28 服饰装扮 我** 121***@qq.com 时髦实用 撞色格子拼接内里毛料 秋冬新款小众宽松立领加绒马甲女 支出 230.15 花呗 交易关闭 2025120422001164411453108581 T200P3101287693652661070
68 2025/12/4 6:28 服饰装扮 百胜**店 mir***@163.com 百胜狐加厚加棉马夹2025大码男士新款立领拼色时尚无袖马甲上衣冬 等多件 支出 413.94 花呗 交易成功 2025120422001164411455820037 T200P3101287693648661070
69 2025/12/3 19:20 宠物 饰宠**店 213***@qq.com 猫咪零食排毛大师云杉鱼油冻干磨牙棒即食宠物补充营养狗狗零食 支出 14.42 花呗 交易成功 2025120322001164411453820284 T200P3100778617936661070
70 2025/12/2 19:42 餐饮美食 淘宝闪购 ele***@service.aliyun.com 盒马鲜生(紫悦广场店) 支出 13.6 花呗 交易成功 2025120222001164411445868247 13190600725120243645680849114
71 2025/12/2 19:22 其他 淘宝闪购 ele***@service.aliyun.com 海豚购(安庆七街店) 支出 7.4 花呗 交易成功 2025120222001164411445822177 13190600725120231009479849114
72 2025/11/30 20:30 退款 tb**8 189******65 退款-巨好看的冬装一整套大码胖mm高领打底衫叠穿马甲背心半身裙三件套 不计收支 141.3 花呗 退款成功 2025113022001164411437095307_3095343012658661070 T200P3095343012658661070
73 2025/11/30 20:29 日用百货 汉御**店 138***@163.com 【优惠价】燃气灶盖板罩厨房置物架猛火灶台加高电磁炉架子煤气灶燃气灶架托 支出 21.76 花呗 交易关闭 2025113022001164411433699235 T200P3095343012656661070
74 2025/11/30 20:29 服饰装扮 百胜**店 mir***@163.com 【优惠价】百胜狐加厚加棉马夹2025大码男士新款立领拼色时尚无袖马甲上衣冬 支出 96.7 花呗 交易关闭 2025113022001164411433759993 T200P3095343012657661070
75 2025/11/30 20:29 日用百货 天** tmc***@service.aliyun.com 高洁丝经典棉柔小Q包护垫150mm*40片无香透气姨妈巾卫生巾 等多件 支出 60.53 花呗 交易成功 2025113022001164411436797240 T200P3095343012641661070
76 2025/11/30 20:29 服饰装扮 tb**8 189******65 巨好看的冬装一整套大码胖mm高领打底衫叠穿马甲背心半身裙三件套 支出 141.3 花呗 交易关闭 2025113022001164411437095307 T200P3095343012658661070
77 2025/11/30 20:29 餐饮美食 天** tmc***@service.aliyun.com 【包邮】小康牛肉酱220g*2瓶经典即食拌饭下饭酱调味徐州特产 支出 0 交易成功 2025113022001164411437167583 T200P3095343012654661070
78 2025/11/30 20:29 日用百货 天** tmc***@service.aliyun.com 【下拉享百补优惠】立白茶籽洗洁精1.45kg*2瓶装除菌强力去油 支出 0 交易成功 2025113022001164411437532250 T200P3095343012655661070
79 2025/11/30 20:13 充值缴费 天猫超市 tmc***@service.aliyun.com 享淘卡200元面额(电子卡) 支出 200 邮储银行储蓄卡(1069) 交易成功 2025113022001164411434317751 T200P3095316084102661070
80 2025/11/30 16:00 保险 国泰财产保险有限责任公司 / 保险承保-自动续保-全网运费险 支出 9.9 花呗 交易成功 20251130102553010664410064016819 25113063539622610461
81 2025/11/26 17:25 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 中原大刀·肉饼·拌面·酸辣粉·面皮(回祥店搜王炸红包)外卖订单 支出 13.9 花呗 交易成功 2025112622001164411415793110 13170600725112698968716849114
82 2025/11/23 9:49 餐饮美食 安庆市宜秀区严岭生鲜经营部 / 付款码支付 支出 51.8 花呗 交易成功 2025112322001464411452498396 802017052207307325102202511230949474160001
83 2025/11/22 17:49 爱车养车 中石化安庆石油分公司 / 石化安庆石油分公司 支出 224.36 花呗 交易成功 2025112222001464411449933038 542017092208872157130955410024000062511220619091
84 2025/11/20 10:11 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|25091459225998710731|期数|202511|续期交易付款 支出 9.9 花呗 交易成功 20251120272357854105 202511201100300707310092908504
85 2025/11/19 22:15 家居家装 贝贝**巾 158***@163.com 贝贝柔洗脸巾一次性纯棉卷筒式加厚纯棉柔巾美容院专用面巾纸 支出 47.02 花呗 交易成功 2025111922001164411428217978 T200P3074046889608661070
86 2025/11/19 11:15 信用借还 花呗|信用购 / 主动还款-花呗|信用购2025年11月账单 不计收支 1537.65 徽商银行储蓄卡(1491) 还款成功 2025111929020999410110754631
87 2025/11/15 21:10 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 临榆炸鸡腿(回祥路店)外卖订单 支出 8.8 花呗 交易成功 2025111522001164411401177037 13210600725111564642364849114
88 2025/11/15 18:21 餐饮美食 安庆市迎江区野妹火锅店 / 商品 支出 275 花呗 交易成功 2025111522001464411404432136 0012660000482200007895089566159764
89 2025/11/15 10:05 日用百货 新皖韵生鲜超市 / 新皖韵生鲜超市 支出 43 花呗 交易成功 2025111522001464411451909874 55126600004802000020251115100517406931769518
90 2025/11/14 20:46 家居家装 贝贝**巾 158***@163.com 贝贝柔洗脸巾一次性纯棉卷筒式加厚纯棉柔巾美容院专用面巾纸 支出 51.24 花呗 交易成功 2025111422001164411452519436 T200P3063887292081661070
91 2025/11/14 20:44 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 绝味鸭脖(安庆高铁店)外卖订单 支出 20.14 花呗 交易成功 2025111422001164411452658096 13200600725111451986320849114
92 2025/11/14 18:41 餐饮美食 萍姐炸串烧烤 132******80 收钱码收款 支出 104.5 花呗&店铺会员卡优惠 交易成功 2025111422001464411451969755 47631168751602126064414
93 2025/11/14 12:36 退款 罗蒙**店 199***@163.com 退款-【优惠价】【含绵羊毛】罗蒙男士长袖半高领针织衫2025冬季新款加绒加厚毛衣 等多件 不计收支 95.06 花呗 退款成功 2025110822001164411416340473_3050313963513661070_239778517273667010 T200P3050313963511661070
94 2025/11/14 12:36 退款 罗蒙**店 199***@163.com 退款-【优惠价】【含绵羊毛】罗蒙男士长袖半高领针织衫2025冬季新款加绒加厚毛衣 等多件 不计收支 138.43 花呗 退款成功 2025110822001164411416340473_3050313963512661070_239778517274667010 T200P3050313963511661070
95 2025/11/13 12:23 日用百货 笑笑**嘿 198***@qq.com 8层彩虹疏油抹布加厚纯棉不沾油厨房专用加厚全棉食品级洗碗布巾 支出 0.01 花呗 交易成功 2025111322001164411450268648 T200P3060832512990661070
96 2025/11/13 10:01 退款 杉杉**店 sha***@126.com 退款-【优惠价】【加绒】杉杉翻领长袖T恤男2025冬季新款中年商务保暖重磅POLO衫 等多件 不计收支 117.59 花呗 退款成功 2025110822001164411415602362_3050313963517661070_advance T200P3050313963515661070
97 2025/11/13 9:59 退款 杉杉**店 sha***@126.com 退款-【优惠价】【加绒】杉杉翻领长袖T恤男2025冬季新款中年商务保暖重磅POLO衫 等多件 不计收支 131.53 花呗 退款成功 2025110822001164411415602362_3050313963516661070_advance T200P3050313963515661070
98 2025/11/13 9:59 退款 杉杉**店 sha***@126.com 退款-【优惠价】【加绒】杉杉翻领长袖T恤男2025冬季新款中年商务保暖重磅POLO衫 等多件 不计收支 107.71 花呗 退款成功 2025110822001164411415602362_3050313963519661070_advance T200P3050313963515661070
99 2025/11/13 9:58 退款 杉杉**店 sha***@126.com 退款-【优惠价】【加绒】杉杉翻领长袖T恤男2025冬季新款中年商务保暖重磅POLO衫 等多件 不计收支 121.63 花呗 退款成功 2025110822001164411415602362_3050313963520661070_advance T200P3050313963515661070
100 2025/11/11 19:01 日用百货 妙洁**店 top***@126.com 【优惠价】妙洁一次性保鲜膜套罩400只食品级专用家用保鲜套膜袋剩菜碗罩 支出 18.4 花呗 交易成功 2025111122001164411438578512 T200P3057160801661661070
101 2025/11/10 21:39 退款 三资**店 198***@163.com 退款-【优惠价】三资堂睫毛打底膏防水纤长定型卷翘不晕染钢管睫毛膏官方旗舰店 等多件 不计收支 37 花呗分期 退款成功 2025111022001164411430196297_3054713306726661070 T200P3054713306725661070
102 2025/11/10 21:39 美容美发 欧莱**店 lrl***@loreal.com 【李佳琦直播间美妆节付定金】欧莱雅第四代小蜜罐面霜水乳* 支出 0 支付成功 20251110300000108764411206746500 T10000P3050291714046661070
103 2025/11/10 21:39 美容美发 三资**店 198***@163.com 【优惠价】三资堂睫毛打底膏防水纤长定型卷翘不晕染钢管睫毛膏官方旗舰店 等多件 支出 37 花呗分期(24期) 交易关闭 2025111022001164411430196297 T200P3054713306725661070
104 2025/11/10 21:39 餐饮美食 诺特**店 jin***@163.com 【优惠价】【直播专享】诺特兰德液体钙铁锌儿营养包官方旗舰店非童氨基丁酸 支出 143.6 花呗分期(24期) 交易成功 2025111022001164411430343906 T200P3054713306728661070
105 2025/11/10 0:33 投资理财 余额宝 cxd***@cxfund.com.cn 余额宝-自动转入 不计收支 5.5 账户余额 交易成功 20251110019130101000410055357757 20251110009130501000410032520106
106 2025/11/9 13:28 商业服务 上海淘天商业管理有限公司 / 退货宝_订单号:3033725737710661070 收入 5.5 账户余额 交易成功 BO2025110916483840310205 HJCAEF==500000068730107031==1532463482690010
107 2025/11/9 12:36 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 面线时光铺(七街店)外卖订单 支出 6.69 花呗 交易成功 2025110922001164411425673205 13120600725110936206760849114
108 2025/11/9 12:05 日用百货 安庆发润家供应链有限公司 / 二维码支付 支出 45.81 花呗 交易成功 2025110922001464411425275025 31P2088721085226061W03_M2503040000404072511090035568
109 2025/11/9 1:13 投资理财 余额宝 cxd***@cxfund.com.cn 余额宝-自动转入 不计收支 5.4 账户余额 交易成功 20251109019130101000410054651592 20251109009130501000410031893117
110 2025/11/8 22:29 服饰装扮 杉杉**店 sha***@126.com 【优惠价】【加绒】杉杉翻领长袖T恤男2025冬季新款中年商务保暖重磅POLO衫 等多件 支出 633.65 花呗 交易成功 2025110822001164411415602362 T200P3050313963515661070
111 2025/11/8 22:29 服饰装扮 罗蒙**店 199***@163.com 【优惠价】【含绵羊毛】罗蒙男士长袖半高领针织衫2025冬季新款加绒加厚毛衣 等多件 支出 233.49 花呗 交易关闭 2025110822001164411416340473 T200P3050313963511661070
112 2025/11/8 22:29 其他 天** tmc***@service.aliyun.com elme艾美适0-6岁儿童牙膏含氟防蛀护齿进口宝宝孩童低泡温和 支出 20.58 花呗 交易成功 2025110822001164411418862138 T200P3050313963521661070
113 2025/11/8 22:29 日用百货 蓝月**店 tma***@bluemoon.com.cn 【优惠价】蓝月亮洗衣液家用薰衣草持久留香深层洁净除螨专用官方旗舰店正品 支出 108.69 花呗 交易成功 2025110822001164411418888688 T200P3050313963514661070
114 2025/11/8 21:37 美容美发 欧莱**店 lrl***@loreal.com 【李佳琦直播间美妆节付定金】欧莱雅第四代小蜜罐面霜水乳* 支出 0 支付成功 20251108300000008764411204244648 T10000P3050291714046661070
115 2025/11/8 21:13 转账红包 购物金 lrl***@loreal.com 【购物金】充470得500/充920得1000 支出 920 花呗 交易成功 2025110822001164411414036717 T200P3050174427196661070
116 2025/11/8 21:13 转账红包 欧莱**店 / 退款-【购物金】充470得500/充920得1000 不计收支 470 花呗 退款成功 2025110822001164411416210421*3050481036158661070_238756982926667010 3050481036158661070_238756982926667010
117 2025/11/8 21:00 转账红包 购物金 lrl***@loreal.com 【购物金】充470得500/充920得1000 支出 470 花呗 交易成功 2025110822001164411416210421 T200P3050481036158661070
118 2025/11/8 20:58 转账红包 欧莱**店 / 退款-【购物金】充470得500/充920得1000 不计收支 920 花呗 退款成功 2025110322001164411436895560*3038041920734661070_238824375618667010 3038041920734661070_238824375618667010
119 2025/11/8 15:20 商业服务 上海淘天商业管理有限公司 / 退货宝_订单号:3033433167078661070 收入 5.4 账户余额 交易成功 BO2025110803224442150205 HJCAEF==500000068730107031==1531695764350010
120 2025/11/8 14:28 退款 松达**店 nix***@163.com 退款-【优惠价】松达婴儿护肤山茶油霜宝宝秋冬润肤霜儿童面霜新生儿婴幼儿保湿霜 等多件 不计收支 20.24 花呗分期 退款成功 2025110122001164411427534912_3033725737712661070 T200P3033725737710661070
121 2025/11/8 11:17 退款 雪中**店 sno***@163.com 退款-【优惠价】雪中飞2025冬新款男士V领爸爸款分格羽绒马甲无袖背心黑色大码 不计收支 98.15 花呗 退款成功 2025110122001164411424800038_3033433167078661070_advance T200P3033433167078661070
122 2025/11/7 10:58 餐饮美食 哆啦**8 139******36 贵州特产香辣脆香出门220g香酥辣椒脆麻辣贵阳油炸农家零食香脆椒 支出 8.87 花呗 交易成功 2025110722001164411409122037 T200P3046756981683661070
123 2025/11/6 10:11 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|24113041628346210934|期数|202511|续期交易付款 支出 9.9 花呗 交易成功 20251106865100814105 202511061100300709340090046709
124 2025/11/4 17:38 餐饮美食 安庆市宜秀区严岭生鲜经营部 / 付款码支付 支出 53 花呗 交易成功 2025110422001464411449961473 312017052207307325102202511041738010020001
125 2025/11/4 14:59 爱车养车 俄罗**一 182******42 汽车脚垫隐形固定贴神器卡扣防滑耐高温双面胶魔术贴车用背胶贴片 支出 0.01 余额宝 交易成功 2025110422001164411451982362 T200P3040797363555661070
126 2025/11/3 7:19 转账红包 购物金 lrl***@loreal.com 【购物金】充470得500/充920得1000 支出 920 花呗 交易成功 2025110322001164411436895560 T200P3038041920734661070
127 2025/11/1 15:39 服饰装扮 九** lin***@msn.com 南风谷【编织旧梦】复古芥末绿钩花针织衫毛衣女秋冬立体花朵上衣 不计收支 159.1 交易关闭 2025110122001164411430726959 T200P3034386483798661070
128 2025/11/1 12:14 医疗健康 淘宝闪购 ele***@service.aliyun.com 国胜大药房(安庆祥和路店) 支出 19.41 花呗 交易成功 2025110122001164411425282762 13120600725110176217843849114
129 2025/11/1 9:38 母婴亲子 xi**2 251***@qq.com 米米哈罗女童公主裙秋冬2025新款儿童小香风连衣裙轻奢女孩礼服裙 支出 96.42 花呗分期(3期) 交易成功 2025110122001164411428123422 T200P3033534434474661070
130 2025/11/1 9:26 服饰装扮 雪中**店 sno***@163.com 【优惠价】雪中飞2025冬新款男士V领爸爸款分格羽绒马甲无袖背心黑色大码 支出 98.15 花呗 交易关闭 2025110122001164411424800038 T200P3033433167078661070
131 2025/11/1 9:21 美容美发 松达**店 nix***@163.com 【优惠价】松达婴儿护肤山茶油霜宝宝秋冬润肤霜儿童面霜新生儿婴幼儿保湿霜 等多件 支出 119.56 花呗分期(3期) 交易成功 2025110122001164411427534912 T200P3033725737710661070
132 2025/10/29 22:34 服饰装扮 义乌**司 c2m***@service.aliyun.com 【优惠价】韩系飘带发圈大肠蝴蝶结2025发绳高级马尾头绳少女半扎发饰秋冬发 支出 0.07 花呗 交易成功 2025102922001164411411778834 T200P3029024460320661070
133 2025/10/29 8:37 餐饮美食 早餐店铺 151******17 收钱码收款 支出 0.8 花呗 交易成功 2025102922001464411406517050 47616982331602126064414
134 2025/10/28 17:37 生活服务 杭州菜鸟供应链管理有限公司 gg4***@cainiao.com 菜鸟裹裹-寄件费_702667010_LP00770411951985 支出 4 余额宝 交易成功 2025102822001464411400203616 CN_V1_602294421038710524
135 2025/10/26 15:34 服饰装扮 fi**店 ant***@anta.com 【优惠价】易烊千玺同款FILA斐乐官方男梭织外套25冬新款时尚休闲防泼水上衣 不计收支 1213.46 交易关闭 2025102622001164411446931300 T200P3021661058457661070
136 2025/10/25 16:55 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 宫膳煌北京片皮烤鸭(好七·七街店)外卖订单 支出 22.2 花呗 交易成功 2025102522001164411439425827 13160600725102549076248849114
137 2025/10/25 15:24 日用百货 安庆发润家供应链有限公司 / 二维码支付 支出 0.3 花呗 交易成功 2025102522001464411438962362 10P2088721085226061W03_M2503040000404062510250084185
138 2025/10/25 15:24 日用百货 安庆发润家供应链有限公司 / 二维码支付 支出 68.97 花呗 交易成功 2025102522001464411438158367 31P2088721085226061W03_M2503040000404062510250083860
139 2025/10/23 18:48 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 詹记桃酥(安庆绿地店)外卖订单 支出 20 花呗 交易成功 2025102322001164411427223187 13180600725102386649828849114
140 2025/10/20 11:42 信用借还 花呗|信用购 / 自动还款-花呗|信用购2025年10月账单 不计收支 2048.51 邮储银行储蓄卡(8719) 还款成功 2025102029020999410122346685
141 2025/10/20 10:11 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|25091459225998710731|期数|202510|续期交易付款 支出 9.9 花呗 交易成功 20251020684454284105 202510201100300707310083491995
142 2025/10/19 17:23 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 三米粥铺(七街店)外卖订单 支出 12 花呗 交易成功 2025101922001164411400818058 13170600725101966924742849114
143 2025/10/19 12:27 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 萍姐炸串烧烤(好七·回祥店)外卖订单 支出 12.48 花呗 交易成功 2025101922001164411400955816 13120600725101983511898849114
144 2025/10/19 10:43 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 塔斯汀·中国汉堡(回祥路店)外卖订单 支出 27.6 花呗 交易成功 2025101922001164411404106871 13100600725101934291094849114
145 2025/10/18 14:49 日用百货 安庆市宜秀区嗨吃不够零食店 / 安庆经开区回祥小区店 支出 59.27 花呗 交易成功 2025101822001464411457613782 982019011062861739002125101814493807851875
146 2025/10/18 14:35 日用百货 小丁水果仓储批发零售 / 购买商品临时商品等 支出 22.94 花呗 交易成功 2025101822001464411451732899 96126600004836000083620251018782031197
147 2025/10/18 10:06 日用百货 新皖韵生鲜超市 / 新皖韵生鲜超市 支出 43.3 花呗 交易成功 2025101822001464411451372147 18126600004802000020251018100626406639402607
148 2025/10/18 8:42 信用借还 花呗|信用购 / 花呗|信用购主动还款 不计收支 2048.51 还款失败 2025101829020999410117149703
149 2025/10/16 17:12 餐饮美食 霞子金赛葡萄采摘园 151******20 收钱码收款 支出 16 花呗 交易成功 2025101622001464411438857542 17606059318602126064414
150 2025/10/15 9:03 日用百货 wa**2 842***@qq.com 得力纳米净橡皮擦干净无痕学生用集屑成条无碎屑马卡龙大号橡皮擦 支出 0.01 花呗 交易成功 2025101522001164411434733638 T200P2994845377445661070
151 2025/10/14 22:32 日用百货 快乐**货 188******78 建党节建军节手摇旗小红旗2元手拿带杆包邮8号7号五星红旗小商品 支出 0.01 花呗 交易成功 2025101422001164411431701558 T200P2994531133401661070
152 2025/10/14 17:27 商业服务 山药米糕缘 155******01 收钱码收款 支出 9.9 花呗 交易成功 2025101422001464411425448425 17604340268602126064414
153 2025/10/13 8:52 日用百货 安庆市宜秀区筠霖百货商行 / 筠霖烟酒 支出 3 花呗 交易成功 2025101322001464411412893792 512017052207307325100202510130852064730001
154 2025/10/12 18:08 母婴亲子 玲姐烧饼 181******67 收钱码收款 支出 1.2 花呗 交易成功 2025101222001464411414838425 17602637097602126064414
155 2025/10/12 18:08 母婴亲子 玲姐烧饼 181******67 收钱码收款 支出 4.8 花呗 交易成功 2025101222001464411419111825 17602636830602126064414
156 2025/10/12 17:20 餐饮美食 戴大姐柳州螺蛳粉 dzp***@sina.com 经营码交易 支出 12.5 花呗 交易成功 2025101222001464411415320948 17602608320602126064414
157 2025/10/11 19:44 服饰装扮 笑笑**嘿 198***@qq.com 高品质葡萄椰椰波点电话线发圈夏天百搭发绳耐用皮筋女扎头草莓 支出 0.01 花呗 交易成功 2025101122001164411409814310 T200P2988000086535661070
158 2025/10/9 22:38 服饰装扮 林** 175***@qq.com 格雷系灰色布艺蝴蝶结印花大肠发圈女法式优雅发绳时尚高级感头绳 支出 0.01 花呗 交易成功 2025100922001164411457249438 T200P2984498185118661070
159 2025/10/8 21:25 服饰装扮 笑笑**嘿 198***@qq.com 黑色迷你刘海夹公主头小抓夹女2025年新款侧边刘海碎发夹发卡头饰 支出 0.01 花呗 交易成功 2025100822001164411450764374 T200P2982097815506661070
160 2025/10/8 18:49 餐饮美食 贺强果林超级批发行 / 【订货猿】订单号:1975876172252119040 支出 16.82 花呗&红包 交易成功 2025100823001464411447306717 17126600004836000083620251008906343160
161 2025/10/7 18:00 商业服务 **生 187******79 收钱码收款 支出 12 花呗 交易成功 2025100723001464411440729821 47598312146602126064414
162 2025/10/7 15:11 生活服务 杭州菜鸟供应链管理有限公司 gg4***@cainiao.com 菜鸟裹裹-寄件费_702667010_LP00765846537472 支出 2 余额宝 交易成功 2025100722001464411438235006 CN_V1_602275754686850232
163 2025/10/6 10:11 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|24113041628346210934|期数|202510|续期交易付款 支出 9.9 花呗 交易成功 20251006520769094105 202510061100300709340081091052
164 2025/10/6 8:56 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 82.75 花呗 交易成功 2025100622001464411427846868 44126600004802000020251006085637406516628345
165 2025/10/5 18:45 日用百货 安庆市迎江区航哥百货经营部 / 付款码支付 支出 779 花呗&碰一下立减 交易成功 2025100522001464411429060347 492017052207307325102202510051845054500005
166 2025/10/5 17:12 爱车养车 安徽省高速石化有限公司 ahg***@watch-dog.com.cn 轻-花园东 支出 247.21 花呗&碰一下立减 交易成功 2025100522001464411428112348 29462510051711121266014893
167 2025/10/5 13:58 酒店旅游 **梅 133******68 收钱码收款 支出 10 花呗 交易成功 2025100522001464411428387837 47596439143602126064414
168 2025/10/5 13:45 信用借还 哈啰好物 / 预授权解冻 不计收支 0 解冻成功 20251005519492734105 CPR251005134512434312037333S
169 2025/10/5 13:03 餐饮美食 豪达米店 137******66 收钱码收款 支出 8 花呗 交易成功 2025100522001464411428102065 17596406154602126064414
170 2025/10/5 7:50 爱车养车 哈啰好物 zij***@hellobike.com 电动车租赁费用支付 支出 56 花呗 交易成功 2025100522001464411421779392 CPR251005075053690312037333G
171 2025/10/5 7:50 交通出行 上海钧哈网络科技有限公司 / 电动车租车预授权 不计收支 0 芝麻免押下单成功 20251005516514814105 CPR251005075043460312037333Y
172 2025/10/4 20:18 日用百货 语璇平价超市 / 商品 支出 10.5 花呗 交易成功 2025100422001464411416378326 221266000048490000451152481662803306086481
173 2025/10/4 15:41 酒店旅游 浮梁瓷茶古镇运营管理有限公司 / 古县衙观光车收费点-扫码支付 支出 35 花呗 交易成功 2025100422001464411421713504 3920170110049699758175956369341639313281858
174 2025/10/4 15:39 酒店旅游 同程 gao***@service.aliyun.com 高德地图景区门票订单 支出 114 花呗 交易成功 2025100422001464411419087331 ZF3004641000000256316650
175 2025/10/4 11:13 日用百货 **星 152******56 收钱码收款 支出 15 花呗 交易成功 2025100423001464411421629360 47595475993602126064414
176 2025/10/4 11:12 日用百货 **星 152******56 收钱码收款 支出 45 花呗 交易成功 2025100423001464411421522707 47595475576602126064414
177 2025/10/4 5:46 餐饮美食 马老大清真牛肉包子 152******67 经营码交易 支出 12 花呗 交易成功 2025100422001464411419240400 17595279651602126064414
178 2025/10/3 16:16 退款 义乌**司 c2m***@service.aliyun.com 退款-一次性防尘罩万能全盖松紧束口床罩装修防尘塑料膜家用家具保护膜 等多件 不计收支 4.64 花呗 退款成功 2025100322001164411414535031_2972501220556661070 T200P2972501220554661070
179 2025/10/3 16:15 家居家装 义乌**司 c2m***@service.aliyun.com 一次性防尘罩万能全盖松紧束口床罩装修防尘塑料膜家用家具保护膜 等多件 支出 20.3 花呗 交易成功 2025100322001164411414535031 T200P2972501220554661070
180 2025/10/2 15:55 其他 淘宝闪购 ele***@service.aliyun.com 江禾蔬菜 支出 12.3 花呗 交易成功 2025100222001164411405919778 13150600725100210448011849114
181 2025/10/2 1:12 投资理财 余额宝 cxd***@cxfund.com.cn 余额宝-自动转入 不计收支 26.84 账户余额 交易成功 20251002019130101000410021820092 20251002009130501000410004799874
182 2025/10/1 21:16 餐饮美食 淘宝闪购 e50***@alibaba-inc.com CoCo都可(苏果店)外卖订单 支出 7.9 花呗 交易成功 2025100122001164411405321565 13210600725100101488528849114
183 2025/10/1 18:15 商业服务 杭州闲鱼信息技术有限公司 xys***@service.aliyun.com 分账-基础软件服务费(2955130395908898578)扣款 支出 0.16 交易成功 2025100110032004420214649945
184 2025/10/1 18:01 退款 ok**i 137******74 退款-特别的炸街亲子装一家三口打底衫春秋长袖上衣母女装母子高端洋气 不计收支 40.59 花呗 退款成功 2025100122001164411401735115_2968855251637661070 T200P2968855251637661070
185 2025/10/1 18:01 退款 飞利**店 ali***@jumbomart.cn 退款-[母婴认证]飞利浦轻音无雾加湿器孕妇婴儿卧室家用香薰一体HU5710 不计收支 452.96 花呗&优惠 退款成功 2025100122001164411459797501_2968855251636661070 T200P2968855251636661070
186 2025/10/1 18:01 母婴亲子 ok**i 137******74 特别的炸街亲子装一家三口打底衫春秋长袖上衣母女装母子高端洋气 支出 40.59 花呗 交易关闭 2025100122001164411401735115 T200P2968855251637661070
187 2025/10/1 18:01 餐饮美食 天** tmc***@service.aliyun.com 【中秋送礼】伊利QQ星DHA125ml*16盒+A2&beta;酪蛋白纯牛奶125ml*16盒 支出 119.9 花呗 交易成功 2025100122001164411402831753 T200P2968855251635661070
188 2025/10/1 18:01 数码电器 飞利**店 ali***@jumbomart.cn [母婴认证]飞利浦轻音无雾加湿器孕妇婴儿卧室家用香薰一体HU5710 支出 452.96 花呗&优惠 交易关闭 2025100122001164411459797501 T200P2968855251636661070
189 2025/9/30 20:49 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 喜姐炸串·排骨(迎江吾悦广场金街店)外卖订单 支出 12 花呗 交易成功 2025093022001164411452618953 13200600725093036784282849114
190 2025/9/28 16:30 数码电器 均昊**店 jun***@aliyun.com 【狂欢价】秋冬新款暖风机取暖器家用客厅卧室卫生间全屋大面积速热变频节能省电立式智能语控机械自动摇头定时安全保护 支出 0.97 花呗 支付成功 20250928300000006764411235676611 T200P2356387683754661070
191 2025/9/28 0:00 日用百货 达达**b su0***@163.com 开学ins小红书同款锤子笔搞怪有趣仿真沙雕文具锤子0.5签字笔 支出 0.01 花呗 交易成功 2025092822001164411431695312 T200P2961731427087661070
192 2025/9/27 12:26 退款 摩祝**店 moz***@163.com 退款-【优惠价】黑色棒球帽女春夏季新款韩系大头围深顶宽帽檐百搭显脸小鸭舌帽男 等多件 不计收支 7.45 花呗 退款成功 2025091422001164411400086178_2933605203624661070_advance T200P2933605203623661070
193 2025/9/27 12:25 退款 摩祝**店 moz***@163.com 退款-【优惠价】黑色棒球帽女春夏季新款韩系大头围深顶宽帽檐百搭显脸小鸭舌帽男 等多件 不计收支 26.37 花呗 退款成功 2025091422001164411400086178_2933605203625661070_advance T200P2933605203623661070
194 2025/9/27 12:24 退款 tb**4 ss1***@126.com 退款-lychee帽社大头围定制CO字母棒球帽大帽檐显脸小鸭舌帽女玲珑布落 等多件 不计收支 20.93 花呗 退款成功 2025091422001164411457511370_2933605203618661070_advance T200P2933605203615661070
195 2025/9/27 10:21 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 21.5 花呗 交易成功 2025092722001464411424804311 99126600004802000020250927102100406406110063
196 2025/9/26 21:41 家居家装 帽子**馆 yik***@163.com 六爪挂钩360度旋转衣柜挂包架多功能内衣架吊带包包衣帽收纳挂勾 支出 0.01 花呗 交易成功 2025092622001164411426867688 T200P2959301391640661070
197 2025/9/24 21:49 收入 ****萍 188******45 超级软弹电动车前置儿童座椅电瓶车宝宝安全坐骑踏板车可调节椅子 收入 27 交易成功 2025092422001159421416474794 T200P2955130395908898578
198 2025/9/24 18:21 日用百货 淘宝闪购 ele***@service.aliyun.com 大润发(皖江店) 支出 61.9 花呗 交易成功 2025092422001164411410210217 13180600725092429819172849114
199 2025/9/24 16:36 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 今卤坊·卤味卤菜烤鸭饭(安庆店)外卖订单 支出 32.8 花呗 交易成功 2025092422001164411410502776 13160600725092454470260849114
200 2025/9/24 16:35 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 退款-今卤坊·卤味卤菜烤鸭饭(安庆店)外卖订单 不计收支 32.8 花呗 退款成功 2025092422001164411409452067_13160601325092459769350849114 13160600725092471628102849114
201 2025/9/24 16:33 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 今卤坊·卤味卤菜烤鸭饭(安庆店)外卖订单 支出 32.8 花呗 交易关闭 2025092422001164411409452067 13160600725092471628102849114
202 2025/9/23 22:22 日用百货 达达**b su0***@163.com 开学ins小红书同款锤子笔搞怪有趣仿真沙雕文具锤子0.5签字笔 支出 0.01 花呗 交易成功 2025092322001164411403463116 T200P2953561764151661070
203 2025/9/22 23:06 日用百货 雅** 134******58 得力橡皮擦纳米净小学生专用无屑超干净不留痕幼儿园专用铅笔橡皮 支出 0.01 花呗 交易成功 2025092222001164411453474627 T200P2951352229891661070
204 2025/9/21 17:39 餐饮美食 何记板栗 158******81 收钱码收款 支出 10 花呗 交易成功 2025092122001464411447818623 17584475637602126064414
205 2025/9/21 17:37 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 44.4 花呗 交易成功 2025092122001464411445168543 93126600004802000020250921173737406351098733
206 2025/9/21 16:59 服饰装扮 帽子**馆 yik***@163.com 一字夹刘海发夹头饰懒人编发神器碎发边夹女侧边鸭嘴夹子前额发卡 支出 0.01 花呗 交易成功 2025092122001164411449300550 T200P2948237259412661070
207 2025/9/21 12:23 退款 tb**4 ss1***@126.com 退款-lychee帽社大头围定制CO字母棒球帽大帽檐显脸小鸭舌帽女玲珑布落 等多件 不计收支 14.07 花呗 退款成功 2025091422001164411457511370_2933605203616661070_230746911548667010 T200P2933605203615661070
208 2025/9/21 12:23 退款 tb**4 ss1***@126.com 退款-lychee帽社大头围定制CO字母棒球帽大帽檐显脸小鸭舌帽女玲珑布落 等多件 不计收支 16.68 花呗 退款成功 2025091422001164411457511370_2933605203617661070_230708928501667010 T200P2933605203615661070
209 2025/9/21 12:23 退款 tb**4 ss1***@126.com 退款-lychee帽社大头围定制CO字母棒球帽大帽檐显脸小鸭舌帽女玲珑布落 等多件 不计收支 14.07 花呗 退款成功 2025091422001164411457511370_2933605203619661070_230691002126667010 T200P2933605203615661070
210 2025/9/21 12:22 退款 tb**4 ss1***@126.com 退款-lychee帽社大头围定制CO字母棒球帽大帽檐显脸小鸭舌帽女玲珑布落 等多件 不计收支 14.07 花呗 退款成功 2025091422001164411457511370_2933605203620661070_230915929956667010 T200P2933605203615661070
211 2025/9/21 12:22 退款 tb**4 ss1***@126.com 退款-lychee帽社大头围定制CO字母棒球帽大帽檐显脸小鸭舌帽女玲珑布落 等多件 不计收支 16.68 花呗 退款成功 2025091422001164411457511370_2933605203621661070_230916685614667010 T200P2933605203615661070
212 2025/9/19 19:50 服饰装扮 老兵**1 130***@163.com 法式缎面仿真丝发圈高级复古纯色大肠圈扎马尾发绳头花韩款发饰女 支出 0.01 花呗 交易成功 2025091922001164411437311265 T200P2944326865266661070
213 2025/9/19 11:57 信用借还 花呗|信用购 / 主动还款-花呗|信用购2025年09月账单 不计收支 7281.02 徽商银行储蓄卡(1491)&花呗还款立减 还款成功 2025091929020999410134109500
214 2025/9/18 16:54 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 萍姐炸串烧烤(好七·回祥店)外卖订单 支出 10.49 花呗 交易成功 2025091822001164411427713025 13160600725091879321002849114
215 2025/9/16 17:07 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 5.3 花呗 交易成功 2025091622001464411413560577 01126600004802000020250916170758406295854066
216 2025/9/15 22:33 服饰装扮 tb**8 130******32 韩国可爱小苹果刘海发夹碎发卡安可拉红高颜值侧边一字夹子发饰品 支出 0.01 余额宝 交易成功 2025091522001164411412047270 T200P2936326260376661070
217 2025/9/14 19:41 退款 大城**4 210***@qq.com 退款-「北岛AMUU原创」蓝色松紧腰a字半身裙女秋季新款百搭抽绳中长裙 不计收支 137.01 花呗 退款成功 2025091422001164411456524388_2933605203622661070 T200P2933605203622661070
218 2025/9/14 19:41 服饰装扮 摩祝**店 moz***@163.com 【优惠价】黑色棒球帽女春夏季新款韩系大头围深顶宽帽檐百搭显脸小鸭舌帽男 等多件 支出 33.82 花呗 交易关闭 2025091422001164411400086178 T200P2933605203623661070
219 2025/9/14 19:41 服饰装扮 大城**4 210***@qq.com 「北岛AMUU原创」蓝色松紧腰a字半身裙女秋季新款百搭抽绳中长裙 支出 137.01 花呗 交易关闭 2025091422001164411456524388 T200P2933605203622661070
220 2025/9/14 19:41 服饰装扮 tb**4 ss1***@126.com lychee帽社大头围定制CO字母棒球帽大帽檐显脸小鸭舌帽女玲珑布落 等多件 支出 96.5 花呗 交易关闭 2025091422001164411457511370 T200P2933605203615661070
221 2025/9/14 15:18 保险 国泰财产保险有限责任公司 / 保险承保-自动续保-全网运费险 支出 9.9 花呗 交易成功 20250914102553010664410023715520 25091459225998710731
222 2025/9/14 11:19 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 13.8 花呗 交易成功 2025091422001464411457217255 86126600004802000020250914111916406270710194
223 2025/9/14 11:07 餐饮美食 卖鸡店 147******70 收钱码收款 支出 27 花呗 交易成功 2025091422001464411459355497 17578192307602126064414
224 2025/9/13 17:24 餐饮美食 米花糖 151******88 收钱码收款 支出 11 花呗 交易成功 2025091322001464411447102862 17577554567602126064414
225 2025/9/12 21:43 爱车养车 中国石油安庆大桥加油站 zha***@petrochina.com.cn 中国石油-条码支付 支出 251 花呗 交易成功 2025091222001464411446847800 17576845937663424153
226 2025/9/11 21:03 餐饮美食 扫码点单店主 181******36 收钱码收款 支出 8 花呗 交易成功 2025091122001464411440951067 17575958214602126064414
227 2025/9/11 20:20 服饰装扮 tb**8 130******32 韩国可爱小苹果刘海发夹碎发卡安可拉红高颜值侧边一字夹子发饰品 支出 0.01 余额宝 交易成功 2025091122001164411440726863 T200P2926947144962661070
228 2025/9/10 12:05 家居家装 安居**e bet***@sina.cn 一次性床罩松紧束口沙发盖布防尘罩家具防尘膜塑料罩婴儿床罩宿舍 支出 3.48 花呗 交易成功 2025091022001164411429151759 T200P2923436427259661070
229 2025/9/9 17:23 餐饮美食 莹莹果铺 / 莹莹果铺收款 支出 16.7 花呗 交易成功 2025090922001464411426274146 0312660000489000000000725123525252
230 2025/9/7 23:02 日用百货 tb**7 192******58 高颅顶固定前额刘海卷发筒发夹无痕发根夹头发蓬松神器发根蓬松夹 支出 0.01 花呗 交易成功 2025090722001164411416939605 T200P2918413705448661070
231 2025/9/7 19:53 转账红包 杨轩(杨轩) 187******89 转账 支出 100 邮储银行储蓄卡(8719) 交易成功 20250907200040011100410056995209
232 2025/9/7 14:46 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 詹记桃酥(安庆弘阳广场店)外卖订单 支出 23 花呗 交易成功 2025090722001164411414917221 13140600725090723499305849114
233 2025/9/6 22:47 服饰装扮 平** fux***@163.com 高弹简约森系网纱大肠发圈发绳高级感扎头绳皮筋优雅百搭发绳发饰 支出 0.07 花呗 交易成功 2025090622001164411408941187 T200P2915998646953661070
234 2025/9/6 22:47 服饰装扮 平** fux***@163.com 高弹简约森系网纱大肠发圈发绳高级感扎头绳皮筋优雅百搭发绳发饰 不计收支 2.07 交易关闭 2025090622001164411408534532 T200P2916000842727661070
235 2025/9/6 19:29 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 詹记桃酥(安庆弘阳广场店)外卖订单 支出 22.6 花呗 交易成功 2025090622001164411408484869 13190600725090668235487849114
236 2025/9/6 16:36 日用百货 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 27.2 花呗 交易成功 2025090622001464411407221931 01126600004802000020250906163645406190821514
237 2025/9/6 16:24 餐饮美食 卖鸡店 147******70 收钱码收款 支出 31 花呗 交易成功 2025090622001464411405588441 17571470402602126064414
238 2025/9/6 10:10 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|24113041628346210934|期数|202509|续期交易付款 支出 9.9 花呗 交易成功 20250906192285264105 202509061100300709340071866812
239 2025/9/6 9:37 日用百货 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 6.1 花呗 交易成功 2025090622001464411400871291 24126600004802000020250906093726406185146243
240 2025/9/6 6:58 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 卢记鸡蛋煎饼·油炸(好七·店)外卖订单 支出 6.1 花呗 交易成功 2025090622001164411405360740 13060600725090618542670849114
241 2025/9/4 21:56 服饰装扮 笑笑**嘿 198***@qq.com 发夹波浪侧边两件套一字糖果金属镂空碎发发卡刘海鸭嘴发饰头饰 支出 0.01 花呗 交易成功 2025090422001164411455194245 T200P2911475856679661070
242 2025/9/3 17:18 餐饮美食 沉默 158******27 收钱码收款 支出 3 花呗 交易成功 2025090322001464411452623873 47568910927602126064414
243 2025/9/3 11:06 家居家装 tb**6 131******71 不锈钢晒鞋架阳台窗台防风挂晾鞋架子加粗晒鞋神器免打孔多功能 等多件 支出 0.01 花呗 交易成功 2025090322001164411451514276 T200P2908872014430661070
244 2025/9/2 18:57 医疗健康 淘宝闪购 ele***@service.aliyun.com 春源大药房(朝阳路店) 支出 33.5 花呗 交易成功 2025090222001164411448072589 13180600725090227229751849114
245 2025/9/2 17:51 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 爷爷家|现炒小碗菜(七街店)外卖订单 支出 13 花呗 交易成功 2025090222001164411447539090 13170600725090269881361849114
246 2025/9/2 17:43 餐饮美食 淘宝闪购 e50***@alibaba-inc.com Biangbiang面油泼面(好七·七街店)外卖订单 支出 6.8 花呗 交易成功 2025090222001164411446762288 13170600725090242436637849114
247 2025/9/2 17:32 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 桂林米粉(七街店)外卖订单 支出 10.49 花呗 交易成功 2025090222001164411447630047 13170600725090234027419849114
248 2025/9/1 21:45 服饰装扮 平** fux***@163.com 简约化妆发夹无痕鸭嘴夹刘海夹前额碎发整理神器洗脸一字夹侧边夹 支出 0.01 花呗 交易成功 2025090122001164411443018315 T200P2906861089386661070
249 2025/9/1 11:56 服饰装扮 尚轩**店 301***@qq.com 白鹿同款发夹碎发小夹子女侧边发卡头发迷你黑色小抓夹小号刘海夹 不计收支 1.8 交易关闭 2025090122001164411443755732 T200P2905985893944661070
250 2025/9/1 11:51 服饰装扮 义乌**行 c2m***@service.aliyun.com 侧边公主头小抓夹女前额黑色碎发刘海夹迷你发夹小号发卡夹子头饰 不计收支 1.98 交易关闭 2025090122001164411441493330 T200P2905845135489661070
251 2025/8/31 20:34 教育培训 安庆市宜秀区新星幼教中心 / 安庆市宜秀区新星幼教中心 支出 4500 江苏银行信用购 交易成功 2025083122001464411437897961 652017052207307325100202508312033473400001
252 2025/8/31 20:06 日用百货 安庆发润家供应链有限公司 / 二维码支付 支出 17.99 花呗&红包 交易成功 2025083122001464411441271581 10P2088721085226061W03_M2503040000404102508310403873
253 2025/8/31 11:54 家居家装 贝贝**巾 158***@163.com 贝贝柔洗脸巾一次性纯棉卷筒式加厚纯棉柔巾美容院专用面巾纸 支出 27.21 花呗 交易成功 2025083122001164411439992481 T200P2904413772035661070
254 2025/8/30 21:20 家居家装 贝贝**巾 158***@163.com 贝贝柔洗脸巾一次性纯棉卷筒式加厚纯棉柔巾美容院专用面巾纸 支出 24.21 花呗 交易成功 2025083022001164411435886285 T200P2903663857817661070
255 2025/8/30 21:17 其他 阿里**P p-s***@service.taobao.com 88VIP购物卡年卡 支出 88 花呗 交易成功 2025083022001364411434493164 T3901P2903625158406661070
256 2025/8/30 17:09 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 7饭时间-土菜馆(好七·店)外卖订单 支出 9.5 花呗 交易成功 2025083022001164411435789913 13170600725083070037786849114
257 2025/8/30 16:51 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 小高米线(七街店搜王炸红包)外卖订单 支出 6.9 花呗 交易成功 2025083022001164411434493141 13160600725083035874546849114
258 2025/8/30 9:04 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 山东五谷杂粮煎餅(好七·店)外卖订单 支出 7.38 花呗 交易成功 2025083022001164411434803327 13090600725083077774523849114
259 2025/8/27 10:46 日用百货 安庆发润家供应链有限公司 / 二维码支付 支出 46.79 花呗 交易成功 2025082722001464411424224643 20P2088721085226061W03_M2503040000404102508270174572
260 2025/8/26 21:10 生活服务 享充云 / 充电充值,用户:34967278流水号:337572782 支出 2 花呗 交易成功 2025082622001464411420510138 84126600004823000003232508267621881608697
261 2025/8/25 7:03 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 16.8 花呗&红包 交易成功 2025082522001464411412653900 84126600004802000020250825070341406059435819
262 2025/8/24 21:15 日用百货 零食伴友安庆市宜秀区裕轩零食店 / 支付-金桂丽园店 支出 14.9 花呗 交易成功 2025082422001464411411766126 88126600004823000003232508247654574308402
263 2025/8/24 17:03 日用百货 发润家弘阳广场店 / 条码支付-发润家弘阳店-M2502960000707032508240326418 支出 80.39 花呗 交易成功 2025082422001464411412080291 141266000048490000421149500276137541632045
264 2025/8/23 18:34 餐饮美食 萍姐火锅·公路夜市(安庆店) / 美团收银909700203626730104 支出 91 花呗 交易成功 2025082322001464411409269808 5220180330024764010461368606020941548405382
265 2025/8/23 10:38 日用百货 安庆发润家供应链有限公司 / 二维码支付 支出 36.79 花呗 交易成功 2025082322001464411405186408 30P2088721085226061W03_M2503040000404102508230190565
266 2025/8/22 20:21 生活服务 **瑜 138******91 收钱码收款 支出 3 花呗 交易成功 2025082222001464411406938283 17558653002602126064414
267 2025/8/22 9:23 日用百货 抖音电商商家 shg***@bytedance.com 抖音电商-多笔订单6920878074484391060等 支出 30.7 花呗 交易成功 2025082222001464411403577376 2001052508220200454037985861
268 2025/8/20 17:38 餐饮美食 赵一鸣零食安徽安庆七街店 / 二维码支付 支出 9 花呗 交易成功 2025082022001464411453745948 10P2088721085226061W03_S214H0003125082001910010511
269 2025/8/20 17:28 餐饮美食 苏家顺 156******00 收钱码收款 支出 22 花呗 交易成功 2025082022001464411455706111 17556821074602126064414
270 2025/8/20 10:18 交通出行 南京地铁运营有限责任公司 njd***@njmetro.com.cn 南京地铁(天隆寺2025-08-17 11:41:45--南京南站2025-08-17 12:41:45) 支出 3 花呗 交易成功 2025082022001464411454060339 T000002034119250817114145697747
271 2025/8/20 10:10 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|24091436888345010109|期数|202508|续期交易付款 支出 9.9 花呗 交易成功 20250820002727644105 202508201100300701090077565514
272 2025/8/20 8:44 日用百货 安庆市宜家鲜购超市 / 付款码支付 支出 28.1 花呗 交易成功 2025082022001464411452599439 552017052207307325102202508200844110590007
273 2025/8/19 12:27 信用借还 花呗|信用购 / 主动还款-花呗|信用购2025年08月账单 不计收支 2309.74 徽商银行储蓄卡(1491)&花呗还款立减 还款成功 2025081929020999410140574095
274 2025/8/17 11:09 交通出行 南京地铁运营有限责任公司 njd***@njmetro.com.cn 南京地铁(南京站2025-08-17 10:39:48--天隆寺2025-08-17 11:08:52) 支出 4 花呗 交易成功 2025081722001464411441966528 T000002011402250817103948923181
275 2025/8/16 22:31 交通出行 铁路12306 chi***@alipay.com 火车票 支出 190 花呗 交易成功 2025081622001464411440281874 M20250816261900394
276 2025/8/16 18:18 转账红包 吾王称乙 130******71 收款 支出 50 邮储银行储蓄卡(8719) 交易成功 20250816200040011100410044920228
277 2025/8/16 18:17 退款 智行火车票机票蒜芽 pay***@suanya.cn 退款-火车|沈阳北-南京|1130338074234733 不计收支 361 江苏银行信用购 退款成功 2025081622001464411436645670_20250816537751352 1130338074234733-3468397516
278 2025/8/16 18:02 退款 驰行天下票务专营店 asl***@service.taobao.com 退款-火车票在线换座 不计收支 36 江苏银行信用购 退款成功 2025081522001164411436344603_2879768568797661070 T200P2879768568797661070
279 2025/8/16 18:02 退款 阿斯兰票务专营店 tho***@service.aliyun.com 退款-火车票改签新票差额 不计收支 1083 江苏银行信用购 退款成功 2025081522001164411436083513_2879768568796661070_225845906481667010 T6800P2879768568796661070
280 2025/8/16 15:17 母婴亲子 鑫鑫宝贝便利店 139******81 收钱码收款 支出 390 邮储银行储蓄卡(8719) 交易成功 2025081622001464411438768265 17553286439602126064414
281 2025/8/16 9:29 生活服务 杭州菜鸟供应链管理有限公司 gg4***@cainiao.com 菜鸟裹裹-寄件费_702667010_LP00754366137571 支出 32 余额宝 交易成功 2025081622001464411438211561 CN_V1_602182105436430503
282 2025/8/16 5:59 交通出行 智行火车票机票蒜芽 pay***@suanya.cn 火车|沈阳北-南京|1130338074234733 支出 361 江苏银行信用购 交易关闭 2025081622001464411436645670 1130338074234733-3468397516
283 2025/8/16 5:58 退款 智行火车票机票蒜芽 pay***@suanya.cn 退款-火车|沈阳北-南京|1130338074225588 不计收支 1083 江苏银行信用购 退款成功 2025081622001464411437975853_20250816537462748 1130338074225588-3468395789
284 2025/8/16 5:55 交通出行 智行火车票机票蒜芽 pay***@suanya.cn 火车|沈阳北-南京|1130338074225588 支出 1083 江苏银行信用购 交易关闭 2025081622001464411437975853 1130338074225588-3468395789
285 2025/8/15 21:01 交通出行 沈阳地铁科技有限公司 out***@symetrotech.com 沈阳地铁-乘车(中街-浑河站-2025-08-15 21:01:00) 支出 5 花呗 交易成功 2025081522001464411436271720 IAGM20250815210104m21unxf2z0hhqx
286 2025/8/15 20:20 交通出行 阿斯兰票务专营店 tho***@service.aliyun.com 火车票改签新票差额 支出 1083 江苏银行信用购 交易关闭 2025081522001164411436083513 T6800P2879768568796661070
287 2025/8/15 20:20 交通出行 驰行天下票务专营店 asl***@service.taobao.com 火车票在线换座 支出 36 江苏银行信用购 交易关闭 2025081522001164411436344603 T200P2879768568797661070
288 2025/8/15 18:11 交通出行 沈阳地铁科技有限公司 out***@symetrotech.com 沈阳地铁-乘车(浑河站-中街-2025-08-15 18:11:26) 支出 5 花呗 交易成功 2025081522001464411434192622 IAGM202508151811319gzoawmatv3nkj
289 2025/8/15 12:55 交通出行 铁路12306 chi***@alipay.com 退款-火车票 不计收支 72 江苏银行信用购 退款成功 2025081322001464411428939197_M2025081517031487 M2025081394500542
290 2025/8/15 11:09 生活服务 伊辉朋 150******12 收钱码收款 支出 150 花呗 交易成功 2025081522001464411430645253 17552273559602126064414
291 2025/8/14 18:11 餐饮美食 沈阳市浑南区琥珀狼头山火锅店 / 沈阳市浑南区琥珀狼头山火锅店扫码收款 支出 270 花呗 交易成功 2025081422001464411429712119 10126600004822000020250814110113230166201966602877
292 2025/8/13 17:17 交通出行 铁路12306 chi***@alipay.com 火车票 支出 1083 江苏银行信用购 交易成功 2025081322001464411428939197 M2025081394500542
293 2025/8/13 8:22 交通出行 铁路12306 chi***@alipay.com 退款-火车票 不计收支 388 江苏银行信用购 退款成功 2025081222001464411423718207_M2025081387853608 M2025081285799532
294 2025/8/13 7:01 交通出行 铁路12306 chi***@alipay.com 退款-火车票 不计收支 397 江苏银行信用购 退款成功 2025081222001464411425167393_M2025081387230166 M20250812236916005
295 2025/8/13 4:13 退款 阿斯兰票务专营店 tho***@service.aliyun.com 退款-抢票差额补款费用 不计收支 317.5 花呗 退款成功 2025081222001164411423403919_2875264251048661070_225442416660667010 T6800P2875264251048661070
296 2025/8/13 4:13 退款 阿斯**店 tho***@service.aliyun.com 退款-南京到沈阳北的火车票 不计收支 346 花呗 退款成功 2025081222001164411423551503_2875185588412661070_225445692035667010 T6800P2875185588412661070
297 2025/8/13 4:13 退款 驰行天下票务专营店 asl***@service.taobao.com 退款-飞猪预约购票权益套餐 不计收支 20 花呗 退款成功 2025081222001164411423571488_2875543320857661070 T200P2875543320857661070
298 2025/8/13 4:13 退款 飞猪机票官方旗舰店 asl***@service.taobao.com 退款-专人抢 不计收支 25 花呗 退款成功 2025081222001164411424928646_2875163305420661070 T200P2875163305420661070
299 2025/8/12 23:08 交通出行 铁路12306 chi***@alipay.com 退款-火车票 不计收支 361 江苏银行信用购 退款成功 2025081222001464411423453052_M2025081286407038 M2025081285556350
300 2025/8/12 22:37 交通出行 铁路12306 chi***@alipay.com 退款-火车票 不计收支 14 江苏银行信用购 退款成功 2025081222001464411423013226_M2025081286124323 M2025081285764536
301 2025/8/12 22:05 交通出行 铁路12306 chi***@alipay.com 火车票 支出 388 江苏银行信用购 交易关闭 2025081222001464411423718207 M2025081285799532
302 2025/8/12 22:04 交通出行 铁路12306 chi***@alipay.com 火车票 支出 397 江苏银行信用购 交易关闭 2025081222001464411425167393 M20250812236916005
303 2025/8/12 22:01 交通出行 铁路12306 chi***@alipay.com 火车票 支出 407 江苏银行信用购 交易成功 2025081222001464411423013226 M2025081285764536
304 2025/8/12 21:43 交通出行 驰行天下票务专营店 asl***@service.taobao.com 飞猪预约购票权益套餐 支出 20 花呗 交易关闭 2025081222001164411423571488 T200P2875543320857661070
305 2025/8/12 21:42 交通出行 驰行天下票务专营店 asl***@service.taobao.com 飞猪预约购票权益套餐 不计收支 20 交易关闭 2025081222001164411423514700 T200P2875489465746661070
306 2025/8/12 21:42 交通出行 铁路12306 chi***@alipay.com 火车票 支出 361 江苏银行信用购 交易关闭 2025081222001464411423453052 M2025081285556350
307 2025/8/12 19:50 交通出行 阿斯兰票务专营店 tho***@service.aliyun.com 抢票差额补款费用 支出 317.5 花呗 交易关闭 2025081222001164411423403919 T6800P2875264251048661070
308 2025/8/12 17:50 交通出行 飞猪机票官方旗舰店 asl***@service.taobao.com 专人抢 支出 25 花呗 交易关闭 2025081222001164411424928646 T200P2875163305420661070
309 2025/8/12 17:47 交通出行 驰行天下票务专营店 asl***@service.taobao.com 飞猪预约购票权益套餐 不计收支 20 交易关闭 2025081222001164411422978353 T200P2875180082646661070
310 2025/8/12 17:24 交通出行 阿斯**店 tho***@service.aliyun.com 南京到沈阳北的火车票 支出 346 花呗 交易关闭 2025081222001164411423551503 T6800P2875185588412661070
311 2025/8/12 10:09 餐饮美食 美团 zxp***@meituan.com 北陵公园-美团App-25081211100400001302748752525949 支出 20 花呗 交易成功 2025081222001464411421182942 20250812100925U91981556572754504
312 2025/8/9 13:12 餐饮美食 沈阳市沈河区铁板油炸餐饮经营店 / 沈阳市沈河区铁板油炸餐饮经营店 支出 15 花呗 交易成功 2025080922001464411410244886 992017052507338883ZPZ908650027830485509131225
313 2025/8/8 19:49 医疗健康 鑫荣大药房 151******00 收钱码收款 支出 10 花呗 交易成功 2025080822001464411409682399 17546537786602126064414
314 2025/8/7 16:12 餐饮美食 上海新上铁实业发展集团有限公司 xin***@aliyun.com NJZ南京回味鸭血粉丝汤店 支出 40 花呗 交易成功 2025080722001464411403287527 25080716121731113347492848160769
315 2025/8/7 14:52 交通出行 南京地铁运营有限责任公司 njd***@njmetro.com.cn 南京地铁(南京南站2025-08-07 14:15:35--南京站2025-08-07 14:51:50) 支出 5 花呗 交易成功 2025080722001464411405576630 T000002034408250807141535578520
316 2025/8/7 10:46 餐饮美食 安庆麦陇香食品股份有限公司 / 安庆麦陇香食品股份有限公司 支出 13.86 花呗 交易成功 2025080722001464411401829101 58126600004802000020250807104640405863565796
317 2025/8/7 8:49 日用百货 零食伴友安庆市宜秀区裕轩零食店 / 支付-金桂丽园店 支出 10.46 花呗 交易成功 2025080722001464411401441431 33126600004823000003242508073174744411949
318 2025/8/6 17:35 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 这一碗·川湘小碗菜(七街店)外卖订单 支出 7.8 花呗 交易成功 2025080622001164411402371223 13170600725080675560666849114
319 2025/8/6 13:22 交通出行 铁路12306 chi***@alipay.com 火车票 支出 315 花呗 交易成功 2025080622001464411459853677 M2025080627389199
320 2025/8/6 13:09 交通出行 铁路12306 chi***@alipay.com 退款-火车票 不计收支 1083 花呗 退款成功 2025080522001464411452772510_M20250806278633904 M2025080516710606
321 2025/8/6 12:07 退款 江苏**务 / 退款-合肥到苏家屯的火车票 不计收支 335.5 江苏银行信用购 退款成功 2025080622001164411458286450*2864736949067661070_224497058843667010 2864736949067661070_224497058843667010
322 2025/8/6 11:50 退款 江苏**务 / 退款-合肥到苏家屯的火车票 不计收支 335.5 江苏银行信用购 退款成功 2025080622001164411458286450*2864736949067661070_224535468199667010 2864736949067661070_224535468199667010
323 2025/8/6 11:46 退款 江苏**务 / 退款-合肥到苏家屯的火车票 不计收支 335.5 江苏银行信用购 退款成功 2025080622001164411458286450*2864736949067661070_224744269273667010 2864736949067661070_224744269273667010
324 2025/8/6 11:31 退款 驰行**店 asl***@service.taobao.com 退款-专人定制下铺 不计收支 45 江苏银行信用购 退款成功 2025080622001164411457870529_2864736949068661070 T200P2864736949068661070
325 2025/8/6 11:30 退款 江苏**务 623***@qq.com 退款-合肥到苏家屯的火车票 不计收支 72 江苏银行信用购 退款成功 2025080622001164411458286450_2864736949067661070_224492270956667010 T6800P2864736949067661070
326 2025/8/6 11:28 交通出行 驰行**店 asl***@service.taobao.com 专人定制下铺 支出 45 江苏银行信用购 交易关闭 2025080622001164411457870529 T200P2864736949068661070
327 2025/8/6 11:28 交通出行 江苏**务 623***@qq.com 合肥到苏家屯的火车票 支出 1131 江苏银行信用购 交易成功 2025080622001164411458286450 T6800P2864736949067661070
328 2025/8/6 10:43 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 4.2 花呗 交易成功 2025080622001464411456138674 90126600004802000020250806104310405853248200
329 2025/8/6 10:11 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|24113041628346210934|期数|202508|续期交易付款 支出 9.9 花呗 交易成功 20250806838313254105 202508061100300709340062693907
330 2025/8/5 8:46 交通出行 铁路12306 chi***@alipay.com 火车票 支出 1083 花呗分期(3期) 交易关闭 2025080522001464411452772510 M2025080516710606
331 2025/8/3 9:38 日用百货 安庆市沪超比那多超市 / 3.01739E+29 支出 31.9 花呗 交易成功 2025080322001464411445839708 0312660000489000009000071080125215
332 2025/8/2 17:34 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 安庆程记烤鸭(好七·店)外卖订单 支出 14.5 花呗 交易成功 2025080222001164411445521173 13170600725080245520716849114
333 2025/8/2 15:47 爱车养车 安徽省高速石化有限公司 ahg***@watch-dog.com.cn 非-顺安北 支出 120 花呗 交易成功 2025080222001464411442335259 288420250802154649623
334 2025/8/2 15:47 爱车养车 安徽省高速石化有限公司 ahg***@watch-dog.com.cn 轻-顺安北 支出 244 花呗&碰一下立减 交易成功 2025080222001464411442990242 28842508021546201048382683
335 2025/8/2 11:00 日用百货 x***3 147******51 南京山姆雨花台区带进店+代结账服务,每天在店,带你入,自己逛 支出 7.76 花呗 交易成功 2025080222001164411443300849 T200P2858904552646661070
336 2025/8/1 18:21 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 苏客饭堂(郁金香路店)外卖订单 支出 14.3 花呗 交易成功 2025080122001164411441764978 13180600725080137233028849114
337 2025/7/31 21:32 日用百货 d***o l_d***@163.com 咖宝重装巨人和特警巨人,还有几个名创买的单独的,就是图片这些 支出 70 邮储银行储蓄卡(8719) 交易成功 2025073122001164411439504431 T200P2856979994823661070
338 2025/7/31 18:25 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 百川记·川味凉拌菜外卖订单 支出 12.3 花呗 交易成功 2025073122001164411436083390 13180600725073193907600849114
339 2025/7/31 12:22 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 正宗淮南牛肉汤(托乐嘉店)外卖订单 支出 8.08 花呗 交易成功 2025073122001164411435356825 13120600725073109729032849114
340 2025/7/30 19:41 餐饮美食 开心果园景明佳园店 / 购买商品香焦等 支出 3.1 花呗 交易成功 2025073022001464411430975205 29126600004836000083620250730684658240
341 2025/7/30 19:34 日用百货 雨花台区梓封百货店(个体工商户) / 南京雨花台区景明佳园店 支出 40.47 花呗 交易成功 2025073022001464411431170734 952019011062861739002125073019340101290641
342 2025/7/30 11:26 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 拌将麻辣拌·麻辣烫(软件大道店)外卖订单 支出 10.3 花呗 交易成功 2025073022001164411431284201 13110600725073036572316849114
343 2025/7/30 11:18 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 永和大王·现磨豆浆·卤肉饭·早餐粥·盖浇饭(雨花世茂NJ024店)外卖订单 支出 7.7 花呗 交易成功 2025073022001164411430425548 13110600725073058553362849114
344 2025/7/29 17:42 日用百货 顺星便利店 / 顺星便利店 支出 8 花呗 交易成功 2025072922001464411428082020 8612660000482200007895006663265295
345 2025/7/29 17:00 交通出行 南京交通一卡通有限公司 njc***@163.com 公交-46 路(基础票价:2.0元)-车号[338813] 2025-07-29 17:00:52 支出 2 花呗 交易成功 2025072922001464411427629539 20250729170054653002350
346 2025/7/29 14:38 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 库迪咖啡(南京夫子庙瞻园奥莱店)外卖订单 支出 6.49 花呗 交易成功 2025072922001164411426398919 13140600725072934840632849114
347 2025/7/28 20:17 餐饮美食 开心果园景明佳园店 / 购买商品宁夏麒麟西瓜等 支出 9.6 花呗 交易成功 2025072822001464411422566792 02126600004836000083620250728921884795
348 2025/7/28 16:56 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 融柳·大铁牛螺蛳粉(喜马拉雅店)外卖订单 支出 6.99 花呗 交易成功 2025072822001164411423886408 13160600725072830170339849114
349 2025/7/28 13:04 交通出行 南京地铁运营有限责任公司 njd***@njmetro.com.cn 南京地铁(天隆寺2025-07-28 12:57:32--软件大道2025-07-28 13:04:28) 支出 2 花呗 交易成功 2025072822001464411422316857 T000002034107250728125732922576
350 2025/7/28 12:51 退款 牛得钢·齐齐哈尔烤肉自助(宜悦城店) / 退款-美团收银909700202724549027 不计收支 50 花呗 退款成功 2025072822001464411419469979_3420180330024764010461368605962927281312995 3420180330024764010461368605962539032202995
351 2025/7/28 11:19 餐饮美食 牛得钢·齐齐哈尔烤肉自助(宜悦城店) / 美团收银909700202724549027 支出 50 花呗 交易关闭 2025072822001464411419469979 3420180330024764010461368605962539032202995
352 2025/7/28 10:17 交通出行 南京地铁运营有限责任公司 njd***@njmetro.com.cn 南京地铁(蒋王庙2025-07-28 09:29:09--天隆寺2025-07-28 10:16:34) 支出 5 花呗 交易成功 2025072822001464411418636090 T000019081914250728092909232739
353 2025/7/28 8:59 医疗健康 中国医学科学院皮肤病医院 / 中国医学科学院皮肤病医院 支出 76.4 花呗 交易成功 2025072822001464411418654469 26106600004802000020250728085910405758025712
354 2025/7/28 8:38 餐饮美食 杂粮煎饼 / 杂粮煎饼 支出 9 花呗 交易成功 2025072822001464411418582458 1212660000481800007895006657693672
355 2025/7/28 8:34 交通出行 南京地铁运营有限责任公司 njd***@njmetro.com.cn 南京地铁(软件大道2025-07-28 07:54:58--蒋王庙2025-07-28 08:34:21) 支出 5 花呗 交易成功 2025072822001464411419863557 T000002034207250728075458131277
356 2025/7/27 20:32 餐饮美食 开心果园景明佳园店 / 购买商品美都麒麟瓜等 支出 10.2 花呗 交易成功 2025072722001464411418886930 65126600004836000083620250727637667736
357 2025/7/27 20:28 日用百货 雨花台区梓封百货店(个体工商户) / 南京雨花台区景明佳园店 支出 34.2 花呗 交易成功 2025072722001464411418119467 852019011062861739002125072720285609563760
358 2025/7/26 14:17 爱车养车 宣城市泾县蔡村加油站 / 宣城市泾县蔡村加油站 支出 300 花呗 交易成功 2025072622001464411414757862 122017052207307325100202507261417123620000
359 2025/7/25 21:34 交通出行 哈啰出行 zij***@hellobike.com 哈啰助力车骑行 支出 15 江苏银行信用购 交易成功 2025072522001464411410803127 CPR250725213447198312037333J
360 2025/7/24 20:54 餐饮美食 好想来品牌零食 / 安庆经开区回祥小区店 支出 23.58 花呗 交易成功 2025072422001464411406630680 882019011062861739002125072420540805496392
361 2025/7/24 10:39 日用百货 发润家连锁超市七街店 / 条码支付-发润家七街店-M2503040000404102507240157272 支出 12.95 花呗 交易成功 2025072422001464411402885746 021266000048250000705209318573250724
362 2025/7/23 15:23 餐饮美食 安庆市迎江区彦林食品店 / 安庆市迎江区彦林食品店 支出 6 花呗 交易成功 2025072322001464411401171457 542017052207307325100202507231523234280000
363 2025/7/21 16:45 日用百货 安庆市沪超比那多超市 / 3.01739E+29 支出 8.6 花呗 交易成功 2025072122001464411451417429 3712660000489000009000752480125202
364 2025/7/21 7:48 餐饮美食 香酥烤馒头 187******18 收钱码收款 支出 2 花呗 交易成功 2025072122001464411447623584 17530552839602126064414
365 2025/7/21 7:45 餐饮美食 杂货铺 131******91 收钱码收款 支出 18 花呗 交易成功 2025072122001464411447877126 47530551269602126064414
366 2025/7/21 7:41 餐饮美食 卖鸡店 147******70 收钱码收款 支出 110 花呗 交易成功 2025072122001464411447676033 47530548620602126064414
367 2025/7/20 11:08 日用百货 发润家连锁超市七街店 / 条码支付-发润家七街店-M2503040000404102507200242554 支出 66.2 花呗 交易成功 2025072022001464411446561491 261266000048250000705151272259250720
368 2025/7/20 10:50 信用借还 花呗|信用购 / 自动还款-花呗|信用购2025年07月账单 不计收支 1401.32 徽商银行储蓄卡(1491) 还款成功 2025072029020999410192042947
369 2025/7/20 10:10 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|24091436888345010109|期数|202507|续期交易付款 支出 9.9 花呗 交易成功 20250720663064614105 202507201100300701090068071911
370 2025/7/16 0:36 转账红包 杨轩(杨轩) 187******89 转账 支出 850 徽商银行储蓄卡(1491) 交易成功 20250716200040011100410027907463
371 2025/7/15 16:26 日用百货 发润家连锁超市七街店 / 条码支付-发润家七街店-M2503040000404082507150154423 支出 79.28 花呗 交易成功 2025071522001464411427396942 611266000048250000705080097256250715
372 2025/7/15 15:38 医疗健康 安庆市立医院 aqs***@163.com 移动支付 支出 12.1 花呗 交易成功 2025071522001464411427441956 2025071523040015_153858_26
373 2025/7/13 19:04 餐饮美食 商户_汪丹丹 / 亮厨 支出 208 花呗 交易成功 2025071323001464411419756276 902017052207307325100202507131904526730000
374 2025/7/13 10:12 日用百货 发润家连锁超市七街店 / 条码支付-发润家七街店-M2503040000404042507130157024 支出 24.42 花呗 交易成功 2025071322001464411418451819 481266000048250000705045434275250713
375 2025/7/12 7:40 餐饮美食 马老大清真牛肉包子 152******67 经营码交易 支出 9.6 花呗 交易成功 2025071222001464411412097946 17522772152602126064414
376 2025/7/12 7:39 母婴亲子 玲姐烧饼 181******67 收钱码收款 支出 11 花呗 交易成功 2025071222001464411410893386 17522771449602126064414
377 2025/7/11 16:53 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 21.1 花呗 交易成功 2025071122001464411410834804 20126600004802000020250711165300405583940516
378 2025/7/11 0:47 投资理财 余额宝 cxd***@cxfund.com.cn 余额宝-自动转入 不计收支 39.76 账户余额 交易成功 20250711019130101000410052698061 20250711009130501000410052509994
379 2025/7/10 18:45 商业服务 杭州闲鱼信息技术有限公司 xys***@service.aliyun.com 分账-基础软件服务费(2816792256337457277)扣款 支出 0.24 交易成功 2025071010032004970292665242
380 2025/7/10 18:04 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 临榆炸鸡腿(七街商业街店)外卖订单 支出 7.9 花呗 交易成功 2025071022001164411405482583 13180600725071021603342849114
381 2025/7/10 17:39 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 冷记老冰粉(七街店)外卖订单 支出 9.9 花呗 交易成功 2025071022001164411407649943 13170600725071041113814849114
382 2025/7/9 13:30 日用百货 天** tmc***@service.aliyun.com 【李昀锐同款】下拉享优惠清风金装卷纸4层加厚厕纸卫生纸巾整箱 等多件 支出 89.85 花呗 交易成功 2025070922001164411401505382 T200P2820717661407661070
383 2025/7/9 8:54 日用百货 天** tmc***@service.aliyun.com 【李昀锐同款】下拉享优惠清风金装卷纸4层加厚厕纸卫生纸巾整箱 不计收支 114.39 交易关闭 2025070922001164411400512645 T200P2820304020942661070
384 2025/7/8 15:37 日用百货 天** tmc***@service.aliyun.com 【李昀锐同款】下拉享优惠清风抽纸厚柔金装4层M码面巾纸巾卫生纸 支出 91.42 花呗 交易成功 2025070822001164411457658078 T200P2819374934128661070
385 2025/7/7 10:23 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 54.9 花呗 交易成功 2025070722001464411450617938 79126600004802000020250707102325405545183573
386 2025/7/6 18:11 收入 ****人 198***@qq.com 学院风套装,轻微穿着痕迹,适合儿童。套装包括针织开衫、白衬衫 收入 40 交易成功 2025070622001157971427565926 T200P2816792256337457277
387 2025/7/6 14:04 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 雅克雅思(七街店)外卖订单 支出 3 花呗 交易成功 2025070622001164411448378773 13140600725070609796572849114
388 2025/7/6 11:36 其他 淘宝闪购 ele***@service.aliyun.com 江禾蔬菜 支出 10.79 花呗 交易成功 2025070622001164411447274170 13110600725070670944268849114
389 2025/7/6 10:10 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|24113041628346210934|期数|202507|续期交易付款 支出 9.9 花呗 交易成功 20250706488993424105 202507061100300709340053277015
390 2025/7/5 12:09 日用百货 发润家弘阳广场店 / 条码支付-发润家弘阳店-M2502960000707072507050032010 支出 57.74 花呗 交易成功 2025070522001464411442635119 551266000048490000451145861578388088422430
391 2025/7/1 17:04 日用百货 发润家连锁超市七街店 / 条码支付-发润家七街店-M2503040000404082507010129086 支出 61.86 花呗 交易成功 2025070122001464411428551351 741266000048250000705876028086250701
392 2025/6/29 18:04 医疗健康 淘宝闪购 ele***@service.aliyun.com 老百姓大药房(官圣公路店) 支出 49.76 花呗 交易成功 2025062922001164411420772329 13180600725062984286483849114
393 2025/6/29 9:07 爱车养车 中石化安庆石油分公司 / 石化安庆石油分公司 支出 253.18 花呗 交易成功 2025062922001464411417292386 052017092208872157130955410024000082506290419293
394 2025/6/27 17:05 退款 若妍**7 325***@qq.com 退款-2025新款亲子装一家三四口短袖T恤夏季拼色户外全家服活动装 等多件 不计收支 30.74 江苏银行信用购 退款成功 2025061822001164411426806595_2616722799940661070_219146630856667010 T200P2616722799939661070
395 2025/6/27 17:05 退款 若妍**7 325***@qq.com 退款-2025新款亲子装一家三四口短袖T恤夏季拼色户外全家服活动装 等多件 不计收支 46.52 江苏银行信用购 退款成功 2025061822001164411426806595_2616722799941661070_219146630857667010 T200P2616722799939661070
396 2025/6/26 16:17 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 老城小店·5566炸串(好七·店)外卖订单 支出 5 中国银行储蓄卡(4028)&中国银行立减 交易成功 2025062622001164411406397936 13160600725062695843102849114
397 2025/6/26 13:21 退款 山岛**店 285***@qq.com 退款-【狂欢价】美式坎肩宽松背心女夏外穿工字白色内搭纯棉无袖t恤健身运动上衣 等多件 不计收支 26.91 江苏银行信用购 退款成功 2025061822001164411425657048_2616259764653661070_advance T200P2616259764651661070
398 2025/6/26 13:20 退款 山岛**店 285***@qq.com 退款-【狂欢价】美式坎肩宽松背心女夏外穿工字白色内搭纯棉无袖t恤健身运动上衣 等多件 不计收支 26.91 江苏银行信用购 退款成功 2025061822001164411425657048_2616259764652661070_advance T200P2616259764651661070
399 2025/6/26 13:19 退款 山岛**店 285***@qq.com 退款-【狂欢价】美式坎肩宽松背心女夏外穿工字白色内搭纯棉无袖t恤健身运动上衣 等多件 不计收支 26.91 江苏银行信用购 退款成功 2025061822001164411425657048_2616259764654661070_advance T200P2616259764651661070
400 2025/6/26 8:45 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 81.5 花呗 交易成功 2025062622001464411403403391 45126600004802000020250626084521405444061290
401 2025/6/25 10:47 餐饮美食 安庆市宜秀区严岭生鲜经营部 / 付款码支付 支出 7.8 花呗 交易成功 2025062522001464411400550675 732017052207307325102202506251047213070001
402 2025/6/25 9:35 医疗健康 安庆市立医院 / 医保支付(不含自费) 支出 0 支付成功 20250625644105449459 34082025062556328969
403 2025/6/25 9:15 医疗健康 安庆新市立医院儿童医院 whh***@163.com 好吃点熊字饼115克组图 x 1 支出 4.2 花呗 交易成功 2025062522001464411401756371 1050814148951933122
404 2025/6/25 8:37 日用百货 便民服务中心 / 移动支付 支出 1.5 花呗 交易成功 2025062522001464411400550599 892017053107394200187560044305202506252167375702
405 2025/6/25 8:32 医疗健康 安庆市立医院 / 医保支付(不含自费) 支出 0 支付成功 20250625644104900280 34082025062556319725
406 2025/6/25 8:29 生活服务 泰洋康业售货机 qiy***@126.com 百岁山饮用天然矿泉水 支出 3 花呗 交易成功 2025062522001464411402681420 910269901027
407 2025/6/24 10:43 日用百货 安庆市迎江区航哥百货经营部 / 付款码支付 支出 51.58 花呗 交易成功 2025062422001464411455934239 962017052207307325102202506241043442460002
408 2025/6/23 8:25 餐饮美食 马老大清真牛肉包子 152******67 经营码交易 支出 4.8 花呗 交易成功 2025062322001464411446550774 17506383457602126064414
409 2025/6/23 8:22 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 23.3 花呗 交易成功 2025062322001464411445195682 26126600004802000020250623082250405420263701
410 2025/6/22 10:32 餐饮美食 安庆市宜秀区严岭生鲜经营部 / 付款码支付 支出 35.6 花呗 交易成功 2025062222001464411441175687 582017052207307325102202506221032225430002
411 2025/6/21 18:16 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 塔斯汀·中国汉堡(回祥路店)外卖订单 支出 49.9 花呗 交易成功 2025062122001164411441695023 13180600725062116314004849114
412 2025/6/21 10:57 餐饮美食 新一家生鲜超市 / 安庆卓利贸易有限公司-20250621105725719104 支出 55.9 花呗 交易成功 2025062122001464411433281782 16126600004836000083620250621332526363
413 2025/6/20 10:57 退款 sc**店 kcz***@163.com 退款-【狂欢价】隔尿垫床单床笠婴儿儿童防水可洗水洗床姨妈垫整床大尺寸纯棉透气 等多件 不计收支 53.71 邮储银行储蓄卡(8719)&邮储银行满减 退款成功 2025062022001164411435524336_2619378338950661070 T200P2619378338949661070
414 2025/6/20 10:56 日用百货 天** tmc***@service.aliyun.com 护舒宝液体卫生巾经典日用240mm套组超薄透气姨妈巾官方正品 等多件 支出 174.98 邮储银行储蓄卡(8719) 交易成功 2025062022001164411431945593 T200P2619378338938661070
415 2025/6/20 10:56 母婴亲子 sc**店 kcz***@163.com 【狂欢价】隔尿垫床单床笠婴儿儿童防水可洗水洗床姨妈垫整床大尺寸纯棉透气 等多件 支出 109.1 邮储银行储蓄卡(8719)&邮储银行满减 交易成功 2025062022001164411435524336 T200P2619378338949661070
416 2025/6/20 10:27 信用借还 花呗|信用购 / 自动还款-花呗|信用购2025年06月账单 不计收支 5127.92 徽商银行储蓄卡(1491) 还款成功 2025062029020999410151690149
417 2025/6/20 10:10 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|24091436888345010109|期数|202506|续期交易付款 支出 9.9 江苏银行信用购 交易成功 20250620305922494105 202506201100300701090059052476
418 2025/6/20 8:59 餐饮美食 饭店 151******49 经营码交易 支出 37 江苏银行信用购 交易成功 2025062022001464411432023910 17503811732602126064414
419 2025/6/19 9:49 餐饮美食 安庆市宜秀区严岭生鲜经营部 / 付款码支付 支出 2.5 江苏银行信用购 交易成功 2025061922001464411429066640 712017052207307325102202506190949446530001
420 2025/6/18 22:04 母婴亲子 bb**1 928***@qq.com 网红炸街亲子装可爱t恤2025夏季一家三四口休闲时尚短袖母女母子 等多件 支出 76.21 江苏银行信用购 交易成功 2025061822001164411427011131 T200P2617193102922661070
421 2025/6/18 21:55 母婴亲子 若妍**7 325***@qq.com 2025新款亲子装一家三四口短袖T恤夏季拼色户外全家服活动装 等多件 支出 77.26 江苏银行信用购 交易关闭 2025061822001164411426806595 T200P2616722799939661070
422 2025/6/18 17:36 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 小高米线(七街店搜王炸红包)外卖订单 支出 4.4 花呗 交易成功 2025061822001164411424041232 13170600725061867199227849114
423 2025/6/18 12:56 日用百货 天** tmc***@service.aliyun.com Repharm厨房清洁湿巾除油去油一次性抹布厨房湿巾纸加大加厚90抽 等多件 支出 197.14 江苏银行信用购 交易成功 2025061822001164411420303717 T200P2616259764655661070
424 2025/6/18 12:56 日用百货 el**店 elm***@niesheng.com 【明星李亚男爱用】elmex艾美适儿童牙膏奥拉氟防蛀3-6-12岁牙膏 支出 38.61 江苏银行信用购 交易成功 2025061822001164411420306563 T200P2616259764667661070
425 2025/6/18 12:56 服饰装扮 山岛**店 285***@qq.com 【狂欢价】美式坎肩宽松背心女夏外穿工字白色内搭纯棉无袖t恤健身运动上衣 等多件 支出 80.73 江苏银行信用购 交易关闭 2025061822001164411425657048 T200P2616259764651661070
426 2025/6/18 12:56 母婴亲子 天** tmc***@service.aliyun.com 包邮润本童锁定时款恒温电热蚊香液室内驱蚊专用驱蚊液2液+1器 支出 17.01 江苏银行信用购 交易成功 2025061822001164411425716573 T200P2616259764666661070
427 2025/6/18 12:56 日用百货 佳帮**店 duo***@163.com 【狂欢价】佳帮手装米桶家用防虫防潮密封米缸大米收纳盒米箱面粉面桶储物罐 支出 33.33 江苏银行信用购 交易成功 2025061822001164411425986536 T200P2616259764668661070
428 2025/6/18 12:34 日用百货 el**店 elm***@niesheng.com 【明星李亚男爱用】elmex艾美适儿童牙膏奥拉氟防蛀3-6-12岁牙膏 不计收支 42.9 交易关闭 2025061822001164411425195578 T200P2616892033411661070
429 2025/6/15 16:08 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 58.18 江苏银行信用购 交易成功 2025061522001464411406678650 38126600004802000020250615160812405357422741
430 2025/6/15 10:04 餐饮美食 胖大嫂鱼鲜 150******17 收钱码收款 支出 40 江苏银行信用购 交易成功 2025061522001464411404395491 47499530976602126064414
431 2025/6/15 10:02 餐饮美食 卖鸡店 147******70 收钱码收款 支出 33 江苏银行信用购 交易成功 2025061522001464411409174924 47499529268602126064414
432 2025/6/15 9:58 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 33.83 江苏银行信用购&红包 交易成功 2025061522001464411400228539 87126600004802000020250615095824405353143870
433 2025/6/14 15:51 爱车养车 安庆酷我车居郑久洲 909***@qq.com 收钱码收款 支出 460 徽商银行储蓄卡(1491) 交易成功 2025061422001464411459619947 17498874832602126064414
434 2025/6/8 16:33 日用百货 安庆市迎江区航哥百货经营部 / 付款码支付 支出 5.56 江苏银行信用购 交易成功 2025060822001464411435641570 932017052207307325102202506081633462320001
435 2025/6/7 9:55 日用百货 发润家连锁超市七街店 / 条码支付-发润家七街店-M2503040000404032506070131728 支出 75.86 江苏银行信用购 交易成功 2025060722001464411426100311 601266000048250000705524734838250607
436 2025/6/6 10:13 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|24113041628346210934|期数|202506|续期交易付款 支出 9.9 花呗 交易成功 20250606140723354105 202506061100300709340044342114
437 2025/6/6 9:41 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 106 江苏银行信用购 交易成功 2025060600003001410046581946 63191880351
438 2025/6/6 9:39 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 59 江苏银行信用购 交易成功 2025060600003001410046574794 23012969958
439 2025/6/6 9:39 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 59 江苏银行信用购 交易成功 2025060600003001410046580021 23002962393
440 2025/6/6 9:38 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 29 江苏银行信用购 交易成功 2025060600003001410046582087 23003427943
441 2025/6/6 9:37 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 29 江苏银行信用购 交易成功 2025060600003001410046576770 20009935043
442 2025/6/6 9:37 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 74.9 江苏银行信用购 交易成功 2025060600003001410046578672 20012296000
443 2025/6/6 9:36 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 29 江苏银行信用购 交易成功 2025060600003001410046572739 23000610353
444 2025/6/6 9:35 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 29.4 江苏银行信用购 交易成功 2025060600003001410046573217 23000428302
445 2025/6/6 9:35 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 29 江苏银行信用购 交易成功 2025060600003001410046580598 20006775879
446 2025/6/6 9:10 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 29 江苏银行信用购 交易成功 2025060600003001410046571992 20000670407
447 2025/6/6 9:05 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 59.9 江苏银行信用购 交易成功 2025060600003001410046569462 20000780673
448 2025/6/6 9:04 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 59 江苏银行信用购 交易成功 2025060600003001410046567722 20000780749
449 2025/6/6 9:04 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 59 江苏银行信用购 交易成功 2025060600003001410046570711 98885983908
450 2025/6/6 9:03 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 84 江苏银行信用购 交易成功 2025060600003001410046563408 93707881999
451 2025/6/6 9:02 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 84 江苏银行信用购 交易成功 2025060600003001410046569008 20009934891
452 2025/6/6 9:02 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 59 江苏银行信用购 交易成功 2025060600003001410046566148 98885983800
453 2025/6/6 9:01 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 65 江苏银行信用购 交易成功 2025060600003001410046566037 98885983802
454 2025/6/6 9:00 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 36.4 江苏银行信用购 交易成功 2025060600003001410046566379 98885983905
455 2025/6/6 9:00 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 59 江苏银行信用购 交易成功 2025060600003001410046563399 98885983904
456 2025/6/6 8:59 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 59 江苏银行信用购 交易成功 2025060600003001410046569729 94555367702
457 2025/6/6 8:58 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 66.9 江苏银行信用购 交易成功 2025060600003001410046562727 92215645786
458 2025/6/6 8:58 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 59 江苏银行信用购 交易成功 2025060600003001410046567006 91955420051
459 2025/6/6 8:56 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 73 江苏银行信用购 交易成功 2025060600003001410046561517 92035485147
460 2025/6/6 8:54 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 59 江苏银行信用购 交易成功 2025060600003001410046569721 88286483533
461 2025/6/6 8:49 充值缴费 中国电信股份有限公司上海分公司 / 5月-固话/宽带费 支出 133.5 江苏银行信用购 交易成功 2025060600003001410046568179 96516147461
462 2025/6/5 10:11 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 20.4 江苏银行信用购 交易成功 2025060522001464411409796793 11126600004802000020250605101100112231481767
463 2025/6/4 17:51 餐饮美食 贺强果林超级批发行 / 【订货猿】订单号:1930200846137171968 支出 7.4 花呗 交易成功 2025060422001464411415516717 20126600004836000083620250604381911209
464 2025/6/1 10:53 餐饮美食 何记鲜肉铺 136******72 经营码交易 支出 37 江苏银行信用购 交易成功 2025060122001464411453921112 17487464317602126064414
465 2025/6/1 10:38 餐饮美食 卖鸡店 147******70 收钱码收款 支出 31 江苏银行信用购 交易成功 2025060122001464411452500459 17487455165602126064414
466 2025/6/1 10:32 爱车养车 中石化安庆石油分公司 / 石化安庆石油分公司 支出 238.94 江苏银行信用购 交易成功 2025060122001464411452435548 052017092208872157130955410024000022506010385109
467 2025/6/1 10:15 日用百货 发润家弘阳广场店 / 条码支付-发润家弘阳店-M2502960000707042506010087324 支出 142.16 花呗 交易成功 2025060122001464411452670758 711266000048490000451143391610976914636819
468 2025/5/31 8:03 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 54.4 花呗 交易成功 2025053122001464411441081572 27126600004802000020250531080355112219490686
469 2025/5/30 17:58 餐饮美食 金鑫源糖酒 187******91 收钱码收款 支出 435 邮储银行储蓄卡(8719) 交易成功 2025053022001464411441136402 17485990807602126064414
470 2025/5/29 19:54 餐饮美食 安庆市天鲜配蔬果超市有限责任公司 / 付款码支付 支出 16.4 花呗 交易成功 2025052922001464411435229211 092017052207307325102202505291954396050003
471 2025/5/29 19:48 餐饮美食 安庆市宜秀区新鲜配生鲜经营部 / 付款码支付 支出 86.18 花呗 交易成功 2025052922001464411436688619 622017052207307325102202505291948056110001
472 2025/5/25 17:29 生活服务 杭州菜鸟供应链管理有限公司 gg4***@cainiao.com 菜鸟裹裹-寄件费_702667010_LP00736396760365 支出 1.04 余额宝 交易成功 2025052522001464411412693112 CN_V1_602078561961980357
473 2025/5/25 17:29 生活服务 杭州菜鸟供应链管理有限公司 gg4***@cainiao.com 菜鸟裹裹-寄件费_702667010_LP00737377092792 支出 0.04 余额宝 交易成功 2025052522001464411413824633 CN_V1_602078561560360260
474 2025/5/25 13:45 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 沪上阿姨·精选茶饮(迎江绿地店搜王炸红包)外卖订单 支出 1.62 花呗 交易成功 2025052522001164411408132754 13130600725052540673593849114
475 2025/5/24 10:43 餐饮美食 安庆市宜秀区严岭生鲜经营部 / 付款码支付 支出 150 花呗 交易成功 2025052422001464411458397881 552017052207307325102202505241043243040001
476 2025/5/24 10:42 餐饮美食 安庆市宜秀区严岭生鲜经营部 / 付款码支付 支出 852.41 花呗&红包 交易成功 2025052422001464411456670589 992017052207307325102202505241042264710001
477 2025/5/24 10:03 餐饮美食 **妹 130******40 收钱码收款 支出 104 花呗 交易成功 2025052422001464411400319189 17480521868602126064414
478 2025/5/24 9:37 退款 医保定点医药机构 / 退款-医保支付(不含自费) 不计收支 0 退款成功 20250524644183635948 34082025052454931346
479 2025/5/24 8:41 医疗健康 安庆市立医院 / 医保支付(不含自费) 支出 0 支付成功 20250524644183615185 34082025052454934121
480 2025/5/24 8:22 医疗健康 安庆市立医院 / 医保支付(不含自费) 支出 0 支付成功 20250524644183635948 34082025052454931346
481 2025/5/24 8:21 医疗健康 安庆市立医院 / 医保支付(不含自费) 支出 0 支付成功 20250524644183640650 34082025052454929361
482 2025/5/23 17:30 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 老乡鸡(七街文苑路分店)外卖订单 支出 7.89 花呗 交易成功 2025052322001164411454436040 13170600725052307967101849114
483 2025/5/22 10:25 退款 浅左**装 hzy***@163.com 退款-镂空蕾丝小香风套装裤女夏2025新款高级感小众绝美气质短裤两件套 不计收支 139.53 花呗 退款成功 2025052222001164411448826354_2575468923022661070 T200P2575468923022661070
484 2025/5/22 10:25 数码电器 爱普**店 181***@qq.com 【狂欢价】投影仪支架墙上壁挂床头置物架适用小米坚果极米当贝小明爱普生专用放置台万向云台沙发后天猫魔屏多功能架子 支出 41.77 花呗 交易成功 2025052222001164411445927807 T200P2575468923023661070
485 2025/5/22 10:25 服饰装扮 浅左**装 hzy***@163.com 镂空蕾丝小香风套装裤女夏2025新款高级感小众绝美气质短裤两件套 支出 139.53 花呗 交易关闭 2025052222001164411448826354 T200P2575468923022661070
486 2025/5/20 21:32 医疗健康 淘宝闪购 ele***@service.aliyun.com 国胜大药房(安庆盛唐湾路店) 支出 31.66 花呗 交易成功 2025052022001164411435244999 13210600725052011638643849114
487 2025/5/20 17:07 母婴亲子 天** tmc***@service.aliyun.com babycare婴儿手口湿巾加厚加大无酒精湿纸巾非棉柔巾 不计收支 20.01 交易关闭 2025052022001164411430464084 T200P2573307663657661070
488 2025/5/20 10:12 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|24091436888345010109|期数|202505|续期交易付款 支出 9.9 花呗 交易成功 20250520948599734105 202505201100300701090049706425
489 2025/5/17 11:29 信用借还 花呗|信用购 / 主动还款-花呗|信用购2025年05月账单 不计收支 3621.82 徽商银行储蓄卡(1491) 还款成功 2025051729020999410191880907
490 2025/5/17 11:28 信用借还 花呗|信用购 / 花呗|信用购主动还款 不计收支 3621.82 还款失败 2025051729020999410191534761
491 2025/5/17 9:56 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 45.7 江苏银行信用购 交易成功 2025051722001464411401557882 47126600004802000020250517095631405124737119
492 2025/5/15 20:02 医疗健康 淘宝闪购 ele***@service.aliyun.com 老百姓大药房(盛唐湾路店) 支出 12.1 江苏银行信用购 交易成功 2025051522001164411400890115 13200600725051590695402849114
493 2025/5/13 17:38 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 宫膳煌北京片皮烤鸭(好七·七街店)外卖订单 支出 17 江苏银行信用购 交易成功 2025051322001164411448456858 13170600725051381718942849114
494 2025/5/11 18:21 餐饮美食 董家馄饨胖哥金牌锅贴 / 美团收银909700200154898259 支出 6.5 江苏银行信用购 交易成功 2025051122001464411433983261 5120180330024764010461368605796580731109403
495 2025/5/11 18:21 餐饮美食 董家馄饨胖哥金牌锅贴 / 美团收银909700200154898258 支出 8.5 江苏银行信用购 交易成功 2025051122001464411437219703 5220180330024764010461368605796592574609403
496 2025/5/11 9:23 日用百货 宜秀区邻居汇生鲜超市 / 3.01681E+29 支出 72.76 江苏银行信用购 交易成功 2025051122001464411432740493 6612660000489000001000190977625131
497 2025/5/11 9:01 美容美发 苗莲花美白祛斑 / 苗莲花美白祛斑 支出 10 江苏银行信用购 交易成功 2025051122001464411433984975 07201703270643361639120300000197272505110901419301
498 2025/5/11 8:58 餐饮美食 马老大清真牛肉包子 152******67 经营码交易 支出 10.8 江苏银行信用购 交易成功 2025051122001464411429633611 17469250908602126064414
499 2025/5/10 21:19 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 瑞幸咖啡(安庆七街店)外卖订单 支出 2.9 江苏银行信用购 交易成功 2025051022001164411428490431 13210600725051040065156849114
500 2025/5/9 22:23 退款 凡客**店 101***@qq.com 退款-【活动价】凡客潮流纯棉短袖T恤两件装亲肤舒适休闲时尚纯色圆领百搭打底 不计收支 49.28 江苏银行信用购 退款成功 2025050522001164411455519605_2554588417023661070_212009845462667010 T200P2554588417023661070
501 2025/5/9 18:52 餐饮美食 水果 114***@qq.com 收钱码收款 支出 18 江苏银行信用购 交易成功 2025050922001464411422355402 17467879382602126064414
502 2025/5/9 18:17 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 沪上阿姨·精选茶饮(七街店搜王炸红包)外卖订单 支出 0.01 花呗 交易成功 2025050922001164411420707781 13180600725050924784222849114
503 2025/5/9 18:05 餐饮美食 安庆市开发区匠心桃酥店 / 商品 支出 1.7 江苏银行信用购 交易成功 2025050922001464411422848213 6412660000482200007895225346144948
504 2025/5/9 18:00 餐饮美食 贺强果林超级批发行 / 【订货猿】订单号:1920780937958289408 支出 13.5 江苏银行信用购 交易成功 2025050922001464411421702303 78126600004836000083620250509381292609
505 2025/5/9 9:14 服饰装扮 凡客**店 101***@qq.com 【活动价】凡客潮流纯棉短袖T恤两件装亲肤舒适休闲时尚纯色圆领百搭打底 支出 49.41 江苏银行信用购 交易成功 2025050922001164411419531365 T200P2557603455861661070
506 2025/5/6 10:12 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|24113041628346210934|期数|202505|续期交易付款 支出 9.9 江苏银行信用购 交易成功 20250506782361174105 202505061100300709340035114727
507 2025/5/5 20:17 服饰装扮 凡客**店 101***@qq.com 【活动价】凡客潮流纯棉短袖T恤两件装亲肤舒适休闲时尚纯色圆领百搭打底 支出 49.28 江苏银行信用购 交易关闭 2025050522001164411455519605 T200P2554588417023661070
508 2025/5/5 12:43 餐饮美食 妞妞小吃店 139******15 收钱码收款 支出 60 江苏银行信用购 交易成功 2025050522001464411445360996 47464201812602126064414
509 2025/5/5 12:06 餐饮美食 安庆市大南门小董清真熟食 / 移动支付 支出 57 江苏银行信用购 交易成功 2025050522001464411455581424 462017053107394200187580003013202505052257588084
510 2025/5/5 9:49 退款 巴拉**店 bal***@ecsemir.com 退款-巴拉巴拉童鞋运动凉鞋男女童沙滩鞋儿童夏新款透气防滑透气宝宝鞋 不计收支 62.9 江苏银行信用购 退款成功 2025042722001164411400983030_2545654981476661070_advance T200P2545654981476661070
511 2025/5/4 17:56 服饰装扮 安庆市宜秀区芊妃服装店 / 灿灿木格童装 支出 160 江苏银行信用购 交易成功 2025050422001464411448172758 012017052207307325100202505041756252080000
512 2025/5/4 9:06 爱车养车 中国石油中兴大道加油站 zha***@petrochina.com.cn 中国石油-条码支付 支出 233.19 江苏银行信用购 交易成功 2025050422001464411448172575 17463208075463414002
513 2025/5/4 8:48 母婴亲子 玲姐烧饼 181******67 收钱码收款 支出 6.4 江苏银行信用购 交易成功 2025050422001464411447246578 17463197124602126064414
514 2025/5/4 8:47 餐饮美食 马老大清真牛肉包子 152******67 经营码交易 支出 9.6 江苏银行信用购 交易成功 2025050422001464411447217936 17463196242602126064414
515 2025/5/3 18:34 账户存取 中国邮政储蓄银行 / 提现-实时提现 不计收支 7000 余额 交易成功 20250503200040011100410088230619 0693f6de9c37ac9a0ce8d2b41d3b777c
516 2025/5/3 18:32 投资理财 王芳 cxd***@cxfund.com.cn 余额宝-转出到余额 不计收支 7000 余额 交易成功 20250503019130200010410013283450 LC2025050318323120886021260644140442
517 2025/5/3 18:31 投资理财 余额宝 cxd***@cxfund.com.cn 转账收款到余额宝 不计收支 7000 账户余额 交易成功 20250503019130125000410092349373 20250503200040011100550028711715
518 2025/5/3 18:31 转账红包 131******22 转账 收入 7000 账户余额 交易成功 20250503200040011100550028711715
519 2025/5/3 9:05 餐饮美食 安庆市宜秀区橙柿鲜言果业经营部 / 安庆市宜秀区橙柿鲜言果业经营部 支出 230 江苏银行信用购 交易成功 2025050322001464411440388973 742017052207307325100202505030905381890001
520 2025/5/3 8:46 餐饮美食 安庆市开发区匠心桃酥店 / 商品 支出 25.5 江苏银行信用购 交易成功 2025050322001464411441364690 3612660000482200007895004265005697
521 2025/5/2 14:07 餐饮美食 商户_甘惠芬 / 康大大米批发部 支出 15 江苏银行信用购 交易成功 2025050222001464411435295796 492017052207307325100202505021407262440000
522 2025/5/2 14:07 餐饮美食 商户_甘惠芬 / 康大大米批发部 支出 45 江苏银行信用购 交易成功 2025050222001464411432113673 942017052207307325100202505021407046100000
523 2025/5/2 14:06 日用百货 鑫华百货 / 移动支付 支出 3 花呗 交易成功 2025050222001464411434734779 732017053107394200187510036962202505022232283438
524 2025/5/2 14:04 餐饮美食 Leeping 150******52 收钱码收款 支出 20 江苏银行信用购 交易成功 2025050222001464411434749734 17461658682602126064414
525 2025/5/2 14:04 日用百货 老刘一次性用品批发部 136******83 收钱码收款 支出 13 江苏银行信用购 交易成功 2025050222001464411434726819 17461658471602126064414
526 2025/5/2 13:55 日用百货 兴隆商行 151******30 收钱码收款 支出 40 江苏银行信用购 交易成功 2025050222001464411432856697 17461653351602126064414
527 2025/5/2 13:51 餐饮美食 安庆市开发区翔龙食品商行 / 翔龙食品商行(5) 117461651155621104 支出 150 江苏银行信用购 交易成功 2025050222001464411434726816 15126600004802000011UX2505027535157134281641
528 2025/5/1 9:05 餐饮美食 安庆市开发区泾川冷冻食品商行 / 安庆市开发区泾川冷冻食品商行 支出 260 江苏银行信用购 交易成功 2025050122001464411424208101 862017052207307325100202505010905461890000
529 2025/5/1 7:24 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 34.46 江苏银行信用购 交易成功 2025050122001464411425472092 98126600004802000020250501072447112145135786
530 2025/4/28 10:17 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 王不二·圆圆柠檬茶坊(好七店)外卖订单 支出 8.5 江苏银行信用购 交易成功 2025042822001164411410583992 13100600725042892797179849114
531 2025/4/27 10:11 母婴亲子 巴拉**店 bal***@ecsemir.com 巴拉巴拉童鞋运动凉鞋男女童沙滩鞋儿童夏新款透气防滑透气宝宝鞋 支出 62.9 江苏银行信用购 交易关闭 2025042722001164411400983030 T200P2545654981476661070
532 2025/4/26 16:56 医疗健康 朗程驿站 724***@qq.com 全款交易:探险者露营桌椅户外折叠蛋卷桌野餐桌便携式桌子椅子一体全套装备 支出 35.44 邮储银行储蓄卡(8719) 支付成功 2025042622001864411459832085_11160600725042636028763667010 T50060NP2544542078779661070
533 2025/4/26 16:28 医疗健康 淘宝闪购 ele***@service.aliyun.com 丰原大药房(安庆同安府连锁店) 支出 26.5 江苏银行信用购 交易成功 2025042622001164411457567189 13160600725042631330018849114
534 2025/4/26 15:53 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 12.9 花呗 交易成功 2025042622001464411400106079 58126600004802000020250426155309404965356779
535 2025/4/25 17:54 餐饮美食 安庆市开发区匠心桃酥店 / 商品 支出 12.6 花呗 交易成功 2025042522001464411456044948 1112660000482200007895000746906278
536 2025/4/25 17:53 餐饮美食 安庆市开发区匠心桃酥店 / 商品 支出 12.6 花呗 交易成功 2025042522001464411450748500 2912660000482200007895000746513672
537 2025/4/25 15:21 医疗健康 霸州群峰科技有限公司 180******16 全款交易:【带腿托】高靠背月亮椅躺椅露营三档可调节折叠椅便携带钓鱼凳 支出 62.1 邮储银行储蓄卡(8719) 支付成功 2025042522001864411451948691_11150600725042500970616667010 T50060NP2543710297108661070
538 2025/4/25 15:15 医疗健康 霸州群峰科技有限公司 180******16 全款交易:【带腿托】高靠背月亮椅躺椅露营三档可调节折叠椅便携带钓鱼凳 支出 67.1 徽商银行储蓄卡(1491) 支付成功 2025042522001864411455913725_11150600725042512843002667010 T50060NP2543012796003661070
539 2025/4/25 15:10 医疗健康 霸州群峰科技有限公司 180******16 全款交易:【带腿托】高靠背月亮椅躺椅露营三档可调节折叠椅便携带钓鱼凳 不计收支 70 交易关闭 2025042522001864411455476187_11150600725042509063929667010 T50060NP2543002788845661070
540 2025/4/24 21:32 日用百货 i***x 156******87 带轮子可移动儿童玩具收纳架米白色3X4格 支出 57.65 邮储银行储蓄卡(8719)&邮储银行立减 交易成功 2025042422001164411446515395 T200P2542996453654661070
541 2025/4/20 11:46 信用借还 花呗|信用购 / 自动还款-花呗|信用购2025年04月账单 不计收支 3828.05 徽商银行储蓄卡(1491) 还款成功 2025042029020999410167386445
542 2025/4/20 10:11 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|24091436888345010109|期数|202504|续期交易付款 支出 9.9 江苏银行信用购 交易成功 20250420609653294105 202504201100300701090040440230
543 2025/4/20 8:51 爱车养车 中国石油安庆大桥加油站 zha***@petrochina.com.cn 中国石油-条码支付 支出 240.8 江苏银行信用购&碰一下立减 交易成功 2025042022001464411422201469 17451103051023460910
544 2025/4/20 8:33 医疗健康 安庆市立医院 / 医保支付(不含自费) 支出 0 支付成功 20250420644161135363 34082025042053403538
545 2025/4/20 8:05 医疗健康 安庆市立医院 / 医保支付(不含自费) 支出 0 支付成功 20250420644161326402 34082025042053400071
546 2025/4/19 20:35 商业服务 绿地大润发广场福利彩票亭 189******50 收钱码收款 支出 20 江苏银行信用购 交易成功 2025041922001464411422202444 47450661356602126064414
547 2025/4/19 17:07 餐饮美食 诚信志远果业 147***@qq.com 安庆市宜秀区果实惠水果商店 支出 6.6 江苏银行信用购 交易成功 2025041922001464411422127283 340811001250419170707
548 2025/4/18 11:12 母婴亲子 四叶**草 184***@qq.com 女童夏装连衣裙洋气周岁女宝礼服公主裙婴儿童夏季网纱蓬蓬tutu裙 不计收支 73.56 交易关闭 2025041822001164411413288370 T200P2535824497898661070
549 2025/4/15 17:54 餐饮美食 贺强果林超级批发行 / 【订货猿】订单号:1912082178407858176 支出 22.5 江苏银行信用购 交易成功 2025041522001464411452941445 41126600004836000083620250415627924517
550 2025/4/15 15:17 退款 众安在线财产保险股份有限公司 / 保险退保-退保保费支付[25011444236453310552] 不计收支 4.96 江苏银行信用购 退款成功 20250415102553010664410065429366 202503241100300705520026180261_refund
551 2025/4/14 17:55 日用百货 安庆市迎江区航哥百货经营部 / 付款码支付 支出 5.93 江苏银行信用购 交易成功 2025041422001464411450596229 522017052207307325102202504141755092460002
552 2025/4/14 16:37 信用借还 借呗 / 借呗还款 不计收支 501.5 徽商银行储蓄卡(1491) 还款成功 2025041410199318530101010000410075689407
553 2025/4/14 9:57 投资理财 余额宝 cxd***@cxfund.com.cn 余额宝-自动转入 不计收支 6.1 账户余额 交易成功 20250414019130101000410073349232 20250414009130501000410072863804
554 2025/4/14 8:27 保险 众安在线财产保险股份有限公司 / 保险理赔-退货宝补偿-订单号:2522374287601661070 保单号:25040749149621210011 收入 6.1 交易成功 20250414546453174105 202504131100300300110154995531
555 2025/4/13 13:56 日用百货 安庆市开发区优禾生活经营部 / 统一收单交易创建 支出 50 江苏银行信用购 交易成功 2025041322001464411447615025 28126600004826000020250413Nf0000000006009690023610
556 2025/4/13 10:59 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 53.1 江苏银行信用购 交易成功 2025041322001464411444646957 57126600004802000020250413105943404868211948
557 2025/4/12 18:03 餐饮美食 **花 130******45 收钱码收款 支出 10 江苏银行信用购 交易成功 2025041222001464411442677381 17444522062602126064414
558 2025/4/12 14:03 信用借还 借呗 / 借呗还款 不计收支 1000.3 邮储银行储蓄卡(8719) 还款成功 2025041210199318530101010000410072615616
559 2025/4/11 15:45 退款 乔丹**店 qdj***@163.com 退款-乔丹儿童宝宝学步鞋2024春秋款婴小童轻便软底运动跑鞋男童机能鞋 不计收支 87 江苏银行信用购 退款成功 2025040722001164411420009365_2522374287601661070_advance T200P2522374287601661070
560 2025/4/11 14:35 日用百货 安庆市开发区优禾生活经营部 / 统一收单交易创建 支出 50 江苏银行信用购 交易成功 2025041122001464411437257623 67126600004826000020250411Nf0000000006013640024520
561 2025/4/11 14:01 母婴亲子 巴拉**店 bal***@ecsemir.com 巴拉巴拉童鞋运动凉鞋沙滩鞋夏新款透气防滑卡通 不计收支 62.9 交易关闭 2025041122001164411437998127 T200P2527208438853661070
562 2025/4/11 12:36 餐饮美食 华康酒家 151******56 收钱码收款 支出 950 邮储银行储蓄卡(8719) 交易成功 2025041122001464411435424134 17443462055602126064414
563 2025/4/11 12:36 信用借还 借呗 / 借呗放款至银行卡 不计收支 1000 放款成功 20250411102553010589140091647434 20250411000000000033220920959115
564 2025/4/11 7:29 餐饮美食 小吃店 139******08 收钱码收款 支出 13 江苏银行信用购 交易成功 2025041122001464411434606134 47443277583602126064414
565 2025/4/10 18:56 生活服务 **瑜 138******91 收钱码收款 支出 129.93 江苏银行信用购&晚餐到店红包 交易成功 2025041022001464411434129672 17442825889602126064414
566 2025/4/9 8:58 日用百货 h***猪 502***@qq.com 速营野餐垫,户外防潮垫,几乎全新。尺寸190x120cm,可 支出 30 江苏银行信用购 交易成功 2025040922001164411424548514 T200P2524305324340661070
567 2025/4/7 16:33 母婴亲子 乔丹**店 qdj***@163.com 乔丹儿童宝宝学步鞋2024春秋款婴小童轻便软底运动跑鞋男童机能鞋 支出 87 江苏银行信用购 交易关闭 2025040722001164411420009365 T200P2522374287601661070
568 2025/4/7 8:13 餐饮美食 **媛 139******09 收钱码收款 支出 5 江苏银行信用购 交易成功 2025040722001464411416351672 17439848009602126064414
569 2025/4/6 18:11 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 42.9 江苏银行信用购 交易成功 2025040622001464411415141152 78126600004802000020250406181146404824201299
570 2025/4/6 17:52 餐饮美食 江记土猪肉 139******44 收钱码收款 支出 9.93 江苏银行信用购&晚餐到店红包 交易成功 2025040622001464411412634941 17439331735602126064414
571 2025/4/6 15:24 生活服务 杭州菜鸟供应链管理有限公司 gg4***@cainiao.com 菜鸟裹裹-寄件费_702667010_LP00724522490464 支出 4.5 邮储银行储蓄卡(8719) 交易成功 2025040622001464411415011257 CN_V1_602003345228740980
572 2025/4/6 11:39 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 63.6 江苏银行信用购 交易成功 2025040622001464411412694444 02126600004802000020250406113913404820311777
573 2025/4/6 10:13 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|24113041628346210934|期数|202504|续期交易付款 支出 9.9 江苏银行信用购 交易成功 20250406449403594105 202504061100300709340026095977
574 2025/4/5 9:47 餐饮美食 北京烤鸭 187******60 收钱码收款 支出 42 江苏银行信用购 交易成功 2025040522001464411409525722 17438176335602126064414
575 2025/4/5 9:43 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 74.6 江苏银行信用购 交易成功 2025040522001464411409499792 70126600004802000020250405094332404810948769
576 2025/4/4 17:23 餐饮美食 北京烤鸭 187******60 收钱码收款 支出 33.93 江苏银行信用购&晚餐到店红包 交易成功 2025040422001464411404485348 47437586149602126064414
577 2025/4/4 12:23 信用借还 借呗 / 借呗放款至银行卡 不计收支 500 放款成功 20250404102553010589140059858170 20250404000000000029900971805054
578 2025/4/4 9:55 母婴亲子 开心玩具经营部 / 开心玩具经营部 支出 200 江苏银行信用购 交易成功 2025040422001464411404651845 942017052207307325100202504040955025880002
579 2025/4/4 9:43 母婴亲子 开心玩具经营部 / 开心玩具经营部 支出 112 江苏银行信用购 交易成功 2025040422001464411404440896 362017052207307325100202504040943332080000
580 2025/4/4 8:08 日用百货 特瑞**店 ter***@163.com 特瑞洁木浆棉海绵擦厨房清洁百洁布刷锅神器去污魔力擦洗碗布家用 支出 22.9 江苏银行信用购 交易成功 2025040422001164411404298397 T200P2520163381220661070
581 2025/4/3 20:00 餐饮美食 小高米线安庆七街店 / 小高米线安庆七街店 支出 10 江苏银行信用购 交易成功 2025040322001464411403224817 31126600004836000083620250403942410778
582 2025/4/3 16:59 文化休闲 淘票**) dyz***@service.alibaba.com 《哪吒之魔童闹海》安庆中影南方影城七街店电影票 支出 69.8 江苏银行信用购 交易成功 2025040322001164411401228073 T150P2518749987026661070
583 2025/4/3 15:12 日用百货 舒星**店 186***@163.com 水晶标贴金属标签定制uv转印贴LOGO贴纸透明商标打印移丝印广告烫金定做自粘刻字撕膜留字公司防水不干胶印刷 支出 49 江苏银行信用购 交易成功 2025040322001164411403194763 T200P2518930416961661070
584 2025/4/1 19:29 日用百货 零食伴友安庆市宜秀区裕轩零食店 / 支付-金桂丽园店 支出 15.03 江苏银行信用购 交易成功 2025040122001464411455101561 57126600004823000003222504017016829409875
585 2025/3/31 17:59 餐饮美食 贺强果林超级批发行 / 【订货猿】订单号:1906647636145364992 支出 14 江苏银行信用购 交易成功 2025033122001464411450571416 60126600004836000083620250331716433904
586 2025/3/31 17:58 餐饮美食 贺强果林超级批发行 / 【订货猿】订单号:1906647244158296064 支出 34.7 江苏银行信用购 交易成功 2025033122001464411448803785 32126600004836000083620250331326545624
587 2025/3/30 9:51 餐饮美食 曾经最美 181******68 收钱码收款 支出 25 江苏银行信用购 交易成功 2025033022001464411438959301 47432994810602126064414
588 2025/3/30 8:13 爱车养车 中石化安庆石油分公司 / 石化安庆石油分公司 支出 254.24 江苏银行信用购 交易成功 2025033022001464411438996926 292017092208872157130955410024000082503300264216
589 2025/3/30 7:58 母婴亲子 玲姐烧饼 181******67 收钱码收款 支出 14 江苏银行信用购 交易成功 2025033022001464411441776114 17432927029602126064414
590 2025/3/29 9:47 餐饮美食 软水**铺 183***@139.com 乐源小吊梨汤275ml*6/12瓶冰糖雪梨汁即饮养生健康果汁饮料整箱 支出 21.15 江苏银行信用购 交易成功 2025032922001164411438266981 T200P2514372169983661070
591 2025/3/29 8:08 餐饮美食 江镇包子 183******02 收钱码收款 支出 1 江苏银行信用购 交易成功 2025032922001464411436719220 17432069355602126064414
592 2025/3/29 7:56 餐饮美食 贺强果林超级批发行 / 【订货猿】订单号:1905771035328483328 支出 98.1 江苏银行信用购 交易成功 2025032922001464411436941626 20126600004836000083620250329676540226
593 2025/3/28 20:35 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 46.5 江苏银行信用购 交易成功 2025032822001464411436708618 26126600004802000020250328203501404757521427
594 2025/3/25 18:24 日用百货 淘宝闪购 ele***@service.aliyun.com 大润发(皖江店) 支出 40.9 江苏银行信用购 交易成功 2025032522001164411424247955 13180600725032537125858849114
595 2025/3/25 8:03 餐饮美食 大饼 158******37 收钱码收款 支出 3 江苏银行信用购 交易成功 2025032522001464411421412848 17428610290602126064414
596 2025/3/24 11:32 保险 众安保险 / 2025.3月保费缴清-骑行保·两轮电动车意外险-*芳 支出 21.58 江苏银行信用购 交易成功 20250324102553010464410074012558 202503241100300705520026180261
597 2025/3/22 20:36 日用百货 旺鲜生超市 / 安庆市大观区旺鲜生超市 支出 31.44 江苏银行信用购 交易成功 2025032223001464411408093730 132017092208872157130904990231000042503220570410
598 2025/3/22 13:35 餐饮美食 安庆市宜秀区严岭生鲜经营部 / 付款码支付 支出 12.4 江苏银行信用购 交易成功 2025032222001464411407721512 682017052207307325102202503221335174170003
599 2025/3/22 11:12 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 3.7 江苏银行信用购 交易成功 2025032222001464411409583647 30126600004802000020250322111217404709658469
600 2025/3/22 10:09 医疗健康 安庆市立医院 aqs***@163.com 缴费_2024172592支付宝xzz201 支出 99 江苏银行信用购 交易成功 2025032222001464411408206843 20250322xzz2010035
601 2025/3/21 12:15 餐饮美食 邓修龙 155******67 经营码交易 支出 14.92 江苏银行信用购&红包 交易成功 2025032122001464411405509483 17425305031602126064414
602 2025/3/21 8:17 餐饮美食 **媛 139******09 收钱码收款 支出 5 江苏银行信用购 交易成功 2025032122001464411402302514 17425162338602126064414
603 2025/3/20 19:54 餐饮美食 老杨全牛馆 155******15 收钱码收款 支出 8.98 江苏银行信用购&红包 交易成功 2025032022001464411402138025 17424716622602126064414
604 2025/3/20 10:14 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|24091436888345010109|期数|202503|续期交易付款 支出 9.9 江苏银行信用购 交易成功 20250320264592704105 202503201100300701090031381412
605 2025/3/19 10:29 信用借还 花呗|信用购 / 主动还款-花呗|信用购2025年03月账单 不计收支 1496.57 徽商银行储蓄卡(1491) 还款成功 2025031929020999410111345756
606 2025/3/17 17:51 餐饮美食 贺强果林超级批发行 / 【订货猿】订单号:1901572150553862144 支出 39.75 江苏银行信用购&红包 交易成功 2025031722001464411450171868 12126600004836000083620250317616710378
607 2025/3/17 12:24 餐饮美食 好运来正味牛肉馆 139******98 收钱码收款 支出 9.96 花呗&红包 交易成功 2025031722001464411445411071 47421854428602126064414
608 2025/3/17 8:43 餐饮美食 **春 137******76 收钱码收款 支出 3.42 花呗&红包 交易成功 2025031722001464411445409447 17421721831602126064414
609 2025/3/16 18:44 日用百货 安庆发润家贸易有限公司 / 二维码支付 支出 106.03 江苏银行信用购&红包 交易成功 2025031622001464411445699275 31P2088721085226061W03_M22132520706202503160142073
610 2025/3/16 8:51 餐饮美食 大饼快餐 186******76 收钱码收款 支出 8.98 花呗&红包 交易成功 2025031622001464411439529582 17420863128602126064414
611 2025/3/15 21:41 数码电器 gr**店 275***@qq.com 【Gree/格力官方】新一级能效正1.5匹变频冷暖空调挂机云锦III 等多件 不计收支 3299 交易关闭 2025031522001164411441471980 T200P2498556831583661070
612 2025/3/15 20:35 生活服务 **瑜 138******91 收钱码收款 支出 64.92 江苏银行信用购&红包 交易成功 2025031522001464411441915925 17420421369602126064414
613 2025/3/15 19:55 餐饮美食 卤校长重庆火锅(安庆店) / 美团收银909700198356231793 支出 95.97 江苏银行信用购&红包 交易成功 2025031522001464411441673656 4220180330024764010461368605677641463604914
614 2025/3/15 8:10 餐饮美食 大饼 158******37 收钱码收款 支出 5.97 花呗&红包 交易成功 2025031522001464411437408426 17419974391602126064414
615 2025/3/12 17:24 家居家装 贝贝**巾 m15***@163.com 贝贝柔洗脸巾一次性纯棉卷筒式加厚纯棉柔巾美容院专用面巾纸 支出 56 江苏银行信用购 交易成功 2025031222001164411428625833 T200P2495209443550661070
616 2025/3/9 16:23 日用百货 淘宝闪购 ele***@service.aliyun.com 拾惠客24h超市(安庆吾悦店) 支出 43 花呗 交易成功 2025030923001164411410335891 13160600725030932481858849114
617 2025/3/9 16:17 宠物 泰格**店 tai***@126.com 超长粘毛器猫毛清理神器加大滚筒可撕式长杆拼接粘除灰尘不伤衣物 等多件 支出 109.07 江苏银行信用购 交易成功 2025030922001164411412231960 T200P2492310108257661070
618 2025/3/9 6:48 爱车养车 中国石油中兴大道加油站 zha***@petrochina.com.cn 中国石油-条码支付 支出 252.14 江苏银行信用购&红包 交易成功 2025030923001464411410337540 17414741212073464913
619 2025/3/8 23:26 转账红包 欧莱**店 / 退款-【充值享9.25折购物】欧莱雅购物金充740得800 不计收支 25.07 邮储银行储蓄卡(8719) 退款成功 2024030822001164411416538791*2080428890819661070_203095740716667010 2080428890819661070_203095740716667010
620 2025/3/8 20:35 退款 淘宝闪购 ele***@service.aliyun.com 退款-好多购便利店(安庆店) 不计收支 36.8 花呗 退款成功 2025030822001164411408064501_13200601325030823217892849114 13180600725030892613402849114
621 2025/3/8 18:01 餐饮美食 淘宝闪购 ele***@service.aliyun.com 好多购便利店(安庆店) 支出 36.8 花呗 交易关闭 2025030822001164411408064501 13180600725030892613402849114
622 2025/3/8 16:43 日用百货 安庆发润家贸易有限公司 / 二维码支付 支出 139.5 江苏银行信用购&红包 交易成功 2025030823001464411406398921 10P2088721085226061W03_M22132520709202503080229823
623 2025/3/7 22:49 数码电器 技嘉**店 202***@qq.com 【活动价】英特尔i9 14代I9 /14900KF/K/KS搭技嘉小雕冰雕电竞雕主板CPU套装 支出 4436.4 花呗分期(3期)&88VIP专享花呗分期立减 交易成功 2025030722001164411404899886 T200P2490481524737661070
624 2025/3/7 21:27 日用百货 燕***y hyz***@163.com 【官方正版】四五快读全套8册 幼小衔接 宝宝早教书 3-4- 支出 40 花呗 交易成功 2025030722001164411405182953 T200P2490663182455661070
625 2025/3/7 11:38 退款 盛千**店 you***@qq.com 退款-【活动价】修图p图专业照片婚纱照ps做图修图写真人像精修结婚登记证件照片 不计收支 1.1 花呗 退款成功 2025030722001164411404890932_2489768904640661070_202755470378667010 T200P2489768904640661070
626 2025/3/7 11:37 生活服务 盛千**店 you***@qq.com 【活动价】修图p图专业照片婚纱照ps做图修图写真人像精修结婚登记证件照片 支出 1.1 花呗 交易成功 2025030722001164411404890932 T200P2489768904640661070
627 2025/3/6 10:14 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|24113041628346210934|期数|202503|续期交易付款 支出 9.9 花呗 交易成功 20250306101210914105 202503061100300709340016776514
628 2025/3/5 18:02 餐饮美食 江美丽阿婆麻辣烫 / 美团收银909700198058208951 支出 15.82 花呗&红包 交易成功 2025030523001464411455410952 5020180330024764010461368605657715124509990
629 2025/3/5 13:48 日用百货 天** tmc***@service.aliyun.com 【下拉详情享优惠】清风卷纸金装4层160克27卷卫生纸厕纸卷筒纸 支出 44.88 花呗 交易成功 2025030522001164411456165324 T200P2488237789143661070
630 2025/3/4 17:50 餐饮美食 贺强果林超级批发行 / 购买商品鲜枝头蓝莓等 支出 39.77 花呗&红包 交易成功 2025030423001464411453221769 11P2088521461085192W03_2025030430000006313150190110702
631 2025/3/2 14:29 餐饮美食 水果卖场 / 水果卖场【买单】消费44.00元 支出 43.98 花呗&红包 交易成功 2025030222001464411444137249 30126600004822000020250302110113230266201358733935
632 2025/3/1 21:52 餐饮美食 **花 130******45 收钱码收款 支出 15.92 花呗&红包 交易成功 2025030122001464411440784971 17408371773602126064414
633 2025/2/28 11:19 生活服务 宝智**店 143***@qq.com 彩色条幅制作广告横幅定做高档竖幅结婚礼生日宣传标语活动订制做 支出 12 花呗 交易成功 2025022822001164411438848343 T200P2482309453041661070
634 2025/2/26 12:20 餐饮美食 好运来正味牛肉馆 139******98 收钱码收款 支出 9.98 花呗&红包 交易成功 2025022622001464411429460709 47405436392602126064414
635 2025/2/24 11:34 保险 众安保险 / 2025.2月保费缴清-骑行保·两轮电动车意外险-*芳 支出 21.58 花呗 交易成功 20250224102553010464410050924855 202502241100300705520017695512
636 2025/2/23 20:14 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 34.62 花呗&红包 交易成功 2025022323001464411420656527 92126600004802000020250223201412111967199760
637 2025/2/23 18:43 餐饮美食 福泽油炸 191******06 经营码交易 支出 67.78 花呗&红包 交易成功 2025022322001464411420383008 17403074309602126064414
638 2025/2/23 17:18 餐饮美食 过把隐烧烤 / 过把隐烧烤 支出 49.92 花呗&红包 交易成功 2025022322001464411420416256 98201703270643361639120100001556652502231718067269
639 2025/2/23 11:23 餐饮美食 桂林米粉华茂店 / 桂林米粉菱湖南路店 支出 13.92 花呗&红包 交易成功 2025022323001464411418578993 30P2088921985603966W03_0461368605638080729108197
640 2025/2/21 18:22 爱车养车 中石化安庆石油分公司 / 石化安庆石油分公司 支出 266 花呗&红包 交易成功 2025022123001464411411867268 052017092208872157130955410024000032502210186682
641 2025/2/20 19:28 信用借还 花呗|信用购 / 主动还款-花呗|信用购2025年02月账单 不计收支 934.67 徽商银行储蓄卡(1491) 还款成功 2025022029020999410180748030
642 2025/2/20 19:16 信用借还 花呗|信用购 / 花呗|信用购自动还款 不计收支 934.67 还款失败 2025022029020999410178978390
643 2025/2/20 10:14 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|24091436888345010109|期数|202502|续期交易付款 支出 9.9 花呗 交易成功 20250220952854894105 202502201100300701090022803079
644 2025/2/20 8:33 信用借还 花呗|信用购 / 自动还款-花呗|信用购2025年02月账单 不计收支 239.44 余额宝 还款成功 2025022029020999410173015610
645 2025/2/20 2:38 投资理财 长信基金管理有限责任公司 / 余额宝-2025.02.19-收益发放 不计收支 0.01 余额宝 交易成功 20250220347969257411
646 2025/2/19 2:42 投资理财 长信基金管理有限责任公司 / 余额宝-2025.02.18-收益发放 不计收支 0.01 余额宝 交易成功 20250219341010382411
647 2025/2/18 2:55 投资理财 长信基金管理有限责任公司 / 余额宝-2025.02.17-收益发放 不计收支 0.01 余额宝 交易成功 20250218336000401411
648 2025/2/17 3:17 投资理财 长信基金管理有限责任公司 / 余额宝-2025.02.16-收益发放 不计收支 0.01 余额宝 交易成功 20250217326728001411
649 2025/2/16 13:43 文化休闲 新兴文体 138******37 收钱码收款 支出 35.42 花呗&红包 交易成功 2025021622001464411451123351 17396846160602126064414
650 2025/2/16 11:23 医疗健康 安庆市大观区金丽娟口腔门诊部(个体工商户) / 安庆市大观区金丽娟口腔门诊部(个体工商户) 支出 3199.92 徽商银行储蓄卡(1491)&红包 交易成功 2025021622001464411447847115 242017052507338883ZPZ908310930102374616112304
651 2025/2/16 3:06 投资理财 长信基金管理有限责任公司 / 余额宝-2025.02.15-收益发放 不计收支 0.01 余额宝 交易成功 20250216325796760411
652 2025/2/15 17:15 餐饮美食 老杨全牛馆 155******15 收钱码收款 支出 63.98 花呗&红包 交易成功 2025021522001464411447887464 17396109291602126064414
653 2025/2/15 15:00 餐饮美食 安庆市宜秀区新鲜配生鲜经营部 / 付款码支付 支出 64.02 花呗&红包 交易成功 2025021523001464411446702342 992017052207307325102202502151500004930003
654 2025/2/15 9:19 餐饮美食 猪肉商铺 153******83 收钱码收款 支出 45.98 花呗&红包 交易成功 2025021522001464411443581611 17395823947602126064414
655 2025/2/15 2:58 投资理财 长信基金管理有限责任公司 / 余额宝-2025.02.14-收益发放 不计收支 0.01 余额宝 交易成功 20250215320297211411
656 2025/2/14 2:41 投资理财 长信基金管理有限责任公司 / 余额宝-2025.02.13-收益发放 不计收支 0.01 余额宝 交易成功 20250214311648911411
657 2025/2/13 5:44 投资理财 长信基金管理有限责任公司 / 余额宝-2025.02.12-收益发放 不计收支 0.01 余额宝 交易成功 20250213311472080411
658 2025/2/12 3:10 投资理财 长信基金管理有限责任公司 / 余额宝-2025.02.11-收益发放 不计收支 0.01 余额宝 交易成功 20250212302751425411
659 2025/2/11 7:25 餐饮美食 **枝 138******35 收钱码收款 支出 16.68 花呗&红包 交易成功 2025021122001464411431265410 17392299007602126064414
660 2025/2/11 7:21 餐饮美食 卖鸡店 147******70 收钱码收款 支出 40.98 余额宝&红包 交易成功 2025021122001464411429817780 17392296888602126064414
661 2025/2/11 2:34 投资理财 长信基金管理有限责任公司 / 余额宝-2025.02.10-收益发放 不计收支 0.01 余额宝 交易成功 20250211395721936411
662 2025/2/10 2:52 投资理财 长信基金管理有限责任公司 / 余额宝-2025.02.09-收益发放 不计收支 0.01 余额宝 交易成功 20250210394130401411
663 2025/2/9 2:54 投资理财 长信基金管理有限责任公司 / 余额宝-2025.02.08-收益发放 不计收支 0.01 余额宝 交易成功 20250209385879444411
664 2025/2/8 3:07 投资理财 长信基金管理有限责任公司 / 余额宝-2025.02.07-收益发放 不计收支 0.01 余额宝 交易成功 20250208380265492411
665 2025/2/7 3:17 投资理财 长信基金管理有限责任公司 / 余额宝-2025.02.06-收益发放 不计收支 0.01 余额宝 交易成功 20250207379125294411
666 2025/2/6 10:14 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|24113041628346210934|期数|202502|续期交易付款 支出 9.9 花呗 交易成功 20250206793831624105 202502061100300709340008503124
667 2025/2/6 5:38 投资理财 长信基金管理有限责任公司 / 余额宝-2025.02.05-收益发放 不计收支 0.01 余额宝 交易成功 20250206374920321411
668 2025/2/5 2:54 投资理财 长信基金管理有限责任公司 / 余额宝-2025.02.04-收益发放 不计收支 0.01 余额宝 交易成功 20250205367997758411
669 2025/2/4 3:15 投资理财 长信基金管理有限责任公司 / 余额宝-2025.02.03-收益发放 不计收支 0.01 余额宝 交易成功 20250204363525748411
670 2025/2/3 16:52 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 10.12 花呗&红包 交易成功 2025020323001464411401955744 35126600004802000020250203165230111907151773
671 2025/2/3 16:37 餐饮美食 **妹 130******40 收钱码收款 支出 32.92 花呗&红包 交易成功 2025020322001464411402676595 17385718419602126064414
672 2025/2/3 16:33 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 40.08 花呗&红包 交易成功 2025020323001464411403243236 08126600004802000020250203163339111907076897
673 2025/2/3 8:47 医疗健康 淘宝闪购 ele***@service.aliyun.com 国胜大药房(安庆金桂丽园店) 支出 33 花呗 交易成功 2025020322001164411404557804 13080600725020361869938849114
674 2025/2/3 2:49 投资理财 长信基金管理有限责任公司 / 余额宝-2025.02.02-收益发放 不计收支 0.01 余额宝 交易成功 20250203359048356411
675 2025/2/2 7:50 医疗健康 淘宝闪购 ele***@service.aliyun.com 国胜大药房(安庆祥和路店) 支出 22.9 花呗 交易成功 2025020222001164411400774567 13070600725020228129576849114
676 2025/2/2 2:51 投资理财 长信基金管理有限责任公司 / 余额宝-2025.02.01-收益发放 不计收支 0.01 余额宝 交易成功 20250202351999168411
677 2025/2/1 15:07 餐饮美食 安庆市宜秀区严岭生鲜经营部 / 付款码支付 支出 19.18 花呗&红包 交易成功 2025020123001464411458476469 072017052207307325102202502011507005120003
678 2025/2/1 14:51 餐饮美食 江记土猪肉 139******44 收钱码收款 支出 61.98 花呗&红包 交易成功 2025020122001464411457325227 17383926695602126064414
679 2025/2/1 10:37 日用百货 蒋年香 132******90 收钱码收款 支出 49.98 花呗&红包 交易成功 2025020122001464411458342982 47383774719602126064414
680 2025/2/1 10:36 日用百货 蒋年香 132******90 收钱码收款 支出 49.92 花呗&红包 交易成功 2025020122001464411455967487 47383774156602126064414
681 2025/2/1 10:34 日用百货 桐城市新渡大乐购购物中心 / 付款码支付 支出 80.19 花呗&红包 交易成功 2025020123001464411458507148 782017052207307325102202502011034364410003
682 2025/2/1 3:15 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.31-收益发放 不计收支 0.01 余额宝 交易成功 20250201350442899411
683 2025/1/31 2:21 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.30-收益发放 不计收支 0.01 余额宝 交易成功 20250131343147485411
684 2025/1/30 7:47 医疗健康 淘宝闪购 ele***@service.aliyun.com 国胜大药房(安庆金桂丽园店) 支出 21.21 花呗 交易成功 2025013023001164411450030130 13070600725013079361685849114
685 2025/1/30 2:20 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.29-收益发放 不计收支 0.01 余额宝 交易成功 20250130339075058411
686 2025/1/29 2:47 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.28-收益发放 不计收支 0.01 余额宝 交易成功 20250129333510531411
687 2025/1/28 7:53 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 24.98 花呗&红包 交易成功 2025012823001464411443022496 42126600004802000020250128075319111891730823
688 2025/1/28 7:51 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 180.5 花呗&红包 交易成功 2025012823001464411443973223 82126600004802000020250128075156111891734622
689 2025/1/28 4:26 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.27-收益发放 不计收支 0.03 余额宝 交易成功 20250128333144418411
690 2025/1/27 14:24 餐饮美食 安庆市开发区老船长酒店 / 二维码支付 支出 252 花呗 交易成功 2025012723001464411440674382 11P2088721085226061W03_0520250127007835302326
691 2025/1/27 3:10 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.26-收益发放 不计收支 0.02 余额宝 交易成功 20250127327564521411
692 2025/1/27 2:14 退款 抖音生活服务商家 cds***@bytedance.com 退款-卖完下架70元代金券 不计收支 49.9 亲情卡(杨轩(杨轩)) 退款成功 2024122722001464411447788918_INP25012702135219030872048646184 2001052412270100608008507603
693 2025/1/27 1:12 退款 抖音生活服务商家 cds***@bytedance.com 退款-元旦聚餐必囤100元代金券 不计收支 69.9 亲情卡(杨轩(杨轩)) 退款成功 2024122722001464411449712650_INP25012701121319019223350174376 2001052412270100603387954644
694 2025/1/26 3:16 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.25-收益发放 不计收支 0.01 余额宝 交易成功 20250126322122914411
695 2025/1/25 4:10 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.24-收益发放 不计收支 0.01 余额宝 交易成功 20250125318210730411
696 2025/1/24 19:03 文化休闲 客都**店 sha***@163.com 手机充值 支出 6.88 花呗 交易成功 2025012422001164411430514362 T100P2452618166195661070
697 2025/1/24 18:33 退款 移动**店 gao***@126.com 退款-手机充值 不计收支 4.98 花呗 退款成功 2025012422001164411429955536_2452928917759661070 T100P2452928917759661070
698 2025/1/24 17:53 文化休闲 移动**店 gao***@126.com 手机充值 支出 4.98 花呗 交易关闭 2025012422001164411429955536 T100P2452928917759661070
699 2025/1/24 2:53 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.23-收益发放 不计收支 0.01 余额宝 交易成功 20250124309054774411
700 2025/1/24 1:11 退款 抖音生活服务商家 cds***@bytedance.com 退款-海底捞会员专享100元代金券 不计收支 73 亲情卡(杨轩(杨轩)) 退款成功 2024122422001464411437342052_INP25012401113119034717535220646 2001052412240100578461806900
701 2025/1/23 6:00 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.22-收益发放 不计收支 0.01 余额宝 交易成功 20250123307649685411
702 2025/1/22 5:59 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.21-收益发放 不计收支 0.01 余额宝 交易成功 20250122302622695411
703 2025/1/21 3:11 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.20-收益发放 不计收支 0.02 余额宝 交易成功 20250121396227132411
704 2025/1/20 10:13 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|24091436888345010109|期数|202501|续期交易付款 支出 9.9 花呗 交易成功 20250120626835774105 202501201100300701090013695894
705 2025/1/20 2:53 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.19-收益发放 不计收支 0.01 余额宝 交易成功 20250120390034821411
706 2025/1/19 2:54 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.18-收益发放 不计收支 0.01 余额宝 交易成功 20250119381202983411
707 2025/1/18 19:41 餐饮美食 安庆市新皖韵食品有限公司(新皖韵) / 新皖韵金桂店(超市) 支出 6.82 花呗&红包 交易成功 2025011823001464411406917533 62126600004802000020250118194118404226035118
708 2025/1/18 2:53 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.17-收益发放 不计收支 0.01 余额宝 交易成功 20250118377149214411
709 2025/1/17 3:07 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.16-收益发放 不计收支 0.01 余额宝 交易成功 20250117374558886411
710 2025/1/16 3:16 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.15-收益发放 不计收支 0.01 余额宝 交易成功 20250116369319748411
711 2025/1/15 10:46 信用借还 花呗|信用购 / 主动还款-花呗|信用购2025年01月账单 不计收支 344.48 邮储银行储蓄卡(8719) 还款成功 2025011529020999410197103501
712 2025/1/15 4:25 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.14-收益发放 不计收支 0.01 余额宝 交易成功 20250115364036857411
713 2025/1/14 11:03 保险 众安保险 / 骑行保·两轮电动车意外险-*芳 支出 21.58 花呗 交易成功 20250114554281154105 25011444236453310552
714 2025/1/14 2:33 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.13-收益发放 不计收支 0.01 余额宝 交易成功 20250114358111222411
715 2025/1/13 4:00 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.12-收益发放 不计收支 0.01 余额宝 交易成功 20250113353225796411
716 2025/1/12 2:50 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.11-收益发放 不计收支 0.01 余额宝 交易成功 20250112347900673411
717 2025/1/11 2:57 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.10-收益发放 不计收支 0.01 余额宝 交易成功 20250111338543257411
718 2025/1/10 11:44 餐饮美食 金桂牛肉面 134******00 经营码交易 不计收支 18.98 亲情卡(杨轩(杨轩))&红包 交易成功 2025011022001464411437907207 17364806857602126064414
719 2025/1/10 2:43 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.09-收益发放 不计收支 0.01 余额宝 交易成功 20250110336967177411
720 2025/1/10 1:12 投资理财 余额宝 cxd***@cxfund.com.cn 余额宝-自动转入 不计收支 9.5 账户余额 交易成功 20250110019130101000410077231880 20250110009130501000410051588449
721 2025/1/9 17:58 保险 中国人民财产保险股份有限公司 / 保险理赔-退货宝补偿-订单号:2425517652252661070 保单号:25010143326636310758 收入 9.5 交易成功 20250109498378094105 202501091100300307580094808243
722 2025/1/9 3:05 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.08-收益发放 不计收支 0.01 余额宝 交易成功 20250109328988843411
723 2025/1/8 2:42 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.07-收益发放 不计收支 0.01 余额宝 交易成功 20250108322728229411
724 2025/1/7 3:13 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.06-收益发放 不计收支 0.01 余额宝 交易成功 20250107318538356411
725 2025/1/6 22:17 收入 ****5 158******66 出全新松达儿童山茶油润护霜100g 不计收支 48.8 交易关闭 2025010623001117391437288315 T200P4194064011782015629
726 2025/1/6 14:47 退款 时尚**8 183******36 退款-加厚灰色毛呢半身裙女秋冬季配靴子的a字半裙高腰显瘦包臀短裙裤 等多件 不计收支 54.03 花呗 退款成功 2024123122001164411404726986_2425517652254661070_advance T200P2425517652252661070
727 2025/1/6 14:47 退款 时尚**8 183******36 退款-加厚灰色毛呢半身裙女秋冬季配靴子的a字半裙高腰显瘦包臀短裙裤 等多件 不计收支 45.02 花呗 退款成功 2024123122001164411404726986_2425517652253661070_advance T200P2425517652252661070
728 2025/1/6 14:47 退款 时尚**8 183******36 退款-加厚灰色毛呢半身裙女秋冬季配靴子的a字半裙高腰显瘦包臀短裙裤 等多件 不计收支 23.41 花呗 退款成功 2024123122001164411404726986_2425517652255661070_advance T200P2425517652252661070
729 2025/1/6 14:46 退款 时尚**8 183******36 退款-加厚灰色毛呢半身裙女秋冬季配靴子的a字半裙高腰显瘦包臀短裙裤 等多件 不计收支 45.02 花呗 退款成功 2024123122001164411404726986_2425517652257661070_advance T200P2425517652252661070
730 2025/1/6 14:46 退款 时尚**8 183******36 退款-加厚灰色毛呢半身裙女秋冬季配靴子的a字半裙高腰显瘦包臀短裙裤 等多件 不计收支 45.02 花呗 退款成功 2024123122001164411404726986_2425517652256661070_advance T200P2425517652252661070
731 2025/1/6 14:43 退款 时尚**8 183******36 退款-加厚灰色毛呢半身裙女秋冬季配靴子的a字半裙高腰显瘦包臀短裙裤 等多件 不计收支 54.03 花呗 退款成功 2024123122001164411404726986_2425517652258661070_advance T200P2425517652252661070
732 2025/1/6 10:15 保险 国泰财产保险有限责任公司 / 保险承保-全网运费险|24113041628346210934|期数|202501|续期交易付款 支出 9.9 花呗 交易成功 20250106465808484105 202501061100300709340999449606
733 2025/1/6 3:06 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.05-收益发放 不计收支 0.01 余额宝 交易成功 20250106312801937411
734 2025/1/5 4:01 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.04-收益发放 不计收支 0.01 余额宝 交易成功 20250105307362631411
735 2025/1/4 22:37 医疗健康 淘宝闪购 ele***@service.aliyun.com 老百姓大药房(祥和路七街一店) 不计收支 22.9 亲情卡(杨轩(杨轩)) 交易成功 2025010422001164411420156837 13220600725010425898921849114
736 2025/1/4 22:09 医疗健康 淘宝闪购 ele***@service.aliyun.com 国胜大药房(安庆祥和路店) 不计收支 17.57 亲情卡(杨轩(杨轩)) 交易成功 2025010423001164411418684181 13220600725010477693635849114
737 2025/1/4 3:05 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.03-收益发放 不计收支 0.01 余额宝 交易成功 20250104398268251411
738 2025/1/3 5:52 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.02-收益发放 不计收支 0.01 余额宝 交易成功 20250103397484145411
739 2025/1/2 2:36 投资理财 长信基金管理有限责任公司 / 余额宝-2025.01.01-收益发放 不计收支 0.01 余额宝 交易成功 20250102387766105411
740 2025/1/1 14:28 宠物 长风沙·花溪谷 / 萌宠乐园 不计收支 15.98 亲情卡(杨轩(杨轩))&红包 交易成功 2025010122001464411406612392 3812660000483300037895002005368366
741 2025/1/1 14:25 宠物 长风沙·花溪谷 / 萌宠乐园 不计收支 59.38 亲情卡(杨轩(杨轩))&红包 交易成功 2025010122001464411406304907 2212660000483300037895002005309655
742 2025/1/1 5:47 投资理财 长信基金管理有限责任公司 / 余额宝-2024.12.31-收益发放 不计收支 0.01 余额宝 交易成功 20250101387451090411
@@ -1,105 +0,0 @@
交易时间,交易分类,交易对方,对方账号,商品说明,收/支,金额,收/付款方式,交易状态,交易订单号,商家订单号,备注
2026/2/28 16:07,其他,淘宝闪购,pin***@service.alibaba.com,外卖红包,支出,0.1,花呗,交易成功,"2026022822001164411415684108 ","13160600726022880348554849114 ",
2026/2/28 09:32,退款,齐鲁**舰,alj***@service.taobao.com,退款-齐鲁润怡玻璃酸钠滴眼液5支人工泪液眼药水干眼症状旗舰店正品,不计收支,18.88,花呗,退款成功,"2026022822001164411417315277_3266037194181661070 ","T200P3266037194181661070 ",
2026/2/28 09:31,医疗健康,齐鲁**舰,alj***@service.taobao.com,【活动价】早克他克莫司 软膏0.1%*10g/支 特异性皮炎唇炎专用药膏皮炎湿疹肛周瘙痒外用药他克莫司软膏旗舰店正品 等多件,支出,44.56,花呗,等待确认收货,"2026022822001164411417282080 ","T200P3266037194178661070 ",
2026/2/28 09:31,医疗健康,齐鲁**舰,alj***@service.taobao.com,齐鲁润怡玻璃酸钠滴眼液5支人工泪液眼药水干眼症状旗舰店正品,支出,18.88,花呗,交易关闭,"2026022822001164411417315277 ","T200P3266037194181661070 ",
2026/2/27 16:40,家居家装,tb**0,167******86,空调防尘罩壁挂式通用全包格力美的全型号一次性无纺布空调防尘罩,支出,0.01,余额宝,等待确认收货,"2026022722001164411413579601 ","T200P3264993770776661070 ",
2026/2/26 23:39,服饰装扮,li**9,136******70,韩系高马尾发绳头饰豹纹球球橡皮筋高弹力耐用皮套女头绳发饰发圈,支出,0.01,花呗,等待确认收货,"2026022622001164411409824803 ","T200P3264346956280661070 ",
2026/2/26 23:17,家居家装,梦百**店,hkf***@163.com,【门店同款】梦百合零压记忆棉床垫家用卧室席梦思软硬两用 朗怡,支出,1780.27,花呗分期(3期)&焕新折扣,等待确认收货,"2026022622001164411408822885 ","T200P3263760735379661070 ",
2026/2/26 22:34,家居家装,梦百**店,hkf***@163.com,38焕新必拍!1分惊喜预约38焕新周特权 预定更划算!!,支出,0.01,花呗,等待确认收货,"2026022622001164411408332642 ","T200P3264264660465661070 ",
2026/2/24 13:01,家居家装,星仔**卖,159***@163.com,九牧厨房水龙头家用万向旋转健康饮用洗碗池冷热水槽洗菜盆33080,支出,137.99,花呗&优惠,交易成功,"2026022422001164411401900417 ","T200P3258593691040661070 ",
2026/2/24 13:01,家居家装,九牧**店,134***@163.com,【活动价】九牧防水生料带工程批发聚四氟乙烯封水带加长加厚密封止水生胶带,支出,5.89,花呗&优惠,等待确认收货,"2026022422001164411459209770 ","T200P3258593691041661070 ",
2026/2/24 12:15,日用百货,发润家连锁超市七街店,/,发润家七街店-M2503040000404082602240090763,支出,24.21,花呗,交易成功,"2026022422001464411402332910 ","111266000048250000705403781901260224 ",
2026/2/23 23:10,服饰装扮,tb**9,177******54,这么百搭~优雅珍珠发圈ins简约头绳高级感小肠扎马尾绑头发橡皮筋,支出,0.01,花呗,等待确认收货,"2026022322001164411458481523 ","T200P3258321492847661070 ",
2026/2/20 15:46,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,詹记桃酥(安庆绿地店)外卖订单,支出,6.69,花呗,交易成功,"2026022022001164411444613027 ","13150600726022031350387849114 ",
2026/2/20 11:08,信用借还,花呗|信用购,/,自动还款-花呗|信用购2026年02月账单,不计收支,3182.86,工商银行储蓄卡(3456),还款成功,"2026022029020999410172676834 "," ",
2026/2/20 10:08,保险,国泰财产保险有限责任公司,/,2026.2月保费缴清-全网运费险-*芳,支出,9.9,花呗,交易成功,"20260220214643484105 ","202602201100300707310120878743 ",
2026/2/19 19:21,餐饮美食,新皖韵生鲜超市,/,新皖韵生鲜超市,支出,15.6,花呗&红包,交易成功,"2026021922001464411440232844 ","61126600004802000020260219192115408030177292 ",
2026/2/18 13:59,退款,淘宝闪购,ele***@service.aliyun.com,退款-华润苏果(安庆天柱山路店),不计收支,13.15,花呗&红包,退款成功,"2026021822001164411438434803_13130601326021841635340849114 ","13130600726021842073455849114 ",
2026/2/18 13:43,日用百货,淘宝闪购,ele***@service.aliyun.com,华润苏果(安庆天柱山路店),支出,13.15,花呗&红包,交易关闭,"2026021822001164411438434803 ","13130600726021842073455849114 ",
2026/2/18 01:54,投资理财,余额宝,cxd***@cxfund.com.cn,余额宝-自动转入,不计收支,1.68,账户余额,交易成功,"20260218019130101000410040265474 ","20260218009130501000410002452119 ",
2026/2/17 07:58,收入,支付宝集福啦的红包,/,收到支付宝集福啦的红包,收入,1.68,,交易成功,"20260217002161010000414745336454_PZ1540451963 "," ",
2026/2/16 22:56,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,串王张四(七街店)外卖订单,支出,46.57,江苏银行信用购,交易成功,"2026021622001164411429581411 ","13220600726021607626887849114 ",
2026/2/16 17:44,日用百货,宜家乐购生活超市,/,安庆市开发区宜家乐购生活超市安庆市开发区宜家乐购生活超市,支出,99,江苏银行信用购,交易成功,"2026021622001464411428970326 ","661266000048180000155215628422126021617444817258 ",
2026/2/16 10:33,日用百货,安庆发润家供应链有限公司,/,二维码支付,支出,19.91,花呗,交易成功,"2026021623001464411430007354 ","21P2088721085226061W03_M2503040000404102602160160340 ",
2026/2/15 16:56,餐饮美食,新皖韵生鲜超市,/,新皖韵生鲜超市,支出,22.5,花呗,交易成功,"2026021523001464411426396308 ","54126600004802000020260215165646407988642670 ",
2026/2/14 14:46,日用百货,淘宝闪购,ele***@service.aliyun.com,海豚购(安庆七街店),支出,35.8,花呗,交易成功,"2026021422001164411424112215 ","13140600726021458091835849114 ",
2026/2/14 09:51,爱车养车,中国石化销售股份有限公司安徽安庆石油分公司,wan***@sinopec.com,92#车用乙醇汽油(E10)(VIB),支出,228.11,江苏银行信用购,交易成功,"2026021422001464411420854004 ","02201472168375819071488 ",
2026/2/13 11:43,餐饮美食,找好**呲,xia***@sina.com,祝大哥大黄米锅巴228g袋装香酥脆爽锅巴脆片休闲追剧解馋小零食,支出,15.16,花呗,交易成功,"2026021322001164411416774605 ","T200P3246503485506661070 ",
2026/2/12 17:52,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,漠上香片皮烤鸭(恒大店)外卖订单,支出,27.8,花呗,交易成功,"2026021222001164411416030583 ","13170600726021217094445849114 ",
2026/2/12 14:06,医疗健康,淘宝闪购,ele***@service.aliyun.com,老百姓大药房(迎宾路店),支出,31.11,花呗,交易成功,"2026021222001164411412516352 ","13140600726021245331671849114 ",
2026/2/12 12:44,退款,淘宝闪购,ele***@service.aliyun.com,退款-老百姓大药房(迎宾路店),不计收支,31.11,花呗,退款成功,"2026021222001164411413791004_13120601326021264703108849114 ","13120600726021280387273849114 ",
2026/2/12 12:44,医疗健康,淘宝闪购,ele***@service.aliyun.com,老百姓大药房(迎宾路店),支出,31.11,花呗,交易关闭,"2026021222001164411413791004 ","13120600726021280387273849114 ",
2026/2/11 13:02,退款,布衣**店,227***@qq.com,退款-【优惠价】布衣传说 防褪色原牛 原色加绒牛仔裤子男款宽松直筒阔腿休闲长裤,不计收支,130.1,江苏银行信用购,退款成功,"2026021122001164411406782959_3242743250447661070 ","T200P3242743250447661070 ",
2026/2/11 13:02,服饰装扮,布衣**店,227***@qq.com,【优惠价】布衣传说 防褪色原牛 原色加绒牛仔裤子男款宽松直筒阔腿休闲长裤,支出,130.1,江苏银行信用购,交易关闭,"2026021122001164411406782959 ","T200P3242743250447661070 ",
2026/2/11 13:02,母婴亲子,ju**店,zha***@163.com,【优惠价】焰龙战神炫卡斗士2玩具男孩第二季汽车变形机甲机器人金刚正版S,支出,300.91,江苏银行信用购,交易成功,"2026021122001164411407733930 ","T200P3242743250446661070 ",
2026/2/11 11:34,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,肯德基宅急送(安庆苏果店)外卖订单,支出,57.5,花呗,交易成功,"2026021122001164411407747476 ","13110600726021180266770849114 ",
2026/2/9 15:22,文化休闲,绮兰**店,qil***@163.com,【优惠价】红包袋2026新款马年通用过年利是封个性创意新年快乐高档压岁包钱,支出,0.06,花呗,交易成功,"2026020922001164411459008612 ","T200P3239182956192661070 ",
2026/2/9 10:31,退款,柴华**店,cha***@163.com,退款-【优惠价】新中式轻国风短款旗袍改良女装2026新款夏年轻少女小飞袖撞色上衣,不计收支,115.55,花呗,退款成功,"2026020922001164411457909606_3238349808442661070 ","T200P3238349808442661070 ",
2026/2/9 10:30,服饰装扮,柴华**店,cha***@163.com,【优惠价】新中式轻国风短款旗袍改良女装2026新款夏年轻少女小飞袖撞色上衣,支出,115.55,花呗,交易关闭,"2026020922001164411457909606 ","T200P3238349808442661070 ",
2026/2/9 10:30,母婴亲子,童年**店,171***@qq.com,【优惠价】磁力片儿童益智玩具拼装强力磁吸彩窗贴片生日礼物大自然拼图积木,支出,63.76,花呗,交易成功,"2026020922001164411459445440 ","T200P3238349808441661070 ",
2026/2/8 19:38,餐饮美食,赵一鸣零食连锁,/,安庆市宜秀区全梦零食店(个体工商户),支出,154.58,花呗,交易成功,"2026020823001464411456371857 ","88106600004857000220260208MMhcb7ud ",
2026/2/7 22:00,餐饮美食,贵**,173***@163.com,禾盟禾香小郡肝500g/包 麻辣鸡胗串串香烤肉火锅烤肉半成品食材 等多件,支出,49.94,花呗,交易成功,"2026020722001164411452666705 ","T200P3235176157491661070 ",
2026/2/5 08:19,医疗健康,安庆市立医院,/,医保支付(不含自费),支出,0,,支付成功,"20260205644153793936 ","34012026020522713424 ",
2026/2/4 19:50,医疗健康,安庆市立医院,/,医保支付(不含自费),支出,0,,支付成功,"20260204644153616010 ","34012026020422687560 ",
2026/2/4 19:27,医疗健康,安庆市立医院,/,医保支付(不含自费),支出,0,,支付成功,"20260204644153583199 ","34012026020422682860 ",
2026/2/3 17:59,医疗健康,淘宝闪购,ele***@service.aliyun.com,老百姓大药房(祥和路七街一店),支出,36.8,花呗,交易成功,"2026020322001164411436601177 ","13170600726020329507013849114 ",
2026/2/3 11:55,餐饮美食,洽洽**店,wei***@163.com,毛嗑瓜子500g*3袋山核桃味焦糖味五香味原瓜子洽洽葵花籽炒货,支出,22.9,花呗,交易成功,"2026020322001164411433368874 ","T200P3225191484523661070 ",
2026/2/1 17:56,服饰装扮,安庆市开发区大东鞋业经营部,/,安庆市开发区大东鞋业经营部-消费,支出,149,花呗,交易成功,"2026020123001464411429354463 ","20P2088721085226061W03_0520260201009693068331 ",
2026/2/1 13:27,退款,ha**啦,136***@163.com,退款-满天星烫钻直筒牛仔裤女冬加绒大码胖mm设计感高腰宽松显瘦阔腿裤 等多件,不计收支,86.9,花呗,退款成功,"2026012922001164411415537657_3214344830698661070_advance ","T200P3214344830695661070 ",
2026/2/1 13:26,退款,ha**啦,136***@163.com,退款-满天星烫钻直筒牛仔裤女冬加绒大码胖mm设计感高腰宽松显瘦阔腿裤 等多件,不计收支,76.3,花呗,退款成功,"2026012922001164411415537657_3214344830699661070_advance ","T200P3214344830695661070 ",
2026/2/1 13:25,退款,ha**啦,136***@163.com,退款-满天星烫钻直筒牛仔裤女冬加绒大码胖mm设计感高腰宽松显瘦阔腿裤 等多件,不计收支,86.9,花呗,退款成功,"2026012922001164411415537657_3214344830696661070_advance ","T200P3214344830695661070 ",
2026/2/1 13:23,退款,ha**啦,136***@163.com,退款-满天星烫钻直筒牛仔裤女冬加绒大码胖mm设计感高腰宽松显瘦阔腿裤 等多件,不计收支,79,花呗,退款成功,"2026012922001164411415537657_3214344830697661070_advance ","T200P3214344830695661070 ",
2026/2/1 11:21,医疗健康,安庆市立医院,aqs***@163.com,移动支付,支出,23,花呗,交易成功,"2026020123001464411425944663 ","2026020186680027_112114_26 ",
2026/2/1 11:12,医疗健康,安庆市立医院,/,医保支付(不含自费),支出,0,,支付成功,"20260201644151635228 ","34082026020166650594 ",
2026/2/1 11:00,医疗健康,安庆市立医院,aqs***@163.com,挂号_2024002279支付宝xzz210,支出,19,花呗,交易成功,"2026020123001464411425754311 ","20260201xzz2100047 ",
2026/1/31 21:00,餐饮美食,小兰文具店,136******37,经营码交易,支出,6,花呗,交易成功,"2026013122001464411427792285 ","17698644278602126064414 ",
2026/1/31 20:11,服饰装扮,三福时尚,/,安庆市迎江区姚霞百货店,支出,685.84,江苏银行信用购,交易成功,"2026013123001464411425954589 ","75126600004802000020260131201116407768239994 ",
2026/1/31 19:36,服饰装扮,优衣库安庆吾悦广场,frc***@uniqlo.com.cn,优衣库(安庆吾悦广场店),支出,199,花呗,交易成功,"2026013123001464411425707951 ","1309226307010520260131193626 ",
2026/1/31 12:20,医疗健康,安庆市立医院,aqs***@163.com,缴费_2024002279支付宝xzz210,支出,80.4,花呗,交易成功,"2026013122001464411420993771 ","20260131xzz2100078 ",
2026/1/31 11:52,医疗健康,安庆市立医院,aqs***@163.com,挂号_2024002279支付宝xzz210,支出,19,花呗,交易成功,"2026013123001464411422138148 ","20260131xzz2100070 ",
2026/1/29 16:17,生活服务,杭州菜鸟供应链管理有限公司,gg4***@cainiao.com,菜鸟裹裹-寄件费_702667010_LP00794110713167,支出,16.72,余额宝,交易成功,"2026012922001464411415914490 ","CN_V1_602448792073020023 ",
2026/1/29 12:17,服饰装扮,ha**啦,136***@163.com,满天星烫钻直筒牛仔裤女冬加绒大码胖mm设计感高腰宽松显瘦阔腿裤 等多件,支出,329.1,花呗,交易关闭,"2026012922001164411415537657 ","T200P3214344830695661070 ",
2026/1/28 21:30,服饰装扮,糖豆**1,186******54,复古毛呢格纹波浪发夹碎发刘海夹高端百搭侧边夹2026新款秋冬发饰,支出,0.01,花呗,交易成功,"2026012822001164411411553092 ","T200P3213956676086661070 ",
2026/1/28 19:37,医疗健康,淘宝闪购,ele***@service.aliyun.com,老百姓大药房(祥和路七街一店),支出,14.77,花呗,交易成功,"2026012822001164411411873420 ","13190600726012896929460849114 ",
2026/1/27 11:09,数码电器,gr**店,gre***@cn.gree.com,[多地次日达]格力踢脚线取暖器家用地暖器折叠智能遥控速热电暖气,不计收支,483.62,他人代付账户,交易成功,"2026012722001164411408257736 ","T200P3210133623792661070 ",
2026/1/26 22:10,家居家装,yz**5,342***@qq.com,胡桃木纹加强旋钮挂钩强力承重粘胶挂钩卫生间厨房免打孔置物挂钩,支出,0.01,花呗,交易成功,"2026012622001164411404188791 ","T200P3209907217857661070 ",
2026/1/25 20:13,退款,mx**娅,137******58,退款-2025冬季新款塔茨勒厚底雪地靴女款皮毛一体东北加厚女鞋河南桑坡,不计收支,137.04,花呗,退款成功,"2026012522001164411459763445_3207655705548661070 ","T200P3207655705548661070 ",
2026/1/25 20:13,数码电器,益度**店,yid***@163.com,【优惠价】益度暖风机家用无光速热节能暧风扇冷暖空调扇轻音办公小型取暖器,支出,43.61,花呗,交易成功,"2026012522001164411458262009 ","T200P3207655705549661070 ",
2026/1/25 20:13,服饰装扮,mx**娅,137******58,2025冬季新款塔茨勒厚底雪地靴女款皮毛一体东北加厚女鞋河南桑坡,支出,137.04,花呗,交易关闭,"2026012522001164411459763445 ","T200P3207655705548661070 ",
2026/1/25 20:07,餐饮美食,洽洽**店,wei***@163.com,毛嗑瓜子500g*3袋山核桃味焦糖味五香味原瓜子洽洽葵花籽炒货,支出,22.02,花呗,交易成功,"2026012522001164411458449088 ","T200P3207644581349661070 ",
2026/1/25 10:40,餐饮美食,今喜烘焙,/,今喜烘焙蛋糕店,支出,10,花呗,交易成功,"2026012522001464411457484561 ","8012660000489000008000033779826025 ",
2026/1/25 10:38,餐饮美食,新一家生鲜超市,/,安庆卓利贸易有限公司-20260125103759682948,支出,37.59,花呗&红包,交易成功,"2026012522001464411400073002 ","73126600004836000083620260125937249860 ",
2026/1/25 09:34,爱车养车,中国石油中兴大道加油站,zha***@petrochina.com.cn,中国石油-条码支付,支出,239.86,花呗&红包,交易成功,"2026012522001464411457496838 ","17693048574103492990 ",
2026/1/23 09:29,餐饮美食,洽洽**店,wei***@163.com,毛嗑瓜子500g*3袋山核桃味焦糖味五香味原瓜子洽洽葵花籽炒货,支出,22.9,花呗,交易成功,"2026012322001164411452695417 ","T200P3201603566169661070 ",
2026/1/21 12:29,餐饮美食,小杨餐馆,138******62,收钱码收款,支出,639.99,工商银行储蓄卡(3456)&红包,交易成功,"2026012122001464411445428589 ","17689697613602126064414 ",
2026/1/20 10:08,保险,国泰财产保险有限责任公司,/,2026.1月保费缴清-全网运费险-*芳,支出,9.9,花呗,交易成功,"20260120289608474105 ","202601201100300707310111425495 ",
2026/1/19 09:00,家居家装,yz**5,342***@qq.com,胡桃木纹加强旋钮挂钩强力承重粘胶挂钩卫生间厨房免打孔置物挂钩,支出,0.01,花呗,交易成功,"2026011922001164411433652385 ","T200P3193458566093661070 ",
2026/1/18 23:43,家居家装,yz**5,342***@qq.com,胡桃木纹加强旋钮挂钩强力承重粘胶挂钩卫生间厨房免打孔置物挂钩,支出,0.01,花呗,交易成功,"2026011822001164411433345226 ","T200P3193558861066661070 ",
2026/1/17 20:27,餐饮美食,安庆市大观区文城龙虾店,/,文城龙虾店,支出,989.99,花呗&红包,交易成功,"2026011722001464411427144827 ","732017052207307325100202601172027476390001 ",
2026/1/17 17:43,日用百货,旺鲜生超市,/,安庆市大观区旺鲜生超市,支出,141.39,花呗&红包,交易成功,"2026011723001464411426612178 ","252017092208872157130904990231000032601170083194 ",
2026/1/17 12:58,信用借还,花呗|信用购,/,主动还款-花呗|信用购2026年01月账单,不计收支,1127.87,工商银行储蓄卡(3456),还款成功,"2026011729020999410178826601 "," ",
2026/1/16 21:02,医疗健康,淘宝闪购,ele***@service.aliyun.com,国胜大药房(安庆迎宾西路店),支出,16.78,花呗,交易成功,"2026011622001164411425381130 ","13210600726011682167473849114 ",
2026/1/14 15:21,退款,天**,tmc***@service.aliyun.com,退款-【优惠价】【全新升级】Colorkey珂拉琪水雾唇露唇釉女唇彩低饱和口红女唇膏 等多件,不计收支,35.65,花呗,退款成功,"2026011422001164411412119892_3183559825030661070 ","T200P3183559825029661070 ",
2026/1/14 11:29,退款,we**9,150******25,退款-EIGHTHMONTH 黑色气质裙裤女夏季新款2025夏季新款宽松百搭裤子,不计收支,91.41,花呗,退款成功,"2026011422001164411414198207_3183559825033661070 ","T200P3183559825033661070 ",
2026/1/14 11:29,美容美发,天**,tmc***@service.aliyun.com,【优惠价】【全新升级】Colorkey珂拉琪水雾唇露唇釉女唇彩低饱和口红女唇膏 等多件,支出,35.65,花呗,交易关闭,"2026011422001164411412119892 ","T200P3183559825029661070 ",
2026/1/14 11:29,服饰装扮,we**9,150******25,EIGHTHMONTH 黑色气质裙裤女夏季新款2025夏季新款宽松百搭裤子,支出,91.41,花呗,交易关闭,"2026011422001164411414198207 ","T200P3183559825033661070 ",
2026/1/14 11:29,日用百货,九阳**店,jyg***@joyoung.com,九阳保温杯316L不锈钢高颜值男女学生儿童便携泡茶水杯新款正品餐,支出,54.39,花呗,交易成功,"2026011422001164411414776467 ","T200P3183559825028661070 ",
2026/1/13 19:22,退款,希乐**店,am8***@163.com,退款-【优惠价】希乐保温杯女316不锈钢大容量杯子男儿童吸管杯学生上学专用水杯,不计收支,32.82,花呗,退款成功,"2026011322001164411414696995_3182501964734661070 ","T200P3182501964734661070 ",
2026/1/13 19:20,退款,3c**店,3ce***@loreal.com,退款-【优惠价】【新年礼物】3CE九宫格眼影 哑光亮片大地色日常彩妆女闺蜜送礼 等多件,不计收支,69.67,花呗,退款成功,"2026011322001164411412359257_3182501964737661070 ","T200P3182501964736661070 ",
2026/1/13 19:19,退款,3c**店,3ce***@loreal.com,退款-【优惠价】【新年礼物】3CE九宫格眼影 哑光亮片大地色日常彩妆女闺蜜送礼 等多件,不计收支,78.48,花呗,退款成功,"2026011322001164411412359257_3182501964738661070 ","T200P3182501964736661070 ",
2026/1/13 19:19,退款,sc**店,kcz***@163.com,退款-【优惠价】科巢婴儿棉签宝宝专用婴幼儿童新生掏耳鼻屎小棉棒挖耳勺超细双头,不计收支,3.65,花呗,退款成功,"2026011322001164411411267351_3182501964735661070 ","T200P3182501964735661070 ",
2026/1/13 19:19,母婴亲子,sc**店,kcz***@163.com,【优惠价】科巢婴儿棉签宝宝专用婴幼儿童新生掏耳鼻屎小棉棒挖耳勺超细双头,支出,3.65,花呗,交易关闭,"2026011322001164411411267351 ","T200P3182501964735661070 ",
2026/1/13 19:19,美容美发,3c**店,3ce***@loreal.com,【优惠价】【新年礼物】3CE九宫格眼影 哑光亮片大地色日常彩妆女闺蜜送礼 等多件,支出,148.15,花呗,交易关闭,"2026011322001164411412359257 ","T200P3182501964736661070 ",
2026/1/13 19:19,日用百货,希乐**店,am8***@163.com,【优惠价】希乐保温杯女316不锈钢大容量杯子男儿童吸管杯学生上学专用水杯,支出,32.82,花呗,交易关闭,"2026011322001164411414696995 ","T200P3182501964734661070 ",
2026/1/9 11:03,家居家装,yz**5,342***@qq.com,胡桃木纹加强旋钮挂钩强力承重粘胶挂钩卫生间厨房免打孔置物挂钩,支出,0.01,花呗,交易成功,"2026010922001164411451594182 ","T200P3172747621630661070 ",
2026/1/8 17:26,餐饮美食,莹莹果铺,/,莹莹果铺-莹莹果铺,支出,2.99,花呗&红包&碰一下立减,交易成功,"2026010823001464411447704840 ","32126600004836000083620260108377536186 ",
2026/1/8 17:22,餐饮美食,莹莹果铺,/,莹莹果铺-莹莹果铺,支出,44.89,花呗&红包,交易成功,"2026010822001464411447442374 ","60126600004836000083620260108767900674 ",
2026/1/8 10:39,退款,义乌**厂,c2m***@service.aliyun.com,退款-画画收纳册4k美术作品收集册8k画夹画册素描纸画纸a2画稿a3绘画奖状透明儿童大容量作品集收纳袋画作手提A4纸,不计收支,4.05,花呗,退款成功,"2025122922001164411457682310_3151049235917661070 ","T200P3151049235917661070 ",
2026/1/5 21:55,其他,润本**店,200***@qq.com,【会员优先购】润本婴儿润唇膏(葡萄柚)4g,支出,7.61,余额宝,交易成功,"2026010522001164411435147066 ","T200P3166530204032661070 ",
2026/1/5 20:34,退款,上海泓弈信息科技有限公司,e54***@service.aliyun.com,退款-帮买帮送-配送费,不计收支,7,花呗,退款成功,"2026010522001464411436905985_26010530627789868311 ","26010530627780207611 ",
2026/1/5 16:54,生活服务,上海泓弈信息科技有限公司,e54***@service.aliyun.com,帮买帮送-配送费,支出,7,花呗,交易关闭,"2026010522001464411436905985 ","26010530627780207611 ",
2026/1/3 23:01,服饰装扮,平**,fux***@163.com,高弹简约森系网纱大肠发圈发绳高级感扎头绳皮筋优雅百搭发绳发饰,支出,0.07,花呗,交易成功,"2026010322001164411425808083 ","T200P3162338150141661070 ",
2026/1/2 10:25,日用百货,安庆发润家供应链有限公司,/,二维码支付,支出,193.51,花呗&红包,交易成功,"2026010222001464411420442118 ","21P2088721085226061W03_M2503040000404062601020092310 ",
2026/1/1 17:04,餐饮美食,莹莹果铺,/,莹莹果铺-莹莹果铺,支出,87.87,花呗&红包&现金抵价券,交易成功,"2026010122001464411415740178 ","53126600004836000083620260101766139970 ",
2026/1/1 16:59,日用百货,安庆发润家供应链有限公司,/,二维码支付,支出,18.08,花呗&红包,交易成功,"2026010122001464411417667709 ","10P2088721085226061W03_M2503040000404062601010303100 ",
1 交易时间 交易分类 交易对方 对方账号 商品说明 收/支 金额 收/付款方式 交易状态 交易订单号 商家订单号 备注
2 2026/2/28 16:07 其他 淘宝闪购 pin***@service.alibaba.com 外卖红包 支出 0.1 花呗 交易成功 2026022822001164411415684108 13160600726022880348554849114
3 2026/2/28 09:32 退款 齐鲁**舰 alj***@service.taobao.com 退款-齐鲁润怡玻璃酸钠滴眼液5支人工泪液眼药水干眼症状旗舰店正品 不计收支 18.88 花呗 退款成功 2026022822001164411417315277_3266037194181661070 T200P3266037194181661070
4 2026/2/28 09:31 医疗健康 齐鲁**舰 alj***@service.taobao.com 【活动价】早克他克莫司 软膏0.1%*10g/支 特异性皮炎唇炎专用药膏皮炎湿疹肛周瘙痒外用药他克莫司软膏旗舰店正品 等多件 支出 44.56 花呗 等待确认收货 2026022822001164411417282080 T200P3266037194178661070
5 2026/2/28 09:31 医疗健康 齐鲁**舰 alj***@service.taobao.com 齐鲁润怡玻璃酸钠滴眼液5支人工泪液眼药水干眼症状旗舰店正品 支出 18.88 花呗 交易关闭 2026022822001164411417315277 T200P3266037194181661070
6 2026/2/27 16:40 家居家装 tb**0 167******86 空调防尘罩壁挂式通用全包格力美的全型号一次性无纺布空调防尘罩 支出 0.01 余额宝 等待确认收货 2026022722001164411413579601 T200P3264993770776661070
7 2026/2/26 23:39 服饰装扮 li**9 136******70 韩系高马尾发绳头饰豹纹球球橡皮筋高弹力耐用皮套女头绳发饰发圈 支出 0.01 花呗 等待确认收货 2026022622001164411409824803 T200P3264346956280661070
8 2026/2/26 23:17 家居家装 梦百**店 hkf***@163.com 【门店同款】梦百合零压记忆棉床垫家用卧室席梦思软硬两用 朗怡 支出 1780.27 花呗分期(3期)&焕新折扣 等待确认收货 2026022622001164411408822885 T200P3263760735379661070
9 2026/2/26 22:34 家居家装 梦百**店 hkf***@163.com 38焕新必拍!1分惊喜预约38焕新周特权 预定更划算!! 支出 0.01 花呗 等待确认收货 2026022622001164411408332642 T200P3264264660465661070
10 2026/2/24 13:01 家居家装 星仔**卖 159***@163.com 九牧厨房水龙头家用万向旋转健康饮用洗碗池冷热水槽洗菜盆33080 支出 137.99 花呗&优惠 交易成功 2026022422001164411401900417 T200P3258593691040661070
11 2026/2/24 13:01 家居家装 九牧**店 134***@163.com 【活动价】九牧防水生料带工程批发聚四氟乙烯封水带加长加厚密封止水生胶带 支出 5.89 花呗&优惠 等待确认收货 2026022422001164411459209770 T200P3258593691041661070
12 2026/2/24 12:15 日用百货 发润家连锁超市七街店 / 发润家七街店-M2503040000404082602240090763 支出 24.21 花呗 交易成功 2026022422001464411402332910 111266000048250000705403781901260224
13 2026/2/23 23:10 服饰装扮 tb**9 177******54 这么百搭~优雅珍珠发圈ins简约头绳高级感小肠扎马尾绑头发橡皮筋 支出 0.01 花呗 等待确认收货 2026022322001164411458481523 T200P3258321492847661070
14 2026/2/20 15:46 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 詹记桃酥(安庆绿地店)外卖订单 支出 6.69 花呗 交易成功 2026022022001164411444613027 13150600726022031350387849114
15 2026/2/20 11:08 信用借还 花呗|信用购 / 自动还款-花呗|信用购2026年02月账单 不计收支 3182.86 工商银行储蓄卡(3456) 还款成功 2026022029020999410172676834
16 2026/2/20 10:08 保险 国泰财产保险有限责任公司 / 2026.2月保费缴清-全网运费险-*芳 支出 9.9 花呗 交易成功 20260220214643484105 202602201100300707310120878743
17 2026/2/19 19:21 餐饮美食 新皖韵生鲜超市 / 新皖韵生鲜超市 支出 15.6 花呗&红包 交易成功 2026021922001464411440232844 61126600004802000020260219192115408030177292
18 2026/2/18 13:59 退款 淘宝闪购 ele***@service.aliyun.com 退款-华润苏果(安庆天柱山路店) 不计收支 13.15 花呗&红包 退款成功 2026021822001164411438434803_13130601326021841635340849114 13130600726021842073455849114
19 2026/2/18 13:43 日用百货 淘宝闪购 ele***@service.aliyun.com 华润苏果(安庆天柱山路店) 支出 13.15 花呗&红包 交易关闭 2026021822001164411438434803 13130600726021842073455849114
20 2026/2/18 01:54 投资理财 余额宝 cxd***@cxfund.com.cn 余额宝-自动转入 不计收支 1.68 账户余额 交易成功 20260218019130101000410040265474 20260218009130501000410002452119
21 2026/2/17 07:58 收入 支付宝集福啦的红包 / 收到支付宝集福啦的红包 收入 1.68 交易成功 20260217002161010000414745336454_PZ1540451963
22 2026/2/16 22:56 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 串王张四(七街店)外卖订单 支出 46.57 江苏银行信用购 交易成功 2026021622001164411429581411 13220600726021607626887849114
23 2026/2/16 17:44 日用百货 宜家乐购生活超市 / 安庆市开发区宜家乐购生活超市安庆市开发区宜家乐购生活超市 支出 99 江苏银行信用购 交易成功 2026021622001464411428970326 661266000048180000155215628422126021617444817258
24 2026/2/16 10:33 日用百货 安庆发润家供应链有限公司 / 二维码支付 支出 19.91 花呗 交易成功 2026021623001464411430007354 21P2088721085226061W03_M2503040000404102602160160340
25 2026/2/15 16:56 餐饮美食 新皖韵生鲜超市 / 新皖韵生鲜超市 支出 22.5 花呗 交易成功 2026021523001464411426396308 54126600004802000020260215165646407988642670
26 2026/2/14 14:46 日用百货 淘宝闪购 ele***@service.aliyun.com 海豚购(安庆七街店) 支出 35.8 花呗 交易成功 2026021422001164411424112215 13140600726021458091835849114
27 2026/2/14 09:51 爱车养车 中国石化销售股份有限公司安徽安庆石油分公司 wan***@sinopec.com 92#车用乙醇汽油(E10)(VIB) 支出 228.11 江苏银行信用购 交易成功 2026021422001464411420854004 02201472168375819071488
28 2026/2/13 11:43 餐饮美食 找好**呲 xia***@sina.com 祝大哥大黄米锅巴228g袋装香酥脆爽锅巴脆片休闲追剧解馋小零食 支出 15.16 花呗 交易成功 2026021322001164411416774605 T200P3246503485506661070
29 2026/2/12 17:52 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 漠上香片皮烤鸭(恒大店)外卖订单 支出 27.8 花呗 交易成功 2026021222001164411416030583 13170600726021217094445849114
30 2026/2/12 14:06 医疗健康 淘宝闪购 ele***@service.aliyun.com 老百姓大药房(迎宾路店) 支出 31.11 花呗 交易成功 2026021222001164411412516352 13140600726021245331671849114
31 2026/2/12 12:44 退款 淘宝闪购 ele***@service.aliyun.com 退款-老百姓大药房(迎宾路店) 不计收支 31.11 花呗 退款成功 2026021222001164411413791004_13120601326021264703108849114 13120600726021280387273849114
32 2026/2/12 12:44 医疗健康 淘宝闪购 ele***@service.aliyun.com 老百姓大药房(迎宾路店) 支出 31.11 花呗 交易关闭 2026021222001164411413791004 13120600726021280387273849114
33 2026/2/11 13:02 退款 布衣**店 227***@qq.com 退款-【优惠价】布衣传说 防褪色原牛 原色加绒牛仔裤子男款宽松直筒阔腿休闲长裤 不计收支 130.1 江苏银行信用购 退款成功 2026021122001164411406782959_3242743250447661070 T200P3242743250447661070
34 2026/2/11 13:02 服饰装扮 布衣**店 227***@qq.com 【优惠价】布衣传说 防褪色原牛 原色加绒牛仔裤子男款宽松直筒阔腿休闲长裤 支出 130.1 江苏银行信用购 交易关闭 2026021122001164411406782959 T200P3242743250447661070
35 2026/2/11 13:02 母婴亲子 ju**店 zha***@163.com 【优惠价】焰龙战神炫卡斗士2玩具男孩第二季汽车变形机甲机器人金刚正版S 支出 300.91 江苏银行信用购 交易成功 2026021122001164411407733930 T200P3242743250446661070
36 2026/2/11 11:34 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 肯德基宅急送(安庆苏果店)外卖订单 支出 57.5 花呗 交易成功 2026021122001164411407747476 13110600726021180266770849114
37 2026/2/9 15:22 文化休闲 绮兰**店 qil***@163.com 【优惠价】红包袋2026新款马年通用过年利是封个性创意新年快乐高档压岁包钱 支出 0.06 花呗 交易成功 2026020922001164411459008612 T200P3239182956192661070
38 2026/2/9 10:31 退款 柴华**店 cha***@163.com 退款-【优惠价】新中式轻国风短款旗袍改良女装2026新款夏年轻少女小飞袖撞色上衣 不计收支 115.55 花呗 退款成功 2026020922001164411457909606_3238349808442661070 T200P3238349808442661070
39 2026/2/9 10:30 服饰装扮 柴华**店 cha***@163.com 【优惠价】新中式轻国风短款旗袍改良女装2026新款夏年轻少女小飞袖撞色上衣 支出 115.55 花呗 交易关闭 2026020922001164411457909606 T200P3238349808442661070
40 2026/2/9 10:30 母婴亲子 童年**店 171***@qq.com 【优惠价】磁力片儿童益智玩具拼装强力磁吸彩窗贴片生日礼物大自然拼图积木 支出 63.76 花呗 交易成功 2026020922001164411459445440 T200P3238349808441661070
41 2026/2/8 19:38 餐饮美食 赵一鸣零食连锁 / 安庆市宜秀区全梦零食店(个体工商户) 支出 154.58 花呗 交易成功 2026020823001464411456371857 88106600004857000220260208MMhcb7ud
42 2026/2/7 22:00 餐饮美食 贵** 173***@163.com 禾盟禾香小郡肝500g/包 麻辣鸡胗串串香烤肉火锅烤肉半成品食材 等多件 支出 49.94 花呗 交易成功 2026020722001164411452666705 T200P3235176157491661070
43 2026/2/5 08:19 医疗健康 安庆市立医院 / 医保支付(不含自费) 支出 0 支付成功 20260205644153793936 34012026020522713424
44 2026/2/4 19:50 医疗健康 安庆市立医院 / 医保支付(不含自费) 支出 0 支付成功 20260204644153616010 34012026020422687560
45 2026/2/4 19:27 医疗健康 安庆市立医院 / 医保支付(不含自费) 支出 0 支付成功 20260204644153583199 34012026020422682860
46 2026/2/3 17:59 医疗健康 淘宝闪购 ele***@service.aliyun.com 老百姓大药房(祥和路七街一店) 支出 36.8 花呗 交易成功 2026020322001164411436601177 13170600726020329507013849114
47 2026/2/3 11:55 餐饮美食 洽洽**店 wei***@163.com 毛嗑瓜子500g*3袋山核桃味焦糖味五香味原瓜子洽洽葵花籽炒货 支出 22.9 花呗 交易成功 2026020322001164411433368874 T200P3225191484523661070
48 2026/2/1 17:56 服饰装扮 安庆市开发区大东鞋业经营部 / 安庆市开发区大东鞋业经营部-消费 支出 149 花呗 交易成功 2026020123001464411429354463 20P2088721085226061W03_0520260201009693068331
49 2026/2/1 13:27 退款 ha**啦 136***@163.com 退款-满天星烫钻直筒牛仔裤女冬加绒大码胖mm设计感高腰宽松显瘦阔腿裤 等多件 不计收支 86.9 花呗 退款成功 2026012922001164411415537657_3214344830698661070_advance T200P3214344830695661070
50 2026/2/1 13:26 退款 ha**啦 136***@163.com 退款-满天星烫钻直筒牛仔裤女冬加绒大码胖mm设计感高腰宽松显瘦阔腿裤 等多件 不计收支 76.3 花呗 退款成功 2026012922001164411415537657_3214344830699661070_advance T200P3214344830695661070
51 2026/2/1 13:25 退款 ha**啦 136***@163.com 退款-满天星烫钻直筒牛仔裤女冬加绒大码胖mm设计感高腰宽松显瘦阔腿裤 等多件 不计收支 86.9 花呗 退款成功 2026012922001164411415537657_3214344830696661070_advance T200P3214344830695661070
52 2026/2/1 13:23 退款 ha**啦 136***@163.com 退款-满天星烫钻直筒牛仔裤女冬加绒大码胖mm设计感高腰宽松显瘦阔腿裤 等多件 不计收支 79 花呗 退款成功 2026012922001164411415537657_3214344830697661070_advance T200P3214344830695661070
53 2026/2/1 11:21 医疗健康 安庆市立医院 aqs***@163.com 移动支付 支出 23 花呗 交易成功 2026020123001464411425944663 2026020186680027_112114_26
54 2026/2/1 11:12 医疗健康 安庆市立医院 / 医保支付(不含自费) 支出 0 支付成功 20260201644151635228 34082026020166650594
55 2026/2/1 11:00 医疗健康 安庆市立医院 aqs***@163.com 挂号_2024002279支付宝xzz210 支出 19 花呗 交易成功 2026020123001464411425754311 20260201xzz2100047
56 2026/1/31 21:00 餐饮美食 小兰文具店 136******37 经营码交易 支出 6 花呗 交易成功 2026013122001464411427792285 17698644278602126064414
57 2026/1/31 20:11 服饰装扮 三福时尚 / 安庆市迎江区姚霞百货店 支出 685.84 江苏银行信用购 交易成功 2026013123001464411425954589 75126600004802000020260131201116407768239994
58 2026/1/31 19:36 服饰装扮 优衣库安庆吾悦广场 frc***@uniqlo.com.cn 优衣库(安庆吾悦广场店) 支出 199 花呗 交易成功 2026013123001464411425707951 1309226307010520260131193626
59 2026/1/31 12:20 医疗健康 安庆市立医院 aqs***@163.com 缴费_2024002279支付宝xzz210 支出 80.4 花呗 交易成功 2026013122001464411420993771 20260131xzz2100078
60 2026/1/31 11:52 医疗健康 安庆市立医院 aqs***@163.com 挂号_2024002279支付宝xzz210 支出 19 花呗 交易成功 2026013123001464411422138148 20260131xzz2100070
61 2026/1/29 16:17 生活服务 杭州菜鸟供应链管理有限公司 gg4***@cainiao.com 菜鸟裹裹-寄件费_702667010_LP00794110713167 支出 16.72 余额宝 交易成功 2026012922001464411415914490 CN_V1_602448792073020023
62 2026/1/29 12:17 服饰装扮 ha**啦 136***@163.com 满天星烫钻直筒牛仔裤女冬加绒大码胖mm设计感高腰宽松显瘦阔腿裤 等多件 支出 329.1 花呗 交易关闭 2026012922001164411415537657 T200P3214344830695661070
63 2026/1/28 21:30 服饰装扮 糖豆**1 186******54 复古毛呢格纹波浪发夹碎发刘海夹高端百搭侧边夹2026新款秋冬发饰 支出 0.01 花呗 交易成功 2026012822001164411411553092 T200P3213956676086661070
64 2026/1/28 19:37 医疗健康 淘宝闪购 ele***@service.aliyun.com 老百姓大药房(祥和路七街一店) 支出 14.77 花呗 交易成功 2026012822001164411411873420 13190600726012896929460849114
65 2026/1/27 11:09 数码电器 gr**店 gre***@cn.gree.com [多地次日达]格力踢脚线取暖器家用地暖器折叠智能遥控速热电暖气 不计收支 483.62 他人代付账户 交易成功 2026012722001164411408257736 T200P3210133623792661070
66 2026/1/26 22:10 家居家装 yz**5 342***@qq.com 胡桃木纹加强旋钮挂钩强力承重粘胶挂钩卫生间厨房免打孔置物挂钩 支出 0.01 花呗 交易成功 2026012622001164411404188791 T200P3209907217857661070
67 2026/1/25 20:13 退款 mx**娅 137******58 退款-2025冬季新款塔茨勒厚底雪地靴女款皮毛一体东北加厚女鞋河南桑坡 不计收支 137.04 花呗 退款成功 2026012522001164411459763445_3207655705548661070 T200P3207655705548661070
68 2026/1/25 20:13 数码电器 益度**店 yid***@163.com 【优惠价】益度暖风机家用无光速热节能暧风扇冷暖空调扇轻音办公小型取暖器 支出 43.61 花呗 交易成功 2026012522001164411458262009 T200P3207655705549661070
69 2026/1/25 20:13 服饰装扮 mx**娅 137******58 2025冬季新款塔茨勒厚底雪地靴女款皮毛一体东北加厚女鞋河南桑坡 支出 137.04 花呗 交易关闭 2026012522001164411459763445 T200P3207655705548661070
70 2026/1/25 20:07 餐饮美食 洽洽**店 wei***@163.com 毛嗑瓜子500g*3袋山核桃味焦糖味五香味原瓜子洽洽葵花籽炒货 支出 22.02 花呗 交易成功 2026012522001164411458449088 T200P3207644581349661070
71 2026/1/25 10:40 餐饮美食 今喜烘焙 / 今喜烘焙蛋糕店 支出 10 花呗 交易成功 2026012522001464411457484561 8012660000489000008000033779826025
72 2026/1/25 10:38 餐饮美食 新一家生鲜超市 / 安庆卓利贸易有限公司-20260125103759682948 支出 37.59 花呗&红包 交易成功 2026012522001464411400073002 73126600004836000083620260125937249860
73 2026/1/25 09:34 爱车养车 中国石油中兴大道加油站 zha***@petrochina.com.cn 中国石油-条码支付 支出 239.86 花呗&红包 交易成功 2026012522001464411457496838 17693048574103492990
74 2026/1/23 09:29 餐饮美食 洽洽**店 wei***@163.com 毛嗑瓜子500g*3袋山核桃味焦糖味五香味原瓜子洽洽葵花籽炒货 支出 22.9 花呗 交易成功 2026012322001164411452695417 T200P3201603566169661070
75 2026/1/21 12:29 餐饮美食 小杨餐馆 138******62 收钱码收款 支出 639.99 工商银行储蓄卡(3456)&红包 交易成功 2026012122001464411445428589 17689697613602126064414
76 2026/1/20 10:08 保险 国泰财产保险有限责任公司 / 2026.1月保费缴清-全网运费险-*芳 支出 9.9 花呗 交易成功 20260120289608474105 202601201100300707310111425495
77 2026/1/19 09:00 家居家装 yz**5 342***@qq.com 胡桃木纹加强旋钮挂钩强力承重粘胶挂钩卫生间厨房免打孔置物挂钩 支出 0.01 花呗 交易成功 2026011922001164411433652385 T200P3193458566093661070
78 2026/1/18 23:43 家居家装 yz**5 342***@qq.com 胡桃木纹加强旋钮挂钩强力承重粘胶挂钩卫生间厨房免打孔置物挂钩 支出 0.01 花呗 交易成功 2026011822001164411433345226 T200P3193558861066661070
79 2026/1/17 20:27 餐饮美食 安庆市大观区文城龙虾店 / 文城龙虾店 支出 989.99 花呗&红包 交易成功 2026011722001464411427144827 732017052207307325100202601172027476390001
80 2026/1/17 17:43 日用百货 旺鲜生超市 / 安庆市大观区旺鲜生超市 支出 141.39 花呗&红包 交易成功 2026011723001464411426612178 252017092208872157130904990231000032601170083194
81 2026/1/17 12:58 信用借还 花呗|信用购 / 主动还款-花呗|信用购2026年01月账单 不计收支 1127.87 工商银行储蓄卡(3456) 还款成功 2026011729020999410178826601
82 2026/1/16 21:02 医疗健康 淘宝闪购 ele***@service.aliyun.com 国胜大药房(安庆迎宾西路店) 支出 16.78 花呗 交易成功 2026011622001164411425381130 13210600726011682167473849114
83 2026/1/14 15:21 退款 天** tmc***@service.aliyun.com 退款-【优惠价】【全新升级】Colorkey珂拉琪水雾唇露唇釉女唇彩低饱和口红女唇膏 等多件 不计收支 35.65 花呗 退款成功 2026011422001164411412119892_3183559825030661070 T200P3183559825029661070
84 2026/1/14 11:29 退款 we**9 150******25 退款-EIGHTHMONTH 黑色气质裙裤女夏季新款2025夏季新款宽松百搭裤子 不计收支 91.41 花呗 退款成功 2026011422001164411414198207_3183559825033661070 T200P3183559825033661070
85 2026/1/14 11:29 美容美发 天** tmc***@service.aliyun.com 【优惠价】【全新升级】Colorkey珂拉琪水雾唇露唇釉女唇彩低饱和口红女唇膏 等多件 支出 35.65 花呗 交易关闭 2026011422001164411412119892 T200P3183559825029661070
86 2026/1/14 11:29 服饰装扮 we**9 150******25 EIGHTHMONTH 黑色气质裙裤女夏季新款2025夏季新款宽松百搭裤子 支出 91.41 花呗 交易关闭 2026011422001164411414198207 T200P3183559825033661070
87 2026/1/14 11:29 日用百货 九阳**店 jyg***@joyoung.com 九阳保温杯316L不锈钢高颜值男女学生儿童便携泡茶水杯新款正品餐 支出 54.39 花呗 交易成功 2026011422001164411414776467 T200P3183559825028661070
88 2026/1/13 19:22 退款 希乐**店 am8***@163.com 退款-【优惠价】希乐保温杯女316不锈钢大容量杯子男儿童吸管杯学生上学专用水杯 不计收支 32.82 花呗 退款成功 2026011322001164411414696995_3182501964734661070 T200P3182501964734661070
89 2026/1/13 19:20 退款 3c**店 3ce***@loreal.com 退款-【优惠价】【新年礼物】3CE九宫格眼影 哑光亮片大地色日常彩妆女闺蜜送礼 等多件 不计收支 69.67 花呗 退款成功 2026011322001164411412359257_3182501964737661070 T200P3182501964736661070
90 2026/1/13 19:19 退款 3c**店 3ce***@loreal.com 退款-【优惠价】【新年礼物】3CE九宫格眼影 哑光亮片大地色日常彩妆女闺蜜送礼 等多件 不计收支 78.48 花呗 退款成功 2026011322001164411412359257_3182501964738661070 T200P3182501964736661070
91 2026/1/13 19:19 退款 sc**店 kcz***@163.com 退款-【优惠价】科巢婴儿棉签宝宝专用婴幼儿童新生掏耳鼻屎小棉棒挖耳勺超细双头 不计收支 3.65 花呗 退款成功 2026011322001164411411267351_3182501964735661070 T200P3182501964735661070
92 2026/1/13 19:19 母婴亲子 sc**店 kcz***@163.com 【优惠价】科巢婴儿棉签宝宝专用婴幼儿童新生掏耳鼻屎小棉棒挖耳勺超细双头 支出 3.65 花呗 交易关闭 2026011322001164411411267351 T200P3182501964735661070
93 2026/1/13 19:19 美容美发 3c**店 3ce***@loreal.com 【优惠价】【新年礼物】3CE九宫格眼影 哑光亮片大地色日常彩妆女闺蜜送礼 等多件 支出 148.15 花呗 交易关闭 2026011322001164411412359257 T200P3182501964736661070
94 2026/1/13 19:19 日用百货 希乐**店 am8***@163.com 【优惠价】希乐保温杯女316不锈钢大容量杯子男儿童吸管杯学生上学专用水杯 支出 32.82 花呗 交易关闭 2026011322001164411414696995 T200P3182501964734661070
95 2026/1/9 11:03 家居家装 yz**5 342***@qq.com 胡桃木纹加强旋钮挂钩强力承重粘胶挂钩卫生间厨房免打孔置物挂钩 支出 0.01 花呗 交易成功 2026010922001164411451594182 T200P3172747621630661070
96 2026/1/8 17:26 餐饮美食 莹莹果铺 / 莹莹果铺-莹莹果铺 支出 2.99 花呗&红包&碰一下立减 交易成功 2026010823001464411447704840 32126600004836000083620260108377536186
97 2026/1/8 17:22 餐饮美食 莹莹果铺 / 莹莹果铺-莹莹果铺 支出 44.89 花呗&红包 交易成功 2026010822001464411447442374 60126600004836000083620260108767900674
98 2026/1/8 10:39 退款 义乌**厂 c2m***@service.aliyun.com 退款-画画收纳册4k美术作品收集册8k画夹画册素描纸画纸a2画稿a3绘画奖状透明儿童大容量作品集收纳袋画作手提A4纸 不计收支 4.05 花呗 退款成功 2025122922001164411457682310_3151049235917661070 T200P3151049235917661070
99 2026/1/5 21:55 其他 润本**店 200***@qq.com 【会员优先购】润本婴儿润唇膏(葡萄柚)4g 支出 7.61 余额宝 交易成功 2026010522001164411435147066 T200P3166530204032661070
100 2026/1/5 20:34 退款 上海泓弈信息科技有限公司 e54***@service.aliyun.com 退款-帮买帮送-配送费 不计收支 7 花呗 退款成功 2026010522001464411436905985_26010530627789868311 26010530627780207611
101 2026/1/5 16:54 生活服务 上海泓弈信息科技有限公司 e54***@service.aliyun.com 帮买帮送-配送费 支出 7 花呗 交易关闭 2026010522001464411436905985 26010530627780207611
102 2026/1/3 23:01 服饰装扮 平** fux***@163.com 高弹简约森系网纱大肠发圈发绳高级感扎头绳皮筋优雅百搭发绳发饰 支出 0.07 花呗 交易成功 2026010322001164411425808083 T200P3162338150141661070
103 2026/1/2 10:25 日用百货 安庆发润家供应链有限公司 / 二维码支付 支出 193.51 花呗&红包 交易成功 2026010222001464411420442118 21P2088721085226061W03_M2503040000404062601020092310
104 2026/1/1 17:04 餐饮美食 莹莹果铺 / 莹莹果铺-莹莹果铺 支出 87.87 花呗&红包&现金抵价券 交易成功 2026010122001464411415740178 53126600004836000083620260101766139970
105 2026/1/1 16:59 日用百货 安庆发润家供应链有限公司 / 二维码支付 支出 18.08 花呗&红包 交易成功 2026010122001464411417667709 10P2088721085226061W03_M2503040000404062601010303100
+3
View File
@@ -0,0 +1,3 @@
[
"e48ace9814f0-im-bot"
]
@@ -0,0 +1 @@
{"o9cq80w6ZnnPGItW-GGACkwd69bA@im.wechat":"AARzJWAFAAABAAAAAAAYm4Qoror18kSCZVJWaiAAAAB+9905Q6UiugPBawU3n3cyzQX+LkN8ofRzsCZYN0mt7qJZVqRz/AiX/G5khUmJnRs/tZh4gb85vUgIMhrlaP4B5cdv2b95"}
@@ -0,0 +1,6 @@
{
"token": "e48ace9814f0@im.bot:060000d4ff07895f641e2fc6b34e333dd20281",
"savedAt": "2026-07-14T12:42:57.530Z",
"baseUrl": "https://ilinkai.weixin.qq.com",
"userId": "o9cq80w6ZnnPGItW-GGACkwd69bA@im.wechat"
}
@@ -0,0 +1 @@
{"get_updates_buf":"ChAIDhCnvceJ9jMYmp6chfYzEjplNDhhY2U5ODE0ZjBAaW0uYm90OjA2MDAwMGQ0ZmYwNzg5NWY2NDFlMmZjNmIzNGUzMzNkZDIwMjgx"}
+132 -133
View File
@@ -1,45 +1,30 @@
{
"meta": {
"lastTouchedVersion": "2026.7.1-2",
"lastTouchedAt": "2026-08-03T06:44:10.135Z"
"lastTouchedVersion": "2026.7.1",
"lastTouchedAt": "2026-07-14T15:09:38.855Z"
},
"wizard": {
"lastRunAt": "2026-08-03T06:44:10.084Z",
"lastRunVersion": "2026.7.1-2",
"lastRunAt": "2026-07-14T15:09:38.730Z",
"lastRunVersion": "2026.7.1",
"lastRunCommand": "doctor",
"lastRunMode": "local"
},
"auth": {
"profiles": {}
"profiles": {
"ollama:default": {
"provider": "ollama",
"mode": "api_key"
}
}
},
"models": {
"mode": "merge",
"providers": {
"new-api": {
"baseUrl": "http://192.168.2.74:3000/v1",
"apiKey": "${NEW_API_KEY}",
"deepseek": {
"baseUrl": "https://api.deepseek.com/v1",
"apiKey": "sk-893b90b270ad4697a0b0b24969964d79",
"api": "openai-completions",
"request": {
"allowPrivateNetwork": true
},
"models": [
{
"id": "qwen3.7-max",
"name": "Qwen 3.7 Max",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "deepseek-v4-pro",
"name": "DeepSeek V4 Pro",
@@ -48,13 +33,13 @@
"text"
],
"cost": {
"input": 0,
"output": 0,
"input": 1,
"output": 2,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
"contextWindow": 1000000,
"maxTokens": 384000
},
{
"id": "deepseek-v4-flash",
@@ -64,63 +49,13 @@
"text"
],
"cost": {
"input": 0,
"output": 0,
"input": 1,
"output": 2,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 8192
},
{
"id": "glm-5.1",
"name": "GLM 5.1",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "kim-k2.6",
"name": "Kimi K2.6",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
},
{
"id": "qwen3.5-plus",
"name": "Qwen 3.5 Plus",
"reasoning": false,
"input": [
"text",
"image"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 131072,
"maxTokens": 32768
"contextWindow": 1000000,
"maxTokens": 384000
}
]
}
@@ -129,9 +64,25 @@
"agents": {
"defaults": {
"model": {
"primary": "new-api/qwen3.5-plus"
"primary": "deepseek/deepseek-v4-flash"
},
"memorySearch": {
"provider": "openai",
"model": "text-embedding-v4"
},
"models": {
"ollama/huihui_ai/glm-4.7-flash-abliterated:latest": {
"alias": "GLM 4.7 Flash(本地)"
},
"ollama/deepseek-v4-flash:cloud": {
"alias": "DeepSeek V4 Flash(云端)"
},
"deepseek/deepseek-v4-pro": {
"alias": "DeepSeek V4 Pro"
},
"deepseek/deepseek-v4-flash": {
"alias": "DeepSeek V4 Flash"
},
"new-api/deepseek-v4-flash": {
"alias": "New Api V4 Flash"
},
@@ -145,7 +96,7 @@
"alias": "New Api GLM 5.1"
}
},
"workspace": "/root/.openclaw/workspace",
"workspace": "/home/yangxuan/.openclaw/workspace",
"compaction": {
"mode": "safeguard"
},
@@ -154,64 +105,58 @@
"subagents": {
"maxConcurrent": 4,
"allowAgents": [
"backend",
"frontend",
"planner"
"*"
]
},
"sandbox": {
"mode": "off"
},
"memorySearch": {
"enabled": true,
"provider": "openai-compatible",
"model": "BAAI/bge-m3",
"remote": {
"baseUrl": "https://api.siliconflow.cn/v1",
"apiKey": "$SILICONFLOW_API_KEY"
}
}
},
"list": [
{
"id": "backend",
"name": "后端",
"workspace": "/root/.openclaw/workspace-backend",
"agentDir": "/root/.openclaw/agents/backend/agent",
"id": "main",
"name": "助手",
"workspace": "/home/yangxuan/.openclaw/workspace",
"agentDir": "/home/yangxuan/.openclaw/agents/main/agent",
"model": {
"primary": "new-api/qwen3.5-plus"
},
"tools": {
"alsoAllow": [
"opencode__*"
]
"primary": "deepseek/deepseek-v4-flash"
}
},
{
"id": "frontend",
"name": "前端",
"workspace": "/root/.openclaw/workspace-frontend",
"agentDir": "/root/.openclaw/agents/frontend/agent",
"id": "resume",
"name": "简历",
"workspace": "/home/yangxuan/.openclaw/workspace-resume",
"agentDir": "/home/yangxuan/.openclaw/agents/resume/agent",
"model": {
"primary": "new-api/qwen3.5-plus"
},
"tools": {
"alsoAllow": [
"opencode__*"
]
"primary": "deepseek/deepseek-v4-flash"
}
},
{
"id": "planner",
"name": "方案",
"workspace": "/root/.openclaw/workspace-planner",
"agentDir": "/root/.openclaw/agents/planner/agent",
"id": "travel",
"name": "旅行",
"workspace": "/home/yangxuan/.openclaw/workspace-travel",
"agentDir": "/home/yangxuan/.openclaw/agents/travel/agent",
"model": {
"primary": "new-api/qwen3.5-plus"
"primary": "deepseek/deepseek-v4-flash"
}
},
"skills": [
"using-superpowers"
]
{
"id": "fitness",
"name": "健康",
"workspace": "/home/yangxuan/.openclaw/workspace-fitness",
"agentDir": "/home/yangxuan/.openclaw/agents/fitness/agent",
"model": {
"primary": "deepseek/deepseek-v4-flash"
}
},
{
"id": "finances",
"name": "理财",
"workspace": "/home/yangxuan/.openclaw/workspace-finances",
"agentDir": "/home/yangxuan/.openclaw/agents/finances/agent",
"model": {
"primary": "deepseek/deepseek-v4-flash"
}
}
]
},
@@ -221,8 +166,7 @@
"visibility": "all"
},
"agentToAgent": {
"enabled": true,
"allow": ["planner", "backend", "frontend"]
"enabled": true
},
"deny": [
"group:web",
@@ -238,7 +182,11 @@
"enabled": true
}
},
"alsoAllow": []
"alsoAllow": [
"ezviz_device",
"ezviz_capture",
"ezviz_message"
]
},
"messages": {
"ackReactionScope": "group-mentions",
@@ -262,7 +210,8 @@
"controlUi": {
"allowedOrigins": [
"http://localhost:18789",
"http://127.0.0.1:18789"
"http://127.0.0.1:18789",
"https://xuan-pc-nj-wsl.baiji-algieba.ts.net"
],
"allowInsecureAuth": true
},
@@ -437,6 +386,15 @@
"github": {
"enabled": false
},
"MySQL": {
"enabled": false
},
"sql-toolkit": {
"enabled": false
},
"tmux": {
"enabled": false
},
"video-frames": {
"enabled": false
}
@@ -444,10 +402,22 @@
},
"plugins": {
"allow": [
"deepseek",
"ezviz",
"memory-core",
"searxng"
"ollama",
"searxng",
"openclaw-weixin",
"dingtalk-connector"
],
"entries": {
"ollama": {
"enabled": true,
"config": {}
},
"deepseek": {
"enabled": true
},
"searxng": {
"enabled": true,
"config": {
@@ -458,12 +428,41 @@
},
"browser": {
"enabled": false
},
"ezviz": {
"enabled": false
},
"openclaw-weixin": {
"enabled": true
},
"dingtalk-connector": {
"enabled": true
}
},
"bundledDiscovery": "compat"
},
"channels": {
"ezviz": {
"enabled": true,
"appId": "92aa2d25a04247afacb76b1f75f9cf80",
"appSecret": "38ac0b0468b0dca991ce1c8ed888200e"
},
"openclaw-weixin": {
"channelConfigUpdatedAt": "2026-07-14T12:42:57.603Z",
"enabled": true
},
"dingtalk-connector": {
"clientId": "dingnumf057etbbowhfu",
"clientSecret": "m-g-EknD5uxH9DFnSpHPT87bLWOPrNYa-SMvT6kDOMqg_8nmPL7jiFxbdpWWqzIl"
}
},
"bindings": [
{
"agentId": "main",
"match": {
"channel": "openclaw-weixin",
"accountId": "d843ed5f6ccc-im-bot"
}
}
]
}
+1
View File
@@ -0,0 +1 @@
/home/yangxuan/.openclaw/npm/projects/dingtalk-real-ai-dingtalk-connector-aa54111b45/node_modules/@dingtalk-real-ai/dingtalk-connector/skills/dingtalk-channel-rules
+1
View File
@@ -0,0 +1 @@
/home/yangxuan/.openclaw/npm/projects/dingtalk-real-ai-dingtalk-connector-aa54111b45/node_modules/@dingtalk-real-ai/dingtalk-connector/skills/dingtalk-troubleshoot
+1
View File
@@ -0,0 +1 @@
/home/yangxuan/.openclaw/npm/projects/dingtalk-real-ai-dingtalk-connector-aa54111b45/node_modules/@dingtalk-real-ai/dingtalk-connector/skills/dws-cli
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
{"schema":"openclaw.skill-workshop.proposals-manifest.v1","updatedAt":"2026-08-04T09:12:42.079Z","proposals":[{"id":"mica-smdm-scaffold-20260804-af318dd6c2","kind":"create","status":"applied","title":"Create mica-smdm-scaffold","description":"mica 项目 SMDM 模块骨架代码生成规范(含数据字典填充)","skillName":"mica-smdm-scaffold","skillKey":"mica-smdm-scaffold","createdAt":"2026-08-04T08:59:50.395Z","updatedAt":"2026-08-04T09:12:42.043Z","scanState":"clean"},{"id":"dianping-review-20260611-d402abec10","kind":"create","status":"applied","title":"Create dianping-review","description":"通过大众点评搜索查询餐厅、老店、美食推荐和评论","skillName":"dianping-review","skillKey":"dianping-review","createdAt":"2026-06-11T23:50:15.731Z","updatedAt":"2026-07-09T09:56:20.865Z","scanState":"clean"},{"id":"calibre-cleaner-20260624-0fc374efd7","kind":"update","status":"applied","title":"Update calibre-cleaner","description":"清洗 Calibre 书库:修复损坏书名/提取作者/检测编码损坏、小文件的批量删除","skillName":"calibre-cleaner","skillKey":"calibre-cleaner","createdAt":"2026-06-24T03:23:27.062Z","updatedAt":"2026-07-09T09:56:20.404Z","scanState":"clean"},{"id":"jellyfin-nfo-builder-20260701-6434352e0d","kind":"create","status":"applied","title":"Create jellyfin-nfo-builder","description":"为剧集整理统一文件名、生成缺失的 Jellyfin .nfo 剧集元数据","skillName":"jellyfin-nfo-builder","skillKey":"jellyfin-nfo-builder","createdAt":"2026-07-01T23:52:24.406Z","updatedAt":"2026-07-09T09:56:19.928Z","scanState":"clean"},{"id":"jav-media-sorter-20260707-b1f90c8a4d","kind":"create","status":"applied","title":"Create jav-media-sorter","description":"JAV 视频整理:组装文件、按演员分组、刮削 nfo 元数据与封面图","skillName":"jav-media-sorter","skillKey":"jav-media-sorter","createdAt":"2026-07-07T12:14:43.074Z","updatedAt":"2026-07-09T09:56:18.413Z","scanState":"clean"},{"id":"f-download-sorter-20260706-902cc0d5aa","kind":"create","status":"applied","title":"Create f-download-sorter","description":"整理 /mnt/f 下下载的视频文件:扫描→清垃圾→按规则归档到7个大类目录","skillName":"f-download-sorter","skillKey":"f-download-sorter","createdAt":"2026-07-06T09:03:54.941Z","updatedAt":"2026-07-06T09:04:18.513Z","scanState":"clean"},{"id":"weekly-report-g5-20260626-7595273f1d","kind":"create","status":"applied","title":"Create weekly-report-g5","description":"维云智造G5周报生成:整理每日工作→多段邮件(纯文本+HTML含签名图)→存入钉邮草稿箱","skillName":"weekly-report-g5","skillKey":"weekly-report-g5","createdAt":"2026-06-26T00:46:22.478Z","updatedAt":"2026-06-26T00:46:35.812Z","scanState":"clean"},{"id":"calibre-cleaner-20260624-cdbeb219a3","kind":"update","status":"applied","title":"Update calibre-cleaner","description":"清洗 Calibre 书库:修复损坏书名/提取作者/检测编码损坏、小文件的批量删除","skillName":"calibre-cleaner","skillKey":"calibre-cleaner","createdAt":"2026-06-24T03:03:28.166Z","updatedAt":"2026-06-24T03:03:30.915Z","scanState":"clean"},{"id":"calibre-cleaner-20260624-a441798af9","kind":"create","status":"applied","title":"Create calibre-cleaner","description":"清洗 Calibre 书库:修复损坏书名/提取作者/检测编码损坏、小文件的批量删除","skillName":"calibre-cleaner","skillKey":"calibre-cleaner","createdAt":"2026-06-24T02:29:02.278Z","updatedAt":"2026-06-24T02:29:27.227Z","scanState":"clean"},{"id":"calibre-title-cleaner-20260624-3760b64e8b","kind":"create","status":"applied","title":"Create calibre-title-cleaner","description":"清洗 Calibre 书库中损坏的 txt 文档书名(HTML标签/长文本/乱码/路径超限修复)","skillName":"calibre-title-cleaner","skillKey":"calibre-title-cleaner","createdAt":"2026-06-24T01:10:56.296Z","updatedAt":"2026-06-24T01:13:39.670Z","scanState":"clean"}]}
{"schema":"openclaw.skill-workshop.proposals-manifest.v1","updatedAt":"2026-07-09T09:56:20.877Z","proposals":[{"id":"dianping-review-20260611-d402abec10","kind":"create","status":"applied","title":"Create dianping-review","description":"通过大众点评搜索查询餐厅、老店、美食推荐和评论","skillName":"dianping-review","skillKey":"dianping-review","createdAt":"2026-06-11T23:50:15.731Z","updatedAt":"2026-07-09T09:56:20.865Z","scanState":"clean"},{"id":"calibre-cleaner-20260624-0fc374efd7","kind":"update","status":"applied","title":"Update calibre-cleaner","description":"清洗 Calibre 书库:修复损坏书名/提取作者/检测编码损坏、小文件的批量删除","skillName":"calibre-cleaner","skillKey":"calibre-cleaner","createdAt":"2026-06-24T03:23:27.062Z","updatedAt":"2026-07-09T09:56:20.404Z","scanState":"clean"},{"id":"jellyfin-nfo-builder-20260701-6434352e0d","kind":"create","status":"applied","title":"Create jellyfin-nfo-builder","description":"为剧集整理统一文件名、生成缺失的 Jellyfin .nfo 剧集元数据","skillName":"jellyfin-nfo-builder","skillKey":"jellyfin-nfo-builder","createdAt":"2026-07-01T23:52:24.406Z","updatedAt":"2026-07-09T09:56:19.928Z","scanState":"clean"},{"id":"jav-media-sorter-20260707-b1f90c8a4d","kind":"create","status":"applied","title":"Create jav-media-sorter","description":"JAV 视频整理:组装文件、按演员分组、刮削 nfo 元数据与封面图","skillName":"jav-media-sorter","skillKey":"jav-media-sorter","createdAt":"2026-07-07T12:14:43.074Z","updatedAt":"2026-07-09T09:56:18.413Z","scanState":"clean"},{"id":"f-download-sorter-20260706-902cc0d5aa","kind":"create","status":"applied","title":"Create f-download-sorter","description":"整理 /mnt/f 下下载的视频文件:扫描→清垃圾→按规则归档到7个大类目录","skillName":"f-download-sorter","skillKey":"f-download-sorter","createdAt":"2026-07-06T09:03:54.941Z","updatedAt":"2026-07-06T09:04:18.513Z","scanState":"clean"},{"id":"weekly-report-g5-20260626-7595273f1d","kind":"create","status":"applied","title":"Create weekly-report-g5","description":"维云智造G5周报生成:整理每日工作→多段邮件(纯文本+HTML含签名图)→存入钉邮草稿箱","skillName":"weekly-report-g5","skillKey":"weekly-report-g5","createdAt":"2026-06-26T00:46:22.478Z","updatedAt":"2026-06-26T00:46:35.812Z","scanState":"clean"},{"id":"calibre-cleaner-20260624-cdbeb219a3","kind":"update","status":"applied","title":"Update calibre-cleaner","description":"清洗 Calibre 书库:修复损坏书名/提取作者/检测编码损坏、小文件的批量删除","skillName":"calibre-cleaner","skillKey":"calibre-cleaner","createdAt":"2026-06-24T03:03:28.166Z","updatedAt":"2026-06-24T03:03:30.915Z","scanState":"clean"},{"id":"calibre-cleaner-20260624-a441798af9","kind":"create","status":"applied","title":"Create calibre-cleaner","description":"清洗 Calibre 书库:修复损坏书名/提取作者/检测编码损坏、小文件的批量删除","skillName":"calibre-cleaner","skillKey":"calibre-cleaner","createdAt":"2026-06-24T02:29:02.278Z","updatedAt":"2026-06-24T02:29:27.227Z","scanState":"clean"},{"id":"calibre-title-cleaner-20260624-3760b64e8b","kind":"create","status":"applied","title":"Create calibre-title-cleaner","description":"清洗 Calibre 书库中损坏的 txt 文档书名(HTML标签/长文本/乱码/路径超限修复)","skillName":"calibre-title-cleaner","skillKey":"calibre-title-cleaner","createdAt":"2026-06-24T01:10:56.296Z","updatedAt":"2026-06-24T01:13:39.670Z","scanState":"clean"}]}
@@ -1,613 +0,0 @@
---
name: "mica-smdm-scaffold"
description: "mica 项目 SMDM 模块骨架代码生成规范(含数据字典填充)"
status: proposal
version: "v2"
date: "2026-08-04T09:09:00.667Z"
---
# mica SMDM 模块骨架代码生成技能
## 技能定位
为 mica 项目的主数据管理模块 (SMDM) 生成标准化的骨架代码,包含完整的 CRUD 功能、数据字典填充、单元测试和集成测试。
## 适用范围
- mica 项目的主数据管理模块开发
- 需要 Feign 远程调用 SMDM 服务的场景
- 需要数据字典翻译的业务模块
---
## 🔴 强制性红线
### SMDM 物料管理模块开发限制
| # | 红线 | 违规示例 | 正确做法 |
|---|------|---------|----------|
| 1 | **表前缀必须过滤** | `DmpMdItemInfo` | `ItemInfo` |
| 2 | **API 必须放在 apis.smdm 包** | `smd.api.ItemApi` | `apis.smdm.ItemApi` |
| 3 | **查询只能用 Mapper** | 使用 MyBatis-Plus | 原生 MyBatis XML |
| 4 | **改删必须 Feign 远程调用** | 本地直接 UPDATE/DELETE | 调用 SMDM 服务 API |
| 5 | **实体必须继承 BaseDomain** | 独立定义审计字段 | `extends BaseDomain` |
| 6 | **只使用指定业务字段** | 添加表中其他字段 | 仅用规范内字段 |
| 7 | **代码必须生成到 smd 目录** | `com.witsoft.mica.item.*` | `com.witsoft.mica.smd.*` |
### 数据字典模块开发限制
| # | 红线 | 正确做法 |
|---|------|---------|
| 1 | **不需要 Controller** | 纯内部工具服务 |
| 2 | **不需要 Feign API** | 不暴露外部接口 |
| 3 | **不需要缓存实现** | 后续可调用 Feign 接口缓存 |
| 4 | **不需要继承 BaseDomain** | 配置项不是业务实体 |
---
## 📋 核心规范摘要
### 包路径规范
- **本地业务**: `com.witsoft.mica.smd.*`
- **Feign 接口**: `com.witsoft.mica.apis.smdm.*`
### 表前缀过滤
- `dmp_md_` 全部过滤 (如 `dmp_md_item_info``ItemInfo`)
### 查询方式
- **分页查询**: 原生 MyBatis XML
- **详情查询**: MyBatis-Plus `selectById()`
### 改删操作
- Feign 远程调用 SMDM 服务
### 注释规范
- `@Author: yangxuan`
- `@Date: 精确到日`
### 日志规范
- SLF4J + Lombok `@Slf4j`
- Feign 调用添加 debug 日志(记录入参和耗时,**禁止记录返回值**)
### ecid 处理
- Controller 层调用 `GlobalUtils.getEcid()` 并传递给 Service
### 分页方式
- 使用项目 `PageDomain<T>`
- **不使用** `com.github.pagehelper`
### XML 规范
- 使用 `<sql>` + `<include>` 片段复用方式
---
## 📁 标准文件清单
### 第 1 部分:数据字典模块 (基础设施)
| 文件 | 说明 | 路径 |
|------|------|------|
| `DictionaryMapper.java` | 字典查询 Mapper 接口 | `smd/mapper/` |
| `DictionaryMapper.xml` | 原生 SQL 查询 | `resources/mapper/smd/` |
| `DictionaryItem.java` | 字典数据项 DTO | `smd/dto/` |
| `DictionaryService.java` | 字典服务接口 | `smd/service/` |
| `DictionaryServiceImpl.java` | 字典服务实现 | `smd/service/impl/` |
### 第 2 部分:枚举类 (按需)
| 文件 | 说明 |
|------|------|
| `StatusEnum.java` | 状态枚举 (Y=启用,N=禁用) |
| `YesNoEnum.java` | 是否枚举 (Y=是,N=否) |
### 第 3 部分:业务模块 (10 个文件)
| 文件 | 说明 | 路径 |
|------|------|------|
| `XxxApi.java` | Feign 远程调用接口 | `apis/smdm/` |
| `XxxInfo.java` | 实体类 | `smd/entity/` |
| `XxxMapper.java` | Mapper 接口 | `smd/mapper/` |
| `XxxMapper.xml` | MyBatis XML 映射 | `resources/mapper/smd/` |
| `XxxService.java` | 服务接口 | `smd/service/` |
| `XxxServiceImpl.java` | 服务实现 | `smd/service/impl/` |
| `XxxController.java` | 控制器 | `smd/controller/` |
| `XxxQueryDTO.java` | 查询 DTO | `smd/dto/` |
| `XxxFormDTO.java` | 表单 DTO | `smd/dto/` |
| `XxxVO.java` | 视图对象 | `smd/vo/` |
### 第 4 部分:测试文件 (扩展模块)
| 文件 | 说明 | 路径 |
|------|------|------|
| `XxxServiceTest.java` | Service 层单元测试 | `src/test/java/com/witsoft/mica/smd/service/` |
| `XxxControllerIntegrationTest.java` | Controller 集成测试 | `src/test/java/com/witsoft/mica/smd/controller/` |
---
## 🔧 数据字典填充规范
### VO 设计
- 添加 `xxxName` 字段存储字典翻译后的中文名称
- 示例:`itemType` (en_code) + `itemTypeName` (中文名称)
### Service 层填充
- **批量查询字典**: 一次查询多个字典类型,避免 N+1 问题
- **通用填充方法**: `fillDictionaryData(ItemVO itemVO, Map<String, Map<String, String>> dictMaps)`
- **性能要求**: 列表查询只查 1 次字典,批量填充
### 填充示例代码
```java
@Override
public PageDomain<ItemVO> queryPageList(ItemQueryDTO dto) {
// 查询分页数据
PageDomain<ItemVO> page = itemMapper.queryPageList(dto);
// 只查 1 次字典(批量查询)
Map<String, Map<String, String>> dictMaps = dictionaryService.getDictionaryMaps(
Arrays.asList("materialsType", "itemProperties", "pickingProperty")
);
// 遍历列表填充
page.getList().forEach(item -> fillDictionaryData(item, dictMaps));
return page;
}
@Override
public ItemVO queryById(String id) {
ItemVO itemVO = itemMapper.selectById(id);
// 查 1 次字典
Map<String, Map<String, String>> dictMaps = dictionaryService.getDictionaryMaps(
Arrays.asList("materialsType", "itemProperties", "pickingProperty")
);
fillDictionaryData(itemVO, dictMaps);
return itemVO;
}
/**
* 填充物料字典数据
* @param itemVO 物料 VO 对象
* @param dictMaps 已查询的字典 Map(外部传入,避免重复查询)
*/
private void fillDictionaryData(ItemVO itemVO, Map<String, Map<String, String>> dictMaps) {
if (itemVO == null || dictMaps == null) return;
// 物料类型
Map<String, String> materialsMap = dictMaps.get("materialsType");
if (materialsMap != null) {
itemVO.setItemTypeName(materialsMap.getOrDefault(itemVO.getItemType(), itemVO.getItemType()));
}
// 物料属性
Map<String, String> propertiesMap = dictMaps.get("itemProperties");
if (propertiesMap != null) {
itemVO.setPropertiesName(propertiesMap.getOrDefault(itemVO.getProperties(), itemVO.getProperties()));
}
// 领料属性
Map<String, String> pickingMap = dictMaps.get("pickingProperty");
if (pickingMap != null) {
itemVO.setPickingPropertyName(pickingMap.getOrDefault(itemVO.getPickingProperty(), itemVO.getPickingProperty()));
}
// 状态(枚举)
itemVO.setStatusName(StatusEnum.getNameByCode(itemVO.getStatus()));
}
```
---
## 🧪 测试生成规范
### 单元测试 (Service 层)
#### 文件位置
- `src/test/java/com/witsoft/mica/smd/service/*ServiceTest.java`
#### 测试类结构模板
```java
package com.witsoft.mica.smd.service;
import com.witsoft.gen.base.common.ResponseModel;
import com.witsoft.gen.base.page.PageDomain;
import com.witsoft.mica.smd.dto.ItemQueryDTO;
import com.witsoft.mica.smd.entity.ItemInfo;
import com.witsoft.mica.smd.mapper.ItemMapper;
import com.witsoft.mica.smd.service.impl.ItemServiceImpl;
import com.witsoft.mica.apis.smdm.ItemApi;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.junit.jupiter.MockitoExtension;
import java.util.ArrayList;
import java.util.List;
import static org.junit.jupiter.api.Assertions.*;
import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
@ExtendWith(MockitoExtension.class)
class ItemServiceTest {
@Mock
private ItemMapper itemMapper;
@Mock
private ItemApi itemApi;
@InjectMocks
private ItemServiceImpl itemService;
@Test
void testQueryPageList_normalQuery() {
// 准备测试数据
ItemQueryDTO dto = new ItemQueryDTO();
dto.setEcid("test-ecid");
dto.setPageNo(1);
dto.setPageSize(10);
List<ItemInfo> mockList = new ArrayList<>();
ItemInfo item = new ItemInfo();
item.setId("test-id");
item.setItemCode("TEST001");
mockList.add(item);
when(itemMapper.queryPageCount(any())).thenReturn(1L);
when(itemMapper.queryPageList(any())).thenReturn(mockList);
// 执行测试
PageDomain<ItemVO> result = itemService.queryPageList(dto);
// 验证结果
assertNotNull(result);
assertEquals(1, result.getList().size());
assertEquals(1L, result.getTotal());
}
@Test
void testQueryById_notFound() {
when(itemMapper.selectById("not-exist")).thenReturn(null);
ItemVO result = itemService.queryById("not-exist");
assertNull(result);
}
@Test
void testCreateItem_success() {
ItemFormDTO dto = new ItemFormDTO();
dto.setItemCode("TEST001");
dto.setItemName("测试物料");
when(itemApi.createItem(any())).thenReturn(ResponseModel.succeed(null));
ResponseModel result = itemService.insertItem(dto);
assertNotNull(result);
assertEquals(200, result.getCode());
}
@Test
void testCreateItem_nullParam() {
ResponseModel result = itemService.insertItem(null);
assertNotNull(result);
assertEquals(500, result.getCode());
assertTrue(result.getMsg().contains("参数不能为空"));
}
@Test
void testUpdateItem_success() {
ItemFormDTO dto = new ItemFormDTO();
dto.setId("test-id");
dto.setItemCode("TEST001");
when(itemApi.updateItem(any())).thenReturn(ResponseModel.succeed(null));
ResponseModel result = itemService.updateItem(dto);
assertNotNull(result);
assertEquals(200, result.getCode());
}
@Test
void testDeleteItem_success() {
when(itemApi.deleteItem(any())).thenReturn(ResponseModel.succeed(null));
ResponseModel result = itemService.deleteItem("test-id");
assertNotNull(result);
assertEquals(200, result.getCode());
}
}
```
#### 测试方法清单
| 方法 | 测试场景 | 断言 |
|------|---------|------|
| `testQueryPageList_normalQuery` | 正常分页查询 | 返回非空,size>0 |
| `testQueryPageList_emptyResult` | 无数据 | 返回空列表 |
| `testQueryById_notFound` | ID 不存在 | 返回 null |
| `testQueryById_found` | ID 存在 | 返回非空 VO |
| `testCreateItem_success` | 创建成功 | 返回 succeed |
| `testCreateItem_nullParam` | 空参数 | 返回 failed |
| `testUpdateItem_success` | 更新成功 | 返回 succeed |
| `testUpdateItem_nullId` | 空 ID | 返回 failed |
| `testDeleteItem_success` | 删除成功 | 返回 succeed |
| `testDeleteItem_nullId` | 空 ID | 返回 failed |
#### Mock 处理规范
- `GlobalUtils.getEcid()` → 改为实例方法或传入参数
- Feign API → `@Mock` + `when().thenReturn()`
- Mapper → `@Mock` + 返回测试数据
- 使用 `ArgumentMatchers.any()` 匹配任意参数
---
### 集成测试 (Controller 层)
#### 文件位置
- `src/test/java/com/witsoft/mica/smd/controller/*ControllerIntegrationTest.java`
#### 测试类结构模板
```java
package com.witsoft.mica.smd.controller;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.witsoft.mica.smd.dto.ItemFormDTO;
import com.witsoft.mica.smd.dto.ItemQueryDTO;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.http.MediaType;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.MvcResult;
import org.springframework.transaction.annotation.Transactional;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*;
@SpringBootTest
@AutoConfigureMockMvc
@Transactional
class ItemControllerIntegrationTest {
@Autowired
private MockMvc mockMvc;
@Autowired
private ObjectMapper objectMapper;
@BeforeEach
void setUp() {
// 准备测试数据(可选)
}
@Test
void testQueryPageList_integration() throws Exception {
ItemQueryDTO dto = new ItemQueryDTO();
dto.setPageNo(1);
dto.setPageSize(10);
mockMvc.perform(post("/web/itemInfo/getPageList")
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(dto)))
.andExpect(status().isOk())
.andExpect(jsonPath("$.code").value(200))
.andExpect(jsonPath("$.data").exists())
.andExpect(jsonPath("$.data.list").isArray());
}
@Test
void testQueryById_integration() throws Exception {
mockMvc.perform(get("/web/itemInfo/getById")
.param("id", "test-id"))
.andExpect(status().isOk())
.andExpect(jsonPath("$.code").value(200));
}
@Test
void testCreateItem_integration() throws Exception {
ItemFormDTO dto = new ItemFormDTO();
dto.setItemCode("TEST001");
dto.setItemName("测试物料");
dto.setStatus("Y");
mockMvc.perform(post("/web/itemInfo/create")
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(dto)))
.andExpect(status().isOk())
.andExpect(jsonPath("$.code").value(200));
}
@Test
void testUpdateItem_integration() throws Exception {
ItemFormDTO dto = new ItemFormDTO();
dto.setId("test-id");
dto.setItemCode("TEST001");
dto.setItemName("测试物料更新");
mockMvc.perform(post("/web/itemInfo/update")
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(dto)))
.andExpect(status().isOk())
.andExpect(jsonPath("$.code").value(200));
}
@Test
void testDeleteItem_integration() throws Exception {
mockMvc.perform(post("/web/itemInfo/delete")
.param("id", "test-id"))
.andExpect(status().isOk())
.andExpect(jsonPath("$.code").value(200));
}
@Test
void testAuth_ecidRequired() throws Exception {
// 测试没有 ecid 时的权限验证(如果配置了拦截器)
ItemQueryDTO dto = new ItemQueryDTO();
mockMvc.perform(post("/web/itemInfo/getPageList")
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(dto)))
.andExpect(status().isOk());
// 根据实际权限配置调整断言
}
}
```
#### 测试场景清单
| 方法 | 测试场景 | 验证点 |
|------|---------|--------|
| `testQueryPageList_integration` | 完整查询流程 | HTTP 200 + 返回结构 |
| `testQueryById_integration` | 详情查询 | HTTP 200 + 数据存在 |
| `testCreateItem_integration` | 创建流程 | HTTP 200 + 数据入库 |
| `testUpdateItem_integration` | 更新流程 | HTTP 200 + 数据更新 |
| `testDeleteItem_integration` | 删除流程 | HTTP 200 + 数据删除 |
| `testAuth_ecidRequired` | 权限验证 | 无 ecid 时拒绝 |
#### 测试数据准备
- `@BeforeEach` 插入测试数据(可选)
- `@AfterEach` 清理测试数据(可选)
- 使用 `@Transactional` 自动回滚(推荐)
---
### 测试生成触发条件
| 场景 | 单元测试 | 集成测试 |
|------|---------|---------|
| 新增业务模块 | ✅ 必选 | ✅ 推荐 |
| 新增字典模块 | ✅ 必选 | ⏸️ 可选 |
| 修改核心逻辑 | ✅ 必选 | ⏸️ 可选 |
| 修复 Bug | ✅ 添加回归测试 | ⏸️ 可选 |
| 性能优化 | ⏸️ 可选 | ✅ 必选 |
---
## 🐛 常见问题修正清单
| # | 问题 | 修正方案 |
|---|------|----------|
| 1 | ResponseModel 静态引用 | `ResponseModel.succeed(data)` |
| 2 | 分页 XML / 详情 MP 混合使用 | 分页用 XML,详情用 MP |
| 3 | 编码查询不需要 | 移除编码查询条件 |
| 4 | Feign 调用缺少日志 | 添加入参和耗时日志(debug 级别) |
| 5 | Controller 层 ecid 处理 | Controller 层获取并传递 |
| 6 | 分页 XML 查询被删除 | 恢复分页 XML 查询 |
| 7 | 使用 PageHelper | 改用 PageDomain |
| 8 | queryByCode 方法不需要 | 删除 |
| 9 | ResponseModel 泛型参数化 | `ResponseModel<T>` |
| 10 | Map 类型转换警告 | 添加 `@SuppressWarnings("unchecked")` |
| 11 | XML 不方便联查 | 使用 `<sql>` + `<include>` 片段 |
| 12 | ItemApi ResponseModel 静态引用 | 泛型参数化 |
| 13 | ResponseModel<Void> 编译报错 | 使用 `ResponseModel<?>` 或无参 |
| 14 | 日志记录返回值太大 | 只记录耗时,不记录返回值 |
| 15 | JsonUtils 方法不存在 | 使用 `JSON.toJSONString()` (fastjson) |
| 16 | fillDictionaryData 重复查询 | 接收 dictMaps 参数,避免 N+1 问题 |
| 17 | 单元测试中文字符命名 | 改为英文命名 |
| 18 | GlobalUtils 无法 Mock | 改为实例方法或传入参数 |
---
## 📊 性能优化要点
| 优化点 | 说明 | 效果 |
|--------|------|------|
| **批量查询字典** | 一次查询多个字典类型 | 避免多次数据库查询 |
| **字典 Map 传入** | `fillDictionaryData()` 接收外部传入的 dictMaps | 避免重复查询 |
| **列表查询优化** | 100 条数据从 101 次查询降低到 2 次 | 性能提升 50 倍 |
| **枚举静态方法** | 枚举翻译使用静态方法 | 无运行时开销 |
---
## 🚀 使用流程
### 1. 需求分析阶段
- 确认业务模块的表结构
- 确认需要 Feign 远程调用还是本地 CRUD
- 确认涉及的数据字典类型
### 2. 代码生成阶段
- 生成数据字典模块 (5 个文件)
- 生成枚举类 (按需)
- 生成业务模块 (10 个文件)
- 生成单元测试 (按需)
- 生成集成测试 (按需)
### 3. 修正阶段
- 对照 18 个常见问题修正清单
- 运行 Maven 编译验证
- 运行单元测试
### 4. 验证阶段
- 编译通过
- 单元测试通过
- 集成测试通过(可选)
---
## 📝 输出物
1. 完整的骨架代码(10+5+2 个文件)
2. 单元测试文件(按需)
3. 集成测试文件(按需)
4. 编译验证报告
5. 测试通过报告
---
## 🔗 相关资源
- 数据库连接:`mysql -h 47.99.209.185 -P 50036 -u witsoftd -p mica`
- 项目路径:`/root/projects/wit/`
- 规范文档:`/root/projects/wit/mica-doc/主数据骨架代码.md`
- 规范文档:`/root/projects/wit/mica-doc/数据字典模块.md`
---
## 🔄 技能更新机制
### 如何丰富这个技能
1. **发现新需求/问题**
- 开发过程中遇到新问题
- 用户提出新需求
- 最佳实践总结
2. **添加到技能的对应扩展模块**
- 新增测试类型 → 添加到"测试生成规范"
- 新增文件类型 → 添加到"标准文件清单"
- 新问题 → 添加到"常见问题修正清单"
3. **更新技能提案**
```bash
skill_workshop action=revise name=mica-smdm-scaffold \
proposal_content="[完整技能内容]"
```
4. **应用新版本**
```bash
skill_workshop action=apply proposal_id=mica-smdm-scaffold-xxxxx
```
5. **后续开发自动使用新版本**
### 可扩展模块示例
| 模块 | 说明 | 状态 |
|------|------|------|
| 单元测试生成 | Service 层测试模板 | ✅ 已实现 |
| 集成测试生成 | Controller 层测试模板 | ✅ 已实现 |
| API 文档生成 | Swagger 注解规范 | ⏸️ 待添加 |
| 前端代码生成 | Vue3 + TypeScript 模板 | ⏸️ 待添加 |
| 数据迁移脚本 | Flyway 迁移脚本 | ⏸️ 待添加 |
| 性能测试 | JMeter 测试脚本 | ⏸️ 待添加 |
| 部署脚本 | Docker/K8s 配置 | ⏸️ 待添加 |
@@ -1 +0,0 @@
{"schema":"openclaw.skill-workshop.proposal.v1","id":"mica-smdm-scaffold-20260804-af318dd6c2","kind":"create","status":"applied","title":"Create mica-smdm-scaffold","description":"mica 项目 SMDM 模块骨架代码生成规范(含数据字典填充)","createdAt":"2026-08-04T08:59:50.395Z","updatedAt":"2026-08-04T09:12:42.043Z","createdBy":"skill-workshop","origin":{"agentId":"planner","sessionKey":"agent:planner:main","runId":"16c1345e-77e6-475b-8d0f-e25f2f5c99f1","messageId":"16c1345e-77e6-475b-8d0f-e25f2f5c99f1"},"proposedVersion":"v2","draftFile":"PROPOSAL.md","draftHash":"63dba30b3768a646bc9fd7dc3484738f7bf6cfdb80c3a58e9ebcde04a42c07e3","target":{"skillName":"mica-smdm-scaffold","skillKey":"mica-smdm-scaffold","skillDir":"/root/.openclaw/workspace-planner/skills/mica-smdm-scaffold","skillFile":"/root/.openclaw/workspace-planner/skills/mica-smdm-scaffold/SKILL.md","source":"openclaw-workspace"},"scan":{"state":"clean","scannedAt":"2026-08-04T09:12:42.015Z","critical":0,"warn":0,"info":0,"findings":[]},"appliedAt":"2026-08-04T09:12:42.043Z"}
@@ -1 +0,0 @@
{"schema":"openclaw.skill-workshop.rollback.v1","proposalId":"mica-smdm-scaffold-20260804-af318dd6c2","writtenAt":"2026-08-04T09:12:42.018Z","targetSkillFile":"/root/.openclaw/workspace-planner/skills/mica-smdm-scaffold/SKILL.md","action":"create"}
-4
View File
@@ -18,9 +18,5 @@
"e93ec401ac152a24ac60f3949838de21": {
"sessionKey": "agent:frontend:main",
"updatedAt": 1783936175588
},
"8e26fa36080dd3394a28fafce9b531aa": {
"sessionKey": "agent:planner:main",
"updatedAt": 1785809107092
}
}
@@ -0,0 +1,4 @@
openclaw-workspace-attestation:v1
2026-07-14T15:02:35.338Z
generated:HEARTBEAT.md:ecce558615751a35aa173731e892ff3993f44bb4f5a1219c0a02994790c85528
generated:USER.md:e418ca9a680553b3ad8f54aecb0d403330810bb77826ab5251cc1dc13368fe16
@@ -0,0 +1,3 @@
openclaw-workspace-attestation:v1
2026-07-11T04:17:27.887Z
generated:TOOLS.md:15cdfe57fcfa6d83888e215176f40b415ff2b9a51afe96b4d4134f2f5a8cfe68
@@ -0,0 +1,4 @@
openclaw-workspace-attestation:v1
2026-07-09T14:37:58.953Z
generated:TOOLS.md:15cdfe57fcfa6d83888e215176f40b415ff2b9a51afe96b4d4134f2f5a8cfe68
generated:USER.md:e418ca9a680553b3ad8f54aecb0d403330810bb77826ab5251cc1dc13368fe16
@@ -0,0 +1,6 @@
openclaw-workspace-attestation:v1
2026-06-16T01:41:47.661Z
generated:AGENTS.md:dda474224d5420e85d838fac5ffba4d3b4ef871977618865ec38a76b28a7d556
generated:IDENTITY.md:d93cd095ac3b8d8135110230bc6f09738fb8029ca6f270001a928a1c1614bffb
generated:TOOLS.md:15cdfe57fcfa6d83888e215176f40b415ff2b9a51afe96b4d4134f2f5a8cfe68
generated:USER.md:e418ca9a680553b3ad8f54aecb0d403330810bb77826ab5251cc1dc13368fe16
@@ -0,0 +1,4 @@
openclaw-workspace-attestation:v1
2026-07-14T12:46:27.449Z
generated:HEARTBEAT.md:ecce558615751a35aa173731e892ff3993f44bb4f5a1219c0a02994790c85528
generated:USER.md:e418ca9a680553b3ad8f54aecb0d403330810bb77826ab5251cc1dc13368fe16
@@ -0,0 +1,2 @@
openclaw-workspace-attestation:v1
2026-07-09T10:44:56.583Z
@@ -0,0 +1,2 @@
openclaw-workspace-attestation:v1
2026-06-29T03:05:39.425Z
@@ -0,0 +1,2 @@
openclaw-workspace-attestation:v1
2026-07-13T09:55:37.594Z
@@ -0,0 +1,2 @@
openclaw-workspace-attestation:v1
2026-07-14T09:11:58.580Z
@@ -0,0 +1,2 @@
openclaw-workspace-attestation:v1
2026-07-09T14:35:29.688Z
@@ -0,0 +1,6 @@
openclaw-workspace-attestation:v1
2026-07-10T14:27:02.080Z
generated:HEARTBEAT.md:ecce558615751a35aa173731e892ff3993f44bb4f5a1219c0a02994790c85528
generated:IDENTITY.md:d93cd095ac3b8d8135110230bc6f09738fb8029ca6f270001a928a1c1614bffb
generated:TOOLS.md:15cdfe57fcfa6d83888e215176f40b415ff2b9a51afe96b4d4134f2f5a8cfe68
generated:USER.md:e418ca9a680553b3ad8f54aecb0d403330810bb77826ab5251cc1dc13368fe16
@@ -0,0 +1,6 @@
openclaw-workspace-attestation:v1
2026-07-10T06:48:27.495Z
generated:HEARTBEAT.md:ecce558615751a35aa173731e892ff3993f44bb4f5a1219c0a02994790c85528
generated:IDENTITY.md:d93cd095ac3b8d8135110230bc6f09738fb8029ca6f270001a928a1c1614bffb
generated:TOOLS.md:15cdfe57fcfa6d83888e215176f40b415ff2b9a51afe96b4d4134f2f5a8cfe68
generated:USER.md:e418ca9a680553b3ad8f54aecb0d403330810bb77826ab5251cc1dc13368fe16
-405
View File
@@ -1,405 +0,0 @@
{
"version": 1,
"skills": {
"sql-toolkit": {
"version": "1.0.0",
"installedAt": 1785744535727,
"registry": "https://clawhub.ai",
"ownerHandle": "gitgoodordietrying",
"artifact": {
"kind": "archive",
"sha256": "4f48da99f3b1beb878195590b3ed1c6a469ce554498831abdee42ca27468959f",
"integrity": "sha256-T0jamfOxvrh4GVWQs+0cakac5VRJiDGr3uQsonRolZ8="
},
"skillFile": {
"path": "SKILL.md",
"sha256": "515ecf904449a3cd5ebb92e85e54127e216d9483ee9111705e75e686a0694285"
},
"verification": {
"schema": "clawhub.skill.verify.v1",
"ok": true,
"decision": "pass",
"reasons": [],
"card": {
"available": true,
"path": "skill-card.md",
"url": "https://wry-manatee-359.convex.site/api/v1/skills/sql-toolkit/card?ownerHandle=gitgoodordietrying&version=1.0.0",
"sha256": "ecf10f8b45e67a00ae6b5c6ef5438feb44cd33f505666b4362c506172d39848d",
"size": 1998,
"contentType": "text/markdown; charset=utf-8"
},
"artifact": {
"sourceFingerprint": "d90603335b0cc1e00d6da8eac9e1345d52453b894578bd2e8590fa20b1475484",
"bundleFingerprints": [
"b99edda9c4d7b4e0a78f172715644da5955da8bad18563789b4903f734c0baa2"
],
"files": [
{
"path": "SKILL.md",
"size": 12080,
"sha256": "515ecf904449a3cd5ebb92e85e54127e216d9483ee9111705e75e686a0694285",
"contentType": "text/markdown"
}
]
},
"provenance": {
"source": "unavailable",
"reason": "No server-resolved GitHub import provenance is stored for this version."
},
"security": {
"status": "clean",
"passed": true,
"rawStatus": "clean",
"verdict": "benign",
"confidence": "high",
"summary": "This SQL helper skill is purpose-aligned documentation for database command-line workflows, with no evidence of hidden behavior or malicious activity, but users should be careful with restore examples that can overwrite data.",
"model": "gpt-5.5",
"checkedAt": 1783656186394,
"signals": {
"staticScan": {
"status": "clean",
"rawStatus": "clean",
"reasonCodes": [],
"summary": "No suspicious patterns detected.",
"engineVersion": "v2.4.5",
"checkedAt": 1777524980775
},
"virusTotal": {
"status": "clean",
"rawStatus": "clean",
"verdict": "benign",
"analysis": "Type: OpenClaw Skill\nName: sql-toolkit\nVersion: 1.0.0\n\nThe skill bundle is benign. It provides comprehensive documentation and examples for interacting with SQL databases (SQLite, PostgreSQL, MySQL) using standard command-line tools. While the skill inherently involves powerful commands with file system and network access (e.g., `psql`, `mysql`, `sqlite3`, `pg_dump`, `mysqldump`), all examples and instructions in `SKILL.md` are aligned with the stated purpose of a 'SQL Toolkit' and demonstrate legitimate, common database operations. There is no evidence of prompt injection, data exfiltration, malicious execution, persistence, or obfuscation.",
"source": "palm",
"scanner": "code_insight",
"engineStats": {
"harmless": 0,
"malicious": 0,
"suspicious": 0,
"undetected": 64
},
"checkedAt": 1779161171837
},
"skillSpector": {
"status": "clean",
"rawStatus": "clean",
"score": 8,
"severity": "LOW",
"recommendation": "SAFE",
"issueCount": 1,
"scannerVersion": "2.3.5",
"summary": null,
"error": null,
"checkedAt": 1783656142755
},
"dependencyRegistry": null
}
},
"signature": {
"status": "unsigned"
}
}
},
"qiushi-openclaw-skill": {
"version": "1.0.0",
"installedAt": 1785745381570,
"registry": "https://clawhub.ai",
"ownerHandle": "skytodmoon",
"artifact": {
"kind": "archive",
"sha256": "1e2d3712d2974143449c9e47b0379725a954794c498727799f782ac7b1db7a49",
"integrity": "sha256-Hi03EtKXQUNEnJ5HsDeXJalUeUxJhyd5n3gqx7Hbekk="
},
"skillFile": {
"path": "SKILL.md",
"sha256": "b21d933b7f61584d2254fba25fd531c16f19e33e10016ddfbdea1a5e2d5d6d25"
},
"verification": {
"schema": "clawhub.skill.verify.v1",
"ok": true,
"decision": "pass",
"reasons": [],
"card": {
"available": true,
"path": "skill-card.md",
"url": "https://wry-manatee-359.convex.site/api/v1/skills/qiushi-openclaw-skill/card?ownerHandle=skytodmoon&version=1.0.0",
"sha256": "7ffcf0eaab78e22dc18592df90bce922535f9ce092c53c3a68f5d020f698e081",
"size": 2044,
"contentType": "text/markdown; charset=utf-8"
},
"artifact": {
"sourceFingerprint": "1d39ab4575f3ffec359865c03bed700ee3426f57f61d9fa9dad153fc60e5a3ae",
"bundleFingerprints": [
"8864f859b5a5b919d08ed0da8d37a79d4e5276ffd32a564ebe650f637423e296"
],
"files": [
{
"path": "README.md",
"size": 3652,
"sha256": "3454e7472626a033616d7d9f89c0ecf6b11aa5172774f0c07bca694c9d115f1f",
"contentType": "text/x-markdown"
},
{
"path": "SKILL.md",
"size": 2385,
"sha256": "b21d933b7f61584d2254fba25fd531c16f19e33e10016ddfbdea1a5e2d5d6d25",
"contentType": "text/x-markdown"
},
{
"path": "investigation-first/clawhub.json",
"size": 387,
"sha256": "48159dc63edec35d2ea36df30cb028bc89d5adf7e873e0bbd98c2b559b72d04b",
"contentType": "application/json"
},
{
"path": "investigation-first/README.md",
"size": 2766,
"sha256": "edc308afbcffb36f40f9e925e13dcc24f7c8b361af3a7c7c45af80f76cc96c3e",
"contentType": "text/x-markdown"
},
{
"path": "investigation-first/SKILL.md",
"size": 2309,
"sha256": "101212ce1723aaf92f7503b77fff35edbcccf22830dbe2f0f43cb995c166da2d",
"contentType": "text/x-markdown"
},
{
"path": "practice-cognition/clawhub.json",
"size": 380,
"sha256": "68bf1d476a88950059cb7dc52e78dee5583f7114472237bb2824d190119e9add",
"contentType": "application/json"
},
{
"path": "practice-cognition/README.md",
"size": 2659,
"sha256": "addd5a3c69d8559e659f507127877823727e03cdec2da0346c4a5dae4306b1bb",
"contentType": "text/x-markdown"
},
{
"path": "practice-cognition/SKILL.md",
"size": 2457,
"sha256": "204872d8135301e2ed07b696ef63dbe4081cce1ed3235221843fd4f97a0f42e9",
"contentType": "text/x-markdown"
},
{
"path": "concentrate-forces/clawhub.json",
"size": 380,
"sha256": "683dc297ed5d0f8a0b223f543fe54d445e8ebcaa39cd65d59cdca07e843f772c",
"contentType": "application/json"
},
{
"path": "concentrate-forces/README.md",
"size": 2731,
"sha256": "1666b93bcfdf78520b492bc196a901d465ce637c7d3b08520163a5f0609ff962",
"contentType": "text/x-markdown"
},
{
"path": "concentrate-forces/SKILL.md",
"size": 2253,
"sha256": "207b28f78ecb81d7c54f2ac8c6b3cdd58b4e10775a8e92f2f026bc3310d6f123",
"contentType": "text/x-markdown"
},
{
"path": "contradiction-analysis/clawhub.json",
"size": 423,
"sha256": "ef00074e7841d1698c0f0ea74c9e9dfc9e0923452e3d1475216bf945f147fd80",
"contentType": "application/json"
},
{
"path": "contradiction-analysis/README.md",
"size": 3012,
"sha256": "b4eeae7b315e024bf2c9f49d388d627cf2b0c3304d92d449f0c86abc3ee8d4b4",
"contentType": "text/x-markdown"
},
{
"path": "contradiction-analysis/SKILL.md",
"size": 2919,
"sha256": "1fd24138f9ab3b4bab002a771978356c673c24c7a5dce6c7acb37dc271dcd385",
"contentType": "text/x-markdown"
},
{
"path": "mass-line/clawhub.json",
"size": 356,
"sha256": "bac70025aedd0465607cbca72996bdf705a7d3a75c50bcc5da29c18147dee980",
"contentType": "application/json"
},
{
"path": "mass-line/README.md",
"size": 2632,
"sha256": "1c3c76199aa50ec1eca70b0463c42e09227777265a74e9f4b487483a8c5b5307",
"contentType": "text/x-markdown"
},
{
"path": "mass-line/SKILL.md",
"size": 2169,
"sha256": "f215fdf997b02cf314b6ba0e03e2425aae20904f55c4ce7734dcc8c32f64b78e",
"contentType": "text/x-markdown"
},
{
"path": "protracted-strategy/clawhub.json",
"size": 372,
"sha256": "5f54232101b8b48a38452b9cf69f9824914bb834cb03f06f4c0afc59429947dc",
"contentType": "application/json"
},
{
"path": "protracted-strategy/README.md",
"size": 2954,
"sha256": "d92f25b8ebfd8cd8999e56dbf79727e96f6c1502860dd2f37138795bea65e40e",
"contentType": "text/x-markdown"
},
{
"path": "protracted-strategy/SKILL.md",
"size": 2418,
"sha256": "7a69b073927a7426a01dc8e2979297f9a9b90f7b450e853bf2b877fb174422d2",
"contentType": "text/x-markdown"
},
{
"path": "workflows/clawhub.json",
"size": 392,
"sha256": "77497954f506f25351f35cf4e541a2e533501056ce7418b434ee24c6b9438ca4",
"contentType": "application/json"
},
{
"path": "workflows/README.md",
"size": 2871,
"sha256": "5b16dd2a4d5093494ace5d201c85d7cfd5e3409a93cb50176e269a987e0a7bc9",
"contentType": "text/x-markdown"
},
{
"path": "workflows/SKILL.md",
"size": 2448,
"sha256": "183fd3caa21f6ff5ebc9e725b59f4a0be3d83e5fdeb8587eb6d0b22859b768b1",
"contentType": "text/x-markdown"
},
{
"path": "overall-planning/clawhub.json",
"size": 363,
"sha256": "1e4a7014f0745993be50e1dd2813af364592e6cfbd87b68456c46543b6fc9797",
"contentType": "application/json"
},
{
"path": "overall-planning/README.md",
"size": 2912,
"sha256": "68c2f97a23befb87a11c612d862c0a77b5544a2cd8cd4e1f8bd2ba91c3eb9620",
"contentType": "text/x-markdown"
},
{
"path": "overall-planning/SKILL.md",
"size": 2403,
"sha256": "b3fdc6991bc211c2e83981e7ce53facfa1014cb7325452826cfc22ce056e36af",
"contentType": "text/x-markdown"
},
{
"path": "spark-prairie-fire/clawhub.json",
"size": 383,
"sha256": "17981f22cf824e28c2d770bcc21c9aa5087476326004eaae138b96a7b4fc4eae",
"contentType": "application/json"
},
{
"path": "spark-prairie-fire/README.md",
"size": 2710,
"sha256": "06a95aeafad95d606a742e4b99cb8ad257aeb65321305d318bbbf9b324299e63",
"contentType": "text/x-markdown"
},
{
"path": "spark-prairie-fire/SKILL.md",
"size": 2232,
"sha256": "e0eac250f3046cfcd8cdd95c3bd780ccefe7e9efbcb62de0a73f80986e78b2a8",
"contentType": "text/x-markdown"
},
{
"path": "arming-thought/clawhub.json",
"size": 450,
"sha256": "0a7cc0fb2129be03444e2fec5e8fb505cfcadbe2ed58ebef1fc37aaed28a0211",
"contentType": "application/json"
},
{
"path": "arming-thought/README.md",
"size": 1955,
"sha256": "6f1d3d9a0abcd5ad8fc90a1e0d18207d7e97ab53d947894aef049adf8807bdb2",
"contentType": "text/x-markdown"
},
{
"path": "arming-thought/SKILL.md",
"size": 2271,
"sha256": "6fa2855bcb06d1a136d916c9a07124dbd50adaac75b8037c86882b4c6c430735",
"contentType": "text/x-markdown"
},
{
"path": "criticism-self-criticism/clawhub.json",
"size": 407,
"sha256": "eda46316ce74edbf78c7210005d2785f1c2dbe7c0e8ae6809adb8f75a5e90e41",
"contentType": "application/json"
},
{
"path": "criticism-self-criticism/README.md",
"size": 2811,
"sha256": "d90d58b4e5707bdf4635aa85e147422bf8d18d79b3c4d24864f4f3fa7d7ad3e3",
"contentType": "text/x-markdown"
},
{
"path": "criticism-self-criticism/SKILL.md",
"size": 2369,
"sha256": "1f01760dbdffa7cd5acb95365e7866692d72c89061ed2240a05bbe1056794002",
"contentType": "text/x-markdown"
}
]
},
"provenance": {
"source": "unavailable",
"reason": "No server-resolved GitHub import provenance is stored for this version."
},
"security": {
"status": "clean",
"passed": true,
"rawStatus": "clean",
"verdict": "benign",
"confidence": "high",
"summary": "This is a disclosed Chinese-language methodology skill pack that guides reasoning and planning without requesting tools, credentials, file access, network access, or persistence.",
"model": "gpt-5.5",
"checkedAt": 1779973863935,
"signals": {
"staticScan": {
"status": "clean",
"rawStatus": "clean",
"reasonCodes": [],
"summary": "No suspicious patterns detected.",
"engineVersion": "v2.4.5",
"checkedAt": 1777527313505
},
"virusTotal": {
"status": "clean",
"rawStatus": "clean",
"verdict": null,
"analysis": null,
"source": "engines",
"scanner": null,
"engineStats": {
"harmless": 0,
"malicious": 0,
"suspicious": 0,
"undetected": 65
},
"checkedAt": 1780086996288
},
"skillSpector": {
"status": "suspicious",
"rawStatus": "suspicious",
"score": 100,
"severity": "CRITICAL",
"recommendation": "DO_NOT_INSTALL",
"issueCount": 16,
"scannerVersion": "2.0.0",
"summary": null,
"error": null,
"checkedAt": 1779973821578
},
"dependencyRegistry": null
}
},
"signature": {
"status": "unsigned"
}
}
}
}
}
-2
View File
@@ -51,8 +51,6 @@
- 不要在没有询问的情况下运行破坏性命令。
- `trash` 优于 `rm`(可恢复总是好过永久消失)
- 有疑问时,请询问。
- **禁止擅自提交项目代码到 git** - 必须先询问用户确认后再提交
- **禁止 git push** - 只能 commitpush 操作必须由用户手动执行
## 外部 vs 内部
+2 -27
View File
@@ -22,30 +22,5 @@
## 项目别名
- `wit``/root/projects/wit`(前端 mica-web / 后端 mica-server / 文档 mica-doc
### 🔴 mica 项目 git 操作红线
- **禁止 git push** - 只能 commitpush 操作必须由用户手动执行
- **禁止擅自提交项目代码到 git** - 必须先询问用户确认后再提交
## mica 项目数据库配置
**连接信息:**
- 主机:`47.99.209.185:50036`
- 用户:`witsoftd`
- 密码:见密码管理器
**数据库列表:**
| 数据库 | 用途 |
|--------|------|
| `dmp_serp` | ERP 相关 |
| `dmp_smdm` | 主数据管理 |
| `dmp_smes` | 制造执行系统 |
| `dmp_spom` | 订单管理 |
| `dmp_secm` | 安全管理 |
| `dmp_sportal` | 门户系统 |
**相关系统:** `witdmp_edge/scheduler/workflow``witdn_lcdp/server``witprint``nacos_k8s``tenant`
**技能:** sql-toolkit`/root/.openclaw/workspace-backend/skills/sql-toolkit/SKILL.md`
- `ruoyi后端``/home/yangxuan/Projects/IdeaProjects/ruoyi-vue-pro`
- `tiny` / `tiny-erp``/home/yangxuan/Projects/IdeaProjects/tiny-erp`
@@ -1,455 +0,0 @@
# MICA-Server 开发规范
> 本文档是 mica-server 项目的权威开发规范,所有开发人员必须严格遵守。
---
## 一、技术栈与版本
### 1.1 核心技术栈
| 类别 | 技术 | 版本 | 说明 |
|------|------|------|------|
| **JDK** | Java | 1.8 | 禁止使用 Java 9+ 特性 |
| **框架** | Spring Boot | 2.6.7 | 统一版本 |
| **ORM** | MyBatis-Plus | 3.5.1 | 禁止手写原生 SQL(除非性能优化) |
| **构建工具** | Maven | 3.6+ | 统一使用 Maven |
| **数据库** | MySQL | 8.0+ | HikariCP 连接池 |
| **注册/配置中心** | Nacos | 2.x | 服务注册与配置管理 |
### 1.2 工具库使用优先级
1. **优先使用**: `com.witsoft.common-utils` 中 utils 包封装的类和方法
2. **其次使用**: **Hutool** 工具库
3. **再次使用**: **Apache Commons** 系列
4. **禁止**: 重复造轮子
---
## 二、代码规范
### 2.1 命名规范
#### 类命名
- **类名**: UpperCamelCase 风格,必须为名词
- 正确:`UserController`, `UserService`
- 例外:领域模型 `DO`/`BO`/`DTO`/`VO` 等后缀
- **抽象类**: 使用 `Abstract``Base` 开头
- 例如:`AbstractService`, `BaseController`
- **异常类**: 使用 `Exception` 结尾
- 例如:`BizException`, `ValidationException`
- **测试类**: 以被测试类名开头,以 `Test` 结尾
- 例如:`UserServiceTest`
#### 方法和变量命名
- **方法名/变量名**: lowerCamelCase 风格
- 正确:`queryUserList`, `localName`, `getUserName`
- 禁止:拼音与英文混合、直接使用中文
- **Service/DAO 层方法前缀**:
- 获取单个/多个对象:`query` (如 `queryUser`, `queryUserList`)
- 插入:`insert``save` (如 `insertUser`, `saveOrder`)
- 删除:`delete``batchDelete` (如 `deleteUser`, `batchDeleteOrders`)
- 修改:`update` (如 `updateUser`, `updateOrderStatus`)
#### 常量命名
- **常量名**: UPPER_CASE_UNDERSCORE 风格,力求语义完整
- 正确:`MAX_USER_COUNT`, `DEFAULT_PAGE_SIZE`
- 禁止:不规范的缩写 (如 `AbsClass` 代替 `AbstractClass`)
- **常量类组织**: 按功能分类,禁止一个常量类维护所有常量
- 例如:`CacheConsts`, `ConfigConsts`, `UserConsts`
#### 包命名
- **包名**: 统一使用小写,点分隔符之间有且仅有一个单词
- 正确:`com.witsoft.mica.service`, `com.witsoft.util`
- 禁止:`com.witsoft.mica.services` (复数)
#### 其他命名规则
- **数组定义**: `String[] args` (中括号是数组类型的一部分)
- **布尔类型变量**: 禁止加 `is` 前缀 (避免序列化错误)
- 正确:`boolean success`, 方法名 `getSuccess()`
- 错误:`boolean isSuccess`, 方法名 `isSuccess()`
### 2.2 代码格式
#### 大括号使用
```java
// 空代码块
if (flag == 0) {}
// 非空代码块
if (flag == 1) {
System.out.println("world");
} else {
System.out.println("ok");
}
```
**规则**:
- 左大括号前不换行
- 左大括号后换行
- 右大括号前换行
- 右大括号后还有 `else` 等代码则不换行
- 右大括号表示终止则必须换行
#### 缩进与空格
- **缩进**: 4 个空格,禁止使用 tab 字符
- **单行字符数**: 不超过 200 个,超出需换行
- **运算符**: 左右必须有一个空格
- **关键词**: `if`/`for`/`while` 等与括号之间必须有一个空格
- **方法参数**: 多个参数逗号后必须加空格
- 例如:`method("aa", "bb", "cc")`
#### 换行规则
- 第二行相对第一行缩进 4 个空格,从第三行开始不再继续缩进
- 运算符与下文一起换行
- 方法调用的点符号与下文一起换行
- 多个参数超长时,逗号后换行
#### 文件编码
- **IDE 编码**: UTF-8
- **换行符**: Unix 格式 (LF),禁止使用 Windows 格式 (CRLF)
### 2.3 OOP 规约
1. **静态访问**: 直接用类名访问静态变量/方法,禁止通过对象引用访问
```java
// 正确
User user = UserService.getDefaultUser();
// 错误
User user = new UserService().getDefaultUser();
```
2. **覆写方法**: 必须加 `@Override` 注解
3. **可变参数**:
- 相同参数类型、相同业务含义才可使用
- 必须放置在参数列表最后
- 避免使用 `Object` 类型
```java
public User getUsers(String type, Integer... ids)
```
4. **接口签名**:
- 原则上不允许修改方法签名
- 接口过时必须加 `@Deprecated` 注解,并说明新接口
5. **equals 方法**: 使用常量或确定有值的对象调用
```java
// 正确
"test".equals(object);
// 错误
object.equals("test"); // 可能 NPE
```
6. **序列化**:
- 新增属性时不修改 `serialVersionUID`
- 完全不兼容升级时修改 `serialVersionUID`
7. **toString 方法**: POJO 类必须编写,继承的 POJO 需调用 `super.toString()`
### 2.4 注释规范
#### 类注释模板
```java
/**
* @menu : 类描述
* @Description : 类描述
* @ModifyBrief :
* @Author : git 账号
* @Date : 创建时间
* @Version : 3.0
* @Param :
* @Return :
*/
```
#### 方法注释模板
```java
/**
* @Description : 方法描述
* @ModifyBrief :
* @Author : git 账号
* @Date : 创建时间
* @Version : 3.0
* @Param : 参数说明
* @Return : 返回值说明
*/
```
#### 注释规则
1. **所有公共接口和类**必须包含 Javadoc
2. **注释语言**: 中文描述业务背景,技术术语保留英文 (如 NPE、DTO、API)
3. **禁止**生成 "Gets the value of X" 这类无意义的 getter/setter 注释
4. **复杂算法**必须在代码块上方解释核心逻辑
5. **禁止使用 HTML 标签**
6. **代码内注释**: 复杂逻辑必须包含行内注释,解释"为什么这样做"而非"做了什么"
7. **代码与注释比例**: 约 5:1,行注释使用 `// xxxxxx`
---
## 三、异常处理规范
### 3.1 异常捕获
1. **禁止**: 捕获 `Exception` 或 `Throwable` 后不做任何处理 (吞掉异常)
2. **规范**: 必须捕获具体的异常类
3. **日志**: 捕获异常时,调用 `GlobalException.getExceptionMessage(e)`
### 3.2 异常示例
```java
// 正确
try {
userService.queryUser(userId);
} catch (UserNotFoundException e) {
log.error("用户不存在:userId={}", userId, e);
throw new BizException("用户不存在");
}
// 错误 - 禁止吞掉异常
try {
userService.queryUser(userId);
} catch (Exception e) {
// 什么都不做
}
```
---
## 四、数据库规范
### 4.1 建表规约
#### 表名命名
- **不使用复数名词**
- **业务表前缀**: `mica_`
- **命名规则**: 小写字母或数字,下划线间隔
- 正确:`mica_user_info`, `mica_order_detail`
- 禁止:`mica_users`, `1_table`, `table__name`
#### 标准字段 (所有业务表必须包含)
| 字段名 | 类型 | 长度 | 是否 NULL | 主键 | 注释 |
|--------|------|------|-----------|------|------|
| `id` | varchar | 50 | 否 | 是 | 自然主键 |
| `ecid` | varchar | 100 | 否 | 否 | 企业编码 (多租户) |
| `create_time` | datetime | 3 | 是 | 否 | 创建时间 |
| `created_by` | varchar | 50 | 是 | 否 | 创建人 |
| `update_time` | datetime | 3 | 是 | 否 | 修改时间 |
| `updated_by` | varchar | 50 | 是 | 否 | 修改人 |
| `delete_time` | datetime | 3 | 是 | 否 | 删除时间 |
| `deleted_by` | varchar | 50 | 是 | 否 | 删除人 |
| `delete_mark` | tinyint | 1 | 默认 0 | 否 | 删除标志 0:未删除 1:已删除 |
#### 字段命名
- **小写字母或数字**,下划线间隔
- **禁止数字开头**
- **禁止两个下划线中间只有数字**
- **及时更新字段注释**: 修改字段含义或追加状态时
#### 索引命名
- **唯一索引**: `uk_字段名` (如 `uk_user_name`)
- **普通索引**: `idx_字段名` (如 `idx_create_time`)
#### 数据类型
- **小数**: 必须使用 `decimal`,禁止使用 `float` 和 `double`
- **字符串**:
- `varchar` 长度不超过 5000
- 超过 5000 使用 `text` 类型,独立成表,用主键对应
### 4.2 索引规约
1. **唯一特性字段**: 即使组合字段也必须建立唯一索引
2. **关联查询**: 超过 3 个表禁止 join,被关联字段必须有索引
3. **varchar 索引**: 必须指定索引长度 (一般 20 即可达到 90% 区分度)
### 4.3 SQL 规约
1. **COUNT 统计**: 使用 `count(*)`,禁止使用 `count(列名)` 或 `count(常量)`
2. **NULL 判断**: 使用 `ISNULL()` 函数
- `NULL <> NULL` 返回 `NULL`
- `NULL = NULL` 返回 `NULL`
3. **IN 操作**: 能避免则避免,可用 `EXISTS` 替换,集合元素控制在 1000 个内
4. **数据订正**: 删除/修改前先 `SELECT` 确认
### 4.4 ORM 规约
1. **查询字段**: 禁止使用 `*`,必须明确写明需要的字段
2. **参数传递**: 使用 `#{}`,禁止使用 `${}` (防止 SQL 注入)
3. **返回结果**: 禁止直接使用 `HashMap` 或 `Hashtable`
4. **更新接口**: 只更新有改动的字段,禁止全字段更新
5. **事务控制**:
- 不要滥用 `@Transactional`
- 考虑缓存回滚、消息补偿等回滚方案
---
## 五、统一响应格式
所有 Controller 层方法返回必须遵循以下 JSON 结构:
```json
{
"code": 200,
"msg": "操作成功",
"data": [],
"extra": {},
"success": true
}
```
---
## 六、项目结构规范
### 6.1 标准分层结构
```
com.witsoft.mica.xxx/
├── controller/ # REST 接口层
├── domain/ # DTO / VO / 查询参数
├── entity/ # 数据库实体 (DO)
├── mapper/ # MyBatis-Plus Mapper
└── service/ # 业务逻辑层
├── XxxService.java
└── impl/
└── XxxServiceImpl.java
```
### 6.2 各层职责
- **Controller**: 参数校验、调用 Service、返回统一响应
- **Service**: 业务逻辑、事务控制、数据填充
- **Mapper**: 数据持久化 (仅简单 CRUD,复杂查询用 XML)
- **Entity**: 数据库实体映射 (DO)
- **Domain**:
- DTO: 数据传输对象
- VO: 展示对象
- Query: 查询参数对象
---
## 七、开发注意事项
### 7.1 代码复用
1. **复用优先**: 逻辑雷同时提取公共方法,避免重复代码
2. **工具类优先**: 优先使用已有工具类方法
### 7.2 物料数据规范
1. **业务表仅存物料 id**: 物料相关字段仅存 `material_id`
2. **关联查询填充**: 编码、名称、规格、单位等通过关联查询填充
3. **填充在 Service 层**: 关联数据填充逻辑统一在 Service 层处理
### 7.3 字典使用
1. **优先使用 DictService**: 字典取值优先使用 `DictService` 公共方法
2. **禁止手写**: 不手写字典查询逻辑
### 7.4 Java 8 兼容性
1. **禁止 List.of()**: Java 8 不兼容
2. **使用**: `Collections.emptyList()` 替代
### 7.5 版本管理
1. **首个版本直接改 DDL**: v1.0 脚本直接修改建表语句
2. **不需要 ALTER TABLE**: 初始版本不需要写迁移脚本
---
## 八、Git 提交约定
### 8.1 提交规范
1. **禁止 Agent commit**: Agent 不做任何 commit 操作,只允许查看、修改代码
2. **Commit Message**: 提示 commit 时必须附带 commit message,让用户可直接复制运行
3. **用户手动提交**: 如需提交代码,由用户手动执行 commit
### 8.2 配置文件
- **`application.yml` / `application-local.yml`**: 由用户自行提交
- **Agent 绝不碰**: 这两个配置文件的版本管理
---
## 九、部署约定
### 9.1 部署规范
1. **禁止自动部署**: Agent 不做任何自动部署操作
2. **用户手动决定**: 代码修改后由用户手动决定何时部署
### 9.2 数据库脚本管理
所有数据库脚本必须按顺序编号,并在 MEMORY.md 中记录执行状态:
```
✅ 00-init.sql - 基础表结构
✅ 10-system.sql - 系统数据
✅ 20-master-data-init.sql - 基础数据
...
```
---
## 十、物料近似查询规范 (2026-05-29 产品决策)
### 10.1 searchSimilar() 优先级
产品决定**不查询规格字段**,按以下优先级分步查询:
1. **名称精确匹配** (`material_name = keyword`) — 优先级最高
2. **名称前缀匹配** (`material_name LIKE 'keyword%'`)
3. **名称模糊匹配** (`material_name LIKE '%keyword%'`)
4. **编码模糊匹配** (`material_code LIKE '%keyword%'`) — 兜底
### 10.2 去重原则
已在前置层级匹配的物料不再在后置层级重复出现。
### 10.3 旧方法保留
保留旧 `searchByNameLike()` 方法不动,保持向后兼容。
---
## 附录:快速参考
### 命名速查表
| 类型 | 规范 | 示例 |
|------|------|------|
| 类名 | UpperCamelCase | `UserController` |
| 方法名 | lowerCamelCase | `queryUserList` |
| 变量名 | lowerCamelCase | `userName` |
| 常量名 | UPPER_CASE_UNDERSCORE | `MAX_COUNT` |
| 包名 | 小写单数 | `com.witsoft.util` |
| 表名 | 小写 + 下划线 | `mica_user_info` |
| 字段名 | 小写 + 下划线 | `user_name` |
| 唯一索引 | `uk_字段名` | `uk_user_name` |
| 普通索引 | `idx_字段名` | `idx_create_time` |
### Service 方法前缀速查
| 操作 | 前缀 | 示例 |
|------|------|------|
| 查询单个 | `query` | `queryUser` |
| 查询列表 | `query` | `queryUserList` |
| 插入 | `insert`/`save` | `insertUser` |
| 删除 | `delete` | `deleteUser` |
| 批量删除 | `batchDelete` | `batchDeleteUsers` |
| 更新 | `update` | `updateUser` |
---
**版本**: 1.0
**最后更新**: 2026-08-04
**维护者**: 后端开发团队
+88
View File
@@ -0,0 +1,88 @@
# 2026-05-23 会话记忆
## 项目:tiny-erp
### 核心决策
1. **包路径确定**`com.witsoft.erp`(不是 com.example 或 com.witsoft.tinyerp
- tiny 是项目别名,包名使用正式名称 erp
2. **技术栈确认**
- JDK 11+(不是 1.8
- Spring Boot 2.7.18
- MyBatis Plus 3.5.3.1
- PostgreSQL 14+
- Spring Security + JWT (jjwt 0.11.5)
- SpringDoc OpenAPI 3(不是 Knife4j
3. **多租户方案**ecid 字段隔离 + TenantLineHandler 自动拦截
- 系统表(sys_*)不进行租户隔离(登录时需要查询)
- 业务表全部需要 ecid 隔离
- **所有表的 ecid 字段为 NOT NULL**
4. **API 设计规范**
- 分页列表接口使用 POST(不是 GET)
- 请求体携带查询条件 + 分页参数
- 统一返回格式:{code, message, data}
5. **异常处理规范**
- BusinessException 支持自定义错误码
- GlobalExceptionHandler 统一处理各类异常
- 参数校验失败返回 400 + 具体错误信息
6. **模块命名**:基础数据模块(bd)替代主数据模块(md)
### 已完成模块
| 模块 | 功能 | 状态 |
|------|------|------|
| system | 租户、用户、字典、JWT 认证 | ✅ |
| bd | 物料分类、工厂、仓库、物料 | ✅ |
| om | 销售订单、发货单(含库存扣减) | ✅ |
| mc | 采购订单 | ✅ |
| im | 库存查询、库存流水 | ✅ |
### 数据库脚本结构
```
scripts/postgresql/
├── 00-init.sql # 数据库初始化
├── 10-system.sql # 系统模块
├── 20-basic-data.sql # 基础数据模块
├── 30-sales.sql # 销售模块
├── 40-purchase.sql # 采购模块
├── 50-inventory.sql # 库存模块
└── 99-data.sql # 初始化数据
```
### 默认账号
- admin / admin123 / default
- test / admin123 / default
### 待开发功能
1. 采购收货单 + 库存增加(P0
2. 销售退货单(P1
3. 采购申请单(P1
4. 库存调拨(P1
5. 库存盘点(P1
6. 操作日志、登录日志(P1/P2
7. 报表统计(P2
### 关键代码位置
- JWT 工具:`framework/security/JwtUtil.java`
- 租户上下文:`framework/tenant/TenantContext.java`
- 租户拦截器:`framework/tenant/TenantLineHandlerImpl.java`
- 全局异常:`common/core/GlobalExceptionHandler.java`
- 业务异常:`common/core/BusinessException.java`
### 文档位置
- README.md:项目根目录
- 开发方案:`yangxuan/设计/01-开发方案.md`
---
> ⚠️ 2026-05-26: 当前只关注 md(主数据)和 im(库存)模块。om/mc/fin/system/home 代码已存在但不再关注。
+517
View File
@@ -0,0 +1,517 @@
# 2026-05-25 会话记录
## 系统模块开发(2026-05-25 13:28
### 完成的工作
1. **操作日志功能**
- 实体类:`OperLog.java`
- Mapper`OperLogMapper.java`
- Service`OperLogService.java` + `OperLogServiceImpl.java`
- Controller`OperLogController.java`
- 切面:`LogAspect.java`(自动记录带@Log 注解的方法)
- 注解:`@Log`module、businessType、isSaveRequestData、isSaveResponseData
2. **数据字典增强**
- 新增方法:`listDataBatch()` - 批量获取字典数据
- 新增方法:`listOptions()` - 前端下拉框格式 [{label, value}]
- 新增方法:`listOptionsBatch()` - 批量获取下拉框选项
- 新增接口:`GET /system/dict/data/options/batch?dictTypes=xxx,yyy`
3. **文档**
- `04-系统模块开发指南.md` - 包含使用示例、API 文档、前端集成示例
### 业务类型枚举
| 值 | 含义 |
|----|------|
| 0 | 其它 |
| 1 | 新增 |
| 2 | 修改 |
| 3 | 删除 |
| 4 | 导出 |
| 5 | 导入 |
| 6 | 审核 |
### 已初始化字典
- `inbound_type` - 入库类型(采购入库、退货入库、其他入库)
- `outbound_type` - 出库类型(销售出库、领料出库、其他出库)
- `stocktake_diff_result` - 盘点结果(相符、盘盈、盘亏)
- `payment_method` - 收付款方式(现金、银行转账、承兑汇票)
### 下一步
- 主数据模块开发(供应商、客户) ✓
- 库存模块开发(入库单、出库单) ✓
- 财务模块开发(应收、应付、收款、付款)
- 首页模块开发 ✓
---
## 首页模块开发(2026-05-25 15:15
### 完成的工作
1. **欢迎信息接口**
- `GET /home/welcome` - 返回欢迎语、用户名、企业名、日期、问候语
- 根据时间段自动切换问候语(早上好/中午好/下午好/晚上好/夜深了)
- DTO`HomeWelcomeResDTO.java`
2. **最新动态接口**
- `GET /home/news` - 返回最近 20 条业务动态
- 动态类型:入库完成、出库完成、盘点完成、新增供应商、新增客户
- 按时间倒序排列
- DTO`HomeNewsItemDTO.java`
3. **文件清单**
- `HomeController.java` - 首页控制器
- `HomeService.java` / `HomeServiceImpl.java` - 首页服务
- `HomeWelcomeResDTO.java` - 欢迎信息响应
- `HomeNewsItemDTO.java` - 动态项 DTO
### API 示例
```http
GET /home/welcome
{ welcome: "", userName: "", companyName: "", greeting: "" }
GET /home/news
[ { type: "inbound", title: "", content: "RK202605250001 - ", operator: "", operateTime: "..." } ]
```
### TODO
- 从用户会话/配置中获取真实用户名和企业名(当前为默认值)
---
## 库存模块增强(2026-05-25 14:26
### 完成的工作
1. **入库单管理 CRUD**
- 实体:`Inbound.java` + `InboundItem.java`
- DTO`InboundSaveReqDTO.java` + `InboundItemSaveReqDTO.java`
- Mapper`InboundMapper.java` + `InboundItemMapper.java`
- Service`InboundService.java` + `InboundServiceImpl.java`
- Controller`InboundController.java`
- API:分页查询、详情、明细、新增、修改、审核、作废、删除
- 审核逻辑:检查状态 → 更新状态 → 增加库存
- 作废逻辑:检查状态 → 更新状态 → 扣减库存
2. **出库单管理 CRUD**
- 实体:`Outbound.java` + `OutboundItem.java`
- DTO`OutboundSaveReqDTO.java` + `OutboundItemSaveReqDTO.java`
- Mapper`OutboundMapper.java` + `OutboundItemMapper.java`
- Service`OutboundService.java` + `OutboundServiceImpl.java`
- Controller`OutboundController.java`
- API:分页查询、详情、明细、新增、修改、审核、作废、删除
- 审核逻辑:检查状态 → **检查库存充足** → 更新状态 → 扣减库存
- 作废逻辑:检查状态 → 更新状态 → 恢复库存
3. **盘点单管理 CRUD**
- 实体:`Stocktake.java` + `StocktakeItem.java`
- DTO`StocktakeSaveReqDTO.java` + `StocktakeItemSaveReqDTO.java`
- Mapper`StocktakeMapper.java` + `StocktakeItemMapper.java`
- Service`StocktakeService.java` + `StocktakeServiceImpl.java`
- Controller`StocktakeController.java`
- API:分页查询、详情、明细、新增、修改、审核、作废、删除
- 审核逻辑:计算差异 → 设置盘点结果 → **调整库存**(盘盈 +,盘亏 -
- 作废逻辑:反向调整库存
4. **库存服务增强**
- 新增方法:`addStock()` - 入库单调用(包含物料信息)
- 新增方法:`reduceStock()` - 出库单调用
- 新增方法:`checkStock()` - 检查库存是否充足
5. **文档**
- `06-库存模块开发指南.md` - 完整 API 文档、业务流程、测试示例
### 业务类型字典
| 类型 | 值 | 标签 |
|------|-----|------|
| inbound_type | 10 | 采购入库 |
| inbound_type | 20 | 退货入库 |
| inbound_type | 30 | 其他入库 |
| outbound_type | 10 | 销售出库 |
| outbound_type | 20 | 领料出库 |
| outbound_type | 30 | 其他出库 |
| stocktake_diff_result | 0 | 相符 |
| stocktake_diff_result | 1 | 盘盈 |
| stocktake_diff_result | 2 | 盘亏 |
### 状态流转
```
草稿 (0) → 已审核 (1) → 已作废 (2)
```
### 编译状态
```
✅ mvn compile 成功
```
---
## 主数据模块开发(2026-05-25 13:46
### 完成的工作
1. **供应商管理 CRUD**
- 实体:`Supplier.java`name、contact、mobile 等简洁字段)
- DTO`SupplierSaveReqDTO.java`
- Mapper`SupplierMapper.java`
- Service`SupplierService.java` + `SupplierServiceImpl.java`
- Controller`SupplierController.java`
- API:分页查询、列表、详情、新增、修改、删除
- 操作日志:@Log 注解自动记录
2. **客户管理 CRUD**
- 实体:`Customer.java`(增加 level 客户级别字段)
- DTO`CustomerSaveReqDTODTO.java`
- Mapper`CustomerMapper.java`
- Service`CustomerService.java` + `CustomerServiceImpl.java`
- Controller`CustomerController.java`
- API:分页查询、列表、详情、新增、修改、删除
- 操作日志:@Log 注解自动记录
3. **文档**
- `05-主数据模块开发指南.md` - 包含 API 文档、前端集成示例
### 设计特点
- 字段命名参考 ruoyi-pro`name``contact``mobile`(简洁风格)
- 必填字段仅 `name`,支持快捷新增
- 客户级别:10-普通、20-重要、30-VIP(字典数据管理)
- 所有操作自动记录日志
### 编译状态
```
✅ mvn compile 成功
```
---
## Tiny-ERP 表架构设计与实现
### 完成的工作
1. **表架构设计文档**
- 位置:`/home/yangxuan/Projects/IdeaProjects/tiny-erp/yangxuan/设计/表架构设计.md`
- 参考项目:ruoyi-vue-pro(别名 ruoyi-pro
- 设计原则:务实、简洁、不过度设计
2. **SQL 脚本生成与执行**
- `20-master-data.sql` - 主数据模块(供应商、客户表参考 ruoyi-pro 风格)
- `50-inventory.sql` - 库存模块(入库/出库/盘点单及明细)
- `60-finance.sql` - 财务模块(应收/应付/收款/付款及核销明细)
- `99-data.sql` - 初始化数据(修复为幂等脚本)
3. **数据库表统计**
- 系统模块:5 表(含操作日志)
- 主数据:6 表(供应商、客户)
- 销售:4 表
- 采购:2 表
- 库存:8 表(入库/出库/盘点)
- 财务:8 表(应收/应付/收款/付款 + 核销明细)
- **总计:27 表**
4. **关键设计决策**
- 供应商/客户字段命名参考 ruoyi-pro:`name``contact``mobile`(去掉冗余前缀)
- 应收应付按物料明细记录(fi_receivable_item / fi_payable_item
- 数量:NUMERIC(12,3),金额/单价:NUMERIC(18,2)
- 所有业务表包含 ecid 字段实现多租户隔离
- 99-data.sql 使用 `INSERT ... SELECT ... WHERE NOT EXISTS` 实现幂等
### 待确认事项(已确认)
| 序号 | 事项 | 结论 |
|------|------|------|
| 1 | 多仓库管理 | 不需要 |
| 2 | 批次/序列号 | 不需要 |
| 3 | 应收应付物料明细 | 需要 ✓ |
| 4 | 多计量单位换算 | 不需要 |
### 数据库状态
- 数据库名:`tinyerp`
- 连接方式:Unix socket (`/var/run/postgresql`)
- 所有脚本执行成功,无 ERROR
- 初始化数据:1 租户、1 用户 (admin)、6 字典类型、16 字典数据
### 下一步
- 开始 Java 后端开发
- 实体类设计参考 ruoyi-pro 的 DO 结构
---
## 入库出库优化(2026-05-25 16:44
### 完成的工作
1. **生产入库 & 采购入库**
- DTO`ProductionInboundSaveReqDTO.java``ProductionInboundItemReqDTO.java`
- DTO`PurchaseInboundSaveReqDTO.java``PurchaseInboundItemReqDTO.java`
- 接口:`POST /im/inbound/production``POST /im/inbound/purchase`
- 特点:生产入库无需单价,采购入库含单价
2. **领料出库 & 销售出库**
- DTO`MaterialOutboundSaveReqDTO.java``MaterialOutboundItemReqDTO.java`
- DTO`SalesOutboundSaveReqDTO.java``SalesOutboundItemReqDTO.java`
- 接口:`POST /im/outbound/material``POST /im/outbound/sales`
- 特点:领料出库无需单价,销售出库含单价
3. **入库/出库历史查询**
- DTO`InboundHistoryQueryReqDTO.java``InboundHistoryDTO.java`
- DTO`OutboundHistoryQueryReqDTO.java``OutboundHistoryDTO.java`
- 接口:`POST /im/inbound/history-list``POST /im/outbound/history-list`
- 功能:查询已审核的单据,返回汇总信息
4. **物料信息填充**
- 保存时自动填充物料编码、名称、规格、单位
- 避免后续关联查询,提高查询性能
5. **文档**
- `04-入库出库优化 - 实现总结.md` - 完整 API 文档、测试示例
### 编译状态
```
✅ mvn compile 成功
```
---
## 实时库存 & 库存盘点(2026-05-25 17:16
### 完成的工作
1. **实时库存分页查询**
- DTO`StockPageQueryReqDTO.java``StockPageDTO.java`
- 接口:`POST /im/stock/page`
- 功能:带安全库存校验,返回 `isLowStock` 标识
- 校验规则:最小安全库存 > 0 且 库存 < 最小安全库存 → 库存过低
2. **最小安全库存管理**
- 接口:`PUT /md/material/{id}/safe-qty` - 更新最小安全库存
- 接口:`PUT /md/material/{id}/safe-qty/clear` - 清除(设置为 0
- 使用 MyBatis XML 实现(支持设置为 0
- 字段:`md_material.min_safe_qty NUMERIC(12,3)`
3. **快速盘点**
- DTO`StocktakeQuickSaveReqDTO.java``StocktakeQuickItemReqDTO.java`
- 接口:`POST /im/stocktake/quick-save`
- 功能:批量保存盘点单(草稿),自动获取当前库存作为账面数量
4. **盘点历史列表**
- DTO`StocktakeHistoryQueryReqDTO.java``StocktakeHistoryDTO.java`
- 接口:`POST /im/stocktake/history-list`
- 日期范围:`today`(当日)、`week`(近 7 日)、`month`(近 30 日)
5. **MyBatis XML 按模块分类**
- `mapper/md/material/MaterialMapper.xml` - 物料模块
- `mapper/im/stock/StockMapper.xml` - 库存模块
### 数字格式规范
| 字段类型 | 数据库类型 | 小数位 | 展示规则 |
|---------|-----------|--------|---------|
| 数量 | NUMERIC(12,3) | 3 | 小数全为 0 时不展示 |
| 单价/金额 | NUMERIC(11,2) | 2 | 小数全为 0 时不展示 |
### 编译状态
```
✅ mvn compile 成功
```
---
## 库存积压分析(2026-05-25 17:23
### 完成的工作
1. **积压统计(按分类分组)**
- DTO`StockOverstockDTO.java``StockOverstockQueryReqDTO.java`
- 接口:`POST /im/stock/overstock/summary`
- 返回:分类、物料数量、积压金额、平均积压天数
- 默认积压阈值:90 天
2. **积压明细(下钻页面)**
- DTO`StockOverstockDetailDTO.java`
- 接口:`POST /im/stock/overstock/detail`
- 参数:`category`(分类筛选)、`sortBy`amount/qty 排序)
- 返回:物料编码、名称、规格、库存数量、单价、积压天数、积压金额
3. **SQL 实现**
- 积压判定:最后入库日期 < 当前日期 - 阈值
- 单价计算:平均入库单价
- 积压金额 = 库存数量 × 平均单价
### 新增文件
- `StockMapper.xml` - 积压统计和明细 SQL
- `06-库存积压分析 - 实现总结.md` - 完整文档
### 编译状态
```
✅ mvn compile 成功
```
---
## 项目规范建立(2026-05-25 17:17-18:32
### Git 操作规范
-**禁止自动 push** - 所有 commit 后必须人工审查
- ✅ 流程:编译验证 → 提交代码 → 停止等待 → 人工确认后手动 push
### Java 语法规范
-**只能使用 Java 8 语法**
- ❌ 禁止:`var``Map.of()``List.of()`、switch 表达式、文本块、record
- ✅ 推荐:Lambda、Stream API、Optional、方法引用
### 状态字段规范
| 值 | 含义 |
|----|------|
| 0 | 有效(默认) |
| 1 | 无效 |
### 架构规范
- Service 层处理业务逻辑(查询、填充、组装)
- Controller 层保持简洁(调用 Service、返回结果)
- 接口支持可选字段参数(`withStock``withCategoryName`)提高复用性
### 本地开发规范
- ✅ 支持免登录(请求头 `X-User-Id` 或默认用户)
- ⚠️ 仅 local 环境启用,生产环境严禁开启
---
## 物料分页查询重构(2026-05-25 18:15-18:37
### 完成的工作
1. **Java 填充方案(替代 XML JOIN**
- 删除:`MaterialMapper.xml` 中的复杂 JOIN 查询
- 删除:`MaterialListWithStockReqDTO.java``MaterialWithStockDTO.java`
- 新增:`MaterialPageDTO.java``MaterialPageQueryReqDTO.java`
- 逻辑:Service 层批量查询库存和分类,内存填充
2. **可选字段参数**
- `withStock`(默认 true)- 是否返回库存数量
- `withCategoryName`(默认 true)- 是否返回分类名称
- 性能优化:不查关联时只需 1 次 SQL
3. **本地开发免登录**
- 配置:`development.mock-auth.enabled`
- 请求头:`X-User-Id``X-User-Name``X-Nickname`
- 过滤器:`UserContextFilter` 支持免登录模式
4. **代码整理**
- 简化 `MaterialController.java` - 移除 XML 查询接口
- 精简 `MaterialMapper.java` - 只保留安全库存更新方法
- 重构 `MaterialServiceImpl.java` - 添加 `pageWithStock()` 方法
### 性能对比
| 场景 | withStock | withCategoryName | SQL 次数 |
|------|-----------|------------------|---------|
| 下拉选择器 | ❌ | ❌ | 1 |
| 简单列表 | ❌ | ❌ | 1 |
| 库存管理 | ✅ | ❌ | 2 |
| 完整展示 | ✅ | ✅ | 3 |
### 编译状态
```
✅ mvn compile 成功
```
---
## 今日提交统计(未 push
```
feat: 实现入库出库优化功能
feat: 实现实时库存和盘点功能
feat: 实现库存积压分析功能
refactor: 按模块分类 MyBatis XML 文件
fix: 修复物料查询 XML 中的字段错误
docs: 更新物料状态注释
feat: 物料分页查询改为 Java 填充关联数据
refactor: 物料分页查询逻辑移至 Service 层
feat: 物料分页查询支持可选字段
refactor: 删除物料 XML 查询,统一使用 Service 层 Java 填充
feat: 本地开发支持免登录
```
**总计**: 约 15 个 commit4300+ 行新增,200+ 行删除
---
## 待办事项
1. **数据库迁移** - 添加 `md_material.min_safe_qty` 字段
2. **前端开发** - 实时库存、盘点、积压分析页面
3. **测试验证** - 使用 HTTP 测试文件验证所有接口
4. **代码审查** - 人工审查后执行 git push
## 下午-晚间增量(2026-05-25 18:37~20:18
### 实体-DDL 字段对齐
| 文件 | 字段 | 操作 |
|------|------|------|
| `Stock.java` | `category`, `safeQty` | 彻底删除(非表字段) |
| `Outbound.java` | `warehouseName`, `totalQuantity` | 彻底删除(非表字段) |
| `Stocktake.java` | `warehouseName` | 彻底删除(非表字段) |
| `StockServiceImpl.java` | `safeQty` 操作 | 改为读写 `md_material.min_safe_qty` |
### 模糊查询支持特殊字符
- 创建 `LikeEscapeUtil.java` — 转义 `\``%``_`
- 物料/客户/供应商分页查询全部接入转义
- 客户/供应商 `/list` 接口新增 `keyword` 参数支持名称+编码联合模糊
- **踩坑**`ESCAPE '\\'` 被 MyBatis-Plus COUNT 包装解析失败 → 移除 `ESCAPE` 子句,利用 PostgreSQL 默认 `\` 为转义字符
### 最小安全库存
- DDL `20-master-data.sql` 新增 `min_safe_qty NUMERIC(12,3) DEFAULT 0`
- 升级脚本 `upgrade/v1.0.1-alter-material-add-min-safe-qty.sql`
- 库存分页返回 `isLowStock` 标识(库存 < min_safe_qty → 过低)
- 接口:`PUT /md/material/{id}/safe-qty` / `PUT /md/material/{id}/safe-qty/clear`
### 主数据初始化脚本修正
| 改动 | 说明 |
|------|------|
| `safety_stock` 列和值 | 从 INSERT 语句中删除 |
| `supplier_code` / `customer_code` | 补全编码值 |
| 物料名称规格空格 | 对齐文档(如"宝塔3斜纹" |
### DDL 补充字段
| 表 | 新增字段 |
|----|---------|
| `md_supplier` | `supplier_code VARCHAR(50)`, `phone VARCHAR(20)`, `address VARCHAR(200)` |
| `md_customer` | `customer_code VARCHAR(50)`, `phone VARCHAR(20)`, `address VARCHAR(200)`, `level INTEGER DEFAULT 0` |
### 今日提交统计(全部未 push)
```
418cd10 fix: 修复库存积压报表仅入库物料积压天数基准错误
e8d7bb4 docs: 重构文档目录结构,按模块分类组织
8a38d33 feat: 入库单/出库单 inboundDate/outboundDate 为空时默认当天
373a292 feat: 供应商/客户DDL补充编码、联系电话、地址、客户级别字段
6c338d1 feat: 根据文档补充default租户主数据初始化脚本的编码字段和物料名称修正
d17b970 feat: 物料/客户/供应商模糊查询支持特殊字符转义及客户供应商列表接口
f02f048 feat: DDL增加md_material.min_safe_qty字段及升级脚本
5de00d3 feat: 清理非表字段,最小安全库存统一走md_material.min_safe_qty
(plus safety_stock removal commit)
```
**原则**: 代码改动与文档改动分 commit,禁止自动 push,人工审查后手动操作。
### 环境配置
- MySQL 运行时 `tiny_erp` 数据库已配置 `min_safe_qty`
- 开发免登录配置:`development.mock-auth.enabled`
+699
View File
@@ -0,0 +1,699 @@
# 2026-05-26 会话记忆
## 本周聚焦
- 只关注 **tiny-erp**,不处理其他项目
- 只关注 **md(主数据)****im(库存)** 两个模块
- **不再关注** om(销售)、mc(采购)、fin(财务)、home、system 等其他模块
## 模块路径确认
包路径: `com.witsoft.erp`
项目路径: `/home/yangxuan/Projects/IdeaProjects/tiny-erp`
### md 模块(主数据)
`module/md/` — 已完整实现
- `category` — 物料分类
- `customer` — 客户
- `factory` — 工厂
- `material` — 物料
- `supplier` — 供应商
- `warehouse` — 仓库
### im 模块(库存)
`module/im/` — 已完整实现
- `inbound` — 入库单(含采购入库、生产入库)
- `outbound` — 出库单
- `stock` — 库存查询、库存流水、呆滞分析
- `stocktake` — 库存盘点(含快速盘点)
## 原记忆清理
旧记忆(memory/2026-05-23.md)中关于 `bd` 模块的命名实际上是 `md`(代码实际使用的是 `md`,不是 `bd`)。
ome/mc/fin/home/system 模块依然存在但不处理。
## 注释规范(已写入 MEMORY.md
1. 所有公共接口和类必须包含 Javadoc
2. 注释语言:中文描述业务背景,技术术语保留英文(如 NPE)
3. 禁止生成 "Gets the value of X" 这类无意义的 getter/setter 注释
4. 复杂算法必须在代码块上方解释核心逻辑
5. 禁止使用 HTML 标签
## 开发注意事项(已写入 MEMORY.md)
1. **复用优先**:逻辑雷同时提取公共方法复用
2. **业务表仅存物料 id**:物料相关字段仅存 `material_id`,其他数据通过关联查询填充
3. **填充在 Service 层**:关联数据填充逻辑统一在 Service 层处理
4. **首个版本直接改 DDL**:脚本直接修改建表语句,不需要写 ALTER TABLE
5. **字典优先用 DictService**:字典取值优先使用 DictService 公共方法
## 库存业务表字段清理
**背景:** 业务表只存物料 ID,物料编码/名称/规格/单位通过关联查询填充。
**DDL 改动(50-inventory.sql):**
- `im_stock` — 移除 material_code, material_name, spec, unit
- `im_stock_transaction` — 移除 material_code, material_name
- `im_inbound_item` — 移除 material_code, material_name, spec, unit
- `im_outbound_item` — 移除 material_code, material_name, spec, unit
**实体类:** Stock, StockTransaction, InboundItem, OutboundItem — 移除对应字段
**请求 DTO** InboundItemSaveReqDTO, OutboundItemSaveReqDTO, StocktakeItemSaveReqDTO, QuickStocktakeItemDTO — 只保留 materialId
**接口改动:**
- StockTransactionService.recordTransaction() — 移除 materialCode/materialName 参数
- MaterialService — 新增 searchMaterialIdsByKeyword() 方法
**Service 改动:**
- StockTransactionServiceImpl — keyword 搜索改为两步(先查物料表匹配 ID);DTO 填充从 materialInfoMap 读取
- StockServiceImpl — 同上
- InboundServiceImpl — saveItems 不 set 冗余字段;recordTransaction 去参;history 从 material 填充
- OutboundServiceImpl — 同上
- MaterialServiceImpl — 实现 searchMaterialIdsByKeyword()
**编译验证:** `mvn compile -q`
## Git 提交约定
- **commit 跳过 application.yml** — `git add` 时用 `git add . -- ':!application.yml'` 或手动排除
- **commit 后不要 push** — 只做本地提交,不推送远程
# 2026-05-26 会话记忆
## 物料信息填充公共服务 (MaterialFillService)
### 核心设计决策
1. **实体设计原则**
- `InboundItem``OutboundItem` 只存储 `materialId`
- 不存储物料编码、名称、规格、单位等字段
- 防止物料信息变更后历史数据不一致
2. **批量查询模式**
```java
List<Long> materialIds = items.stream().map(Item::getMaterialId).collect(Collectors.toList());
Map<Long, MaterialInfoDTO> materialInfoMap = materialFillService.getMaterialInfoMap(materialIds);
```
- 避免 N+1 查询问题
- 一次查询所有物料信息,性能更优
3. **Service 层填充**
- 所有物料信息填充逻辑在 Service 层处理
- Controller 只负责返回 DTO
- 不放在 Mapper 或 Controller 层
### 修改的 Service 类(共 6 个)
| Service | 方法 | 用途 |
|---------|------|------|
| InboundServiceImpl | executeInbound(), cancel() | 入库/冲销时记录流水 |
| OutboundServiceImpl | executeOutbound(), cancel() | 出库/冲销时记录流水 |
| FinAccountsAutoServiceImpl | createApFromInbound(), cancelApFromInbound() | 采购应付联动 |
| FinAccountsAutoServiceImpl | createArFromOutbound(), cancelArFromOutbound() | 销售应收联动 |
| HomeServiceImpl | getLatestNews() | 首页动态显示 |
| DeliveryServiceImpl | confirmOutbound() | 发货确认 |
### 物料类型字典
- Dict Type: `material_type`
- 值:`P`-原材料,`SA`-半成品,`FG`-成品
- SQL 脚本:`scripts/postgresql/22-material-type-dict.sql`
### Git 状态
- 所有修改已 commit13+ commits
- **禁止 push** - 用户明确要求
- 分支:master
### 经验教训
1. 修改实体类后,所有引用该实类的地方都要检查
2. 编译错误可能分散在多个模块(im, fin, home, om
3. 使用 `mvn clean compile` 确保完整编译,避免 IDE 缓存误导
# 2026-05-26 会话记忆
## 本周聚焦
- 只关注 **tiny-erp**,不处理其他项目
- 只关注 **md(主数据)** 和 **im(库存)** 两个模块
- **不再关注** om(销售)、mc(采购)、fin(财务)、home、system 等其他模块
## 模块路径确认
包路径: `com.witsoft.erp`
项目路径: `/home/yangxuan/Projects/IdeaProjects/tiny-erp`
### md 模块(主数据)
`module/md/` — 已完整实现
- `category` — 物料分类
- `customer` — 客户
- `factory` — 工厂
- `material` — 物料
- `supplier` — 供应商
- `warehouse` — 仓库
### im 模块(库存)
`module/im/` — 已完整实现
- `inbound` — 入库单(含采购入库、生产入库)
- `outbound` — 出库单
- `stock` — 库存查询、库存流水、呆滞分析
- `stocktake` — 库存盘点(含快速盘点)
## 原记忆清理
旧记忆(memory/2026-05-23.md)中关于 `bd` 模块的命名实际上是 `md`(代码实际使用的是 `md`,不是 `bd`)。
ome/mc/fin/home/system 模块依然存在但不处理。
## 注释规范(已写入 MEMORY.md
1. 所有公共接口和类必须包含 Javadoc
2. 注释语言:中文描述业务背景,技术术语保留英文(如 NPE)
3. 禁止生成 "Gets the value of X" 这类无意义的 getter/setter 注释
4. 复杂算法必须在代码块上方解释核心逻辑
5. 禁止使用 HTML 标签
## 开发注意事项(已写入 MEMORY.md)
1. **复用优先**:逻辑雷同时提取公共方法复用
2. **业务表仅存物料 id**:物料相关字段仅存 `material_id`,其他数据通过关联查询填充
3. **填充在 Service 层**:关联数据填充逻辑统一在 Service 层处理
4. **首个版本直接改 DDL**:脚本直接修改建表语句,不需要写 ALTER TABLE
5. **字典优先用 DictService**:字典取值优先使用 DictService 公共方法
## Git 提交约定
- **commit 跳过 application.yml** — `git add . -- ':!application.yml'` 排除,防止泄露配置
- **commit 后不要 push** — 只做本地 commit,不推送远程仓库
## 库存业务表字段清理
**背景:** 业务表只存物料 ID,物料编码/名称/规格/单位通过关联查询填充。
**DDL 改动(50-inventory.sql):**
- `im_stock` — 移除 material_code, material_name, spec, unit
- `im_stock_transaction` — 移除 material_code, material_name
- `im_inbound_item` — 移除 material_code, material_name, spec, unit
- `im_outbound_item` — 移除 material_code, material_name, spec, unit
**实体类:** Stock, StockTransaction, InboundItem, OutboundItem — 移除对应字段
**请求 DTO** InboundItemSaveReqDTO, OutboundItemSaveReqDTO, StocktakeItemSaveReqDTO, QuickStocktakeItemDTO — 只保留 materialId
**接口改动:**
- StockTransactionService.recordTransaction() — 移除 materialCode/materialName 参数
- MaterialService — 新增 searchMaterialIdsByKeyword() 方法
**Service 改动:**
- StockTransactionServiceImpl — keyword 搜索改为两步(先查物料表匹配 ID);DTO 填充从 materialInfoMap 读取
- StockServiceImpl — 同上
- InboundServiceImpl — saveItems 不 set 冗余字段;recordTransaction 去参;history 从 material 填充
- OutboundServiceImpl — 同上
- MaterialServiceImpl — 实现 searchMaterialIdsByKeyword()
**编译验证:** `mvn compile -q` ✅
## 物料信息填充公共服务 (MaterialFillService)
### 核心设计决策
1. **实体设计原则**
- `InboundItem` 和 `OutboundItem` 只存储 `materialId`
- 不存储物料编码、名称、规格、单位等字段
- 防止物料信息变更后历史数据不一致
2. **批量查询模式**
```java
List<Long> materialIds = items.stream().map(Item::getMaterialId).collect(Collectors.toList());
Map<Long, MaterialInfoDTO> materialInfoMap = materialFillService.getMaterialInfoMap(materialIds);
```
- 避免 N+1 查询问题
- 一次查询所有物料信息,性能更优
3. **Service 层填充**
- 所有物料信息填充逻辑在 Service 层处理
- Controller 只负责返回 DTO
- 不放在 Mapper 或 Controller 层
### 修改的 Service 类(共 6 个)
| Service | 方法 | 用途 |
|---------|------|------|
| InboundServiceImpl | executeInbound(), cancel() | 入库/冲销时记录流水 |
| OutboundServiceImpl | executeOutbound(), cancel() | 出库/冲销时记录流水 |
| FinAccountsAutoServiceImpl | createApFromInbound(), cancelApFromInbound() | 采购应付联动 |
| FinAccountsAutoServiceImpl | createArFromOutbound(), cancelArFromOutbound() | 销售应收联动 |
| HomeServiceImpl | getLatestNews() | 首页动态显示 |
| DeliveryServiceImpl | confirmOutbound() | 发货确认 |
### 物料类型字典
- Dict Type: `material_type`
- 值:`P`-原材料,`SA`-半成品,`FG`-成品
- SQL 脚本:`scripts/postgresql/22-material-type-dict.sql`
### Git 状态
- 所有修改已 commit13+ commits
- **禁止 push** - 用户明确要求
- 分支:master
## 物料选择器(Material Selector
新增物料选择器功能,用于入库/出库操作时弹窗选物料。
### 接口
| 接口 | 位置 | 数据源 | 仓库参数 |
|------|------|--------|---------|
| `POST /im/inbound/material-selector` | InboundController | md_material | 不需要 |
| `POST /im/outbound/material-selector` | OutboundController | im_stock JOIN md_material | 需要 warehouseId |
### 请求参数(MaterialSelectorReqDTO → md.material.dto
- `categoryId` — 0=常用物料,>0=按分类筛选
- `keyword` — 物料编码/名称/规格关键字
- `warehouseId` — 出库场景需要
- 继承 `PageQuery`pageNum, pageSize
### 常用物料 TOP10 逻辑
- **口径:** 近 30 天出入库明细条目数最多的 10 个物料
- **入库:** `im_inbound_item` GROUP BY material_id ORDER BY COUNT(*) DESC LIMIT 10
- **出库:** `im_outbound_item` 同上
- **SQL 放 Mapper XML**(方便后续扩展)
### 分类筛选逻辑
- **入库:** MyBatis Plus LambdaQueryWrapper 查 `md_material` 表,按 `category_id` + `keyword` 分页
- **出库:** XML 联表 `im_stock JOIN md_material`,按 `category_id` + `keyword` + `warehouseId` 分页,只查库存 > 0 的数据
### 响应
- 复用 `StockPageDTO`im.stock.dto
- 物料编码/名称/规格/单位/分类等从 `MaterialFillService` 填充
### 新增文件(7个)
| 文件 | 路径 |
|------|------|
| MaterialSelectorReqDTO | md.material.dto |
| MaterialSelectorService | md.material.service |
| MaterialSelectorServiceImpl | md.material.service.impl |
| InboundItemMapper.xml | resources/mapper/im/ |
| OutboundItemMapper.xml | resources/mapper/im/ |
| StockMapper.xml | resources/mapper/im/ |
| | |
### 修改文件(5个)
| 文件 | 改动 |
|------|------|
| InboundItemMapper.java | + selectRecentMaterialIds() |
| OutboundItemMapper.java | + selectRecentMaterialIds() |
| StockMapper.java | + selectStockPage() / countStockPage() |
| InboundController.java | + /material-selector 端点 |
| OutboundController.java | + /material-selector 端点 |
## 历史单据创建人名称
### 改动
- **InboundHistoryItemDTO** — 新增 `creatorName` 字段
- **OutboundHistoryItemDTO** — 新增 `creatorName` 字段
- **InboundServiceImpl.listHistory()** — 收集 creators → 批量查 sys_user(username→nickname) → 填充
- **OutboundServiceImpl.listHistory()** — 同上
### 逻辑
1. 从单据列表收集所有 `creator`(用户名)
2. `userService.lambdaQuery().in(User::getUsername, creators).list()`
3. 转 `Map<String, String>`username → nickname
4. 逐行 `dto.setCreatorName()`
5. 一次 SQL,不 N+1
# 2026-05-26 会话记忆
## 本周聚焦
- 只关注 **tiny-erp**,不处理其他项目
- 只关注 **md(主数据)** 和 **im(库存)** 两个模块
- **不再关注** om(销售)、mc(采购)、fin(财务)、home、system 等其他模块
## 模块路径确认
包路径: `com.witsoft.erp`
项目路径: `/home/yangxuan/Projects/IdeaProjects/tiny-erp`
### md 模块(主数据)
`module/md/` — 已完整实现
- `category` — 物料分类
- `customer` — 客户
- `factory` — 工厂
- `material` — 物料
- `supplier` — 供应商
- `warehouse` — 仓库
### im 模块(库存)
`module/im/` — 已完整实现
- `inbound` — 入库单(含采购入库、生产入库)
- `outbound` — 出库单
- `stock` — 库存查询、库存流水、呆滞分析
- `stocktake` — 库存盘点(含快速盘点)
## 原记忆清理
旧记忆(memory/2026-05-23.md)中关于 `bd` 模块的命名实际上是 `md`(代码实际使用的是 `md`,不是 `bd`)。
ome/mc/fin/home/system 模块依然存在但不处理。
## 注释规范(已写入 MEMORY.md
1. 所有公共接口和类必须包含 Javadoc
2. 注释语言:中文描述业务背景,技术术语保留英文(如 NPE)
3. 禁止生成 "Gets the value of X" 这类无意义的 getter/setter 注释
4. 复杂算法必须在代码块上方解释核心逻辑
5. 禁止使用 HTML 标签
## 开发注意事项(已写入 MEMORY.md)
1. **复用优先**:逻辑雷同时提取公共方法复用
2. **业务表仅存物料 id**:物料相关字段仅存 `material_id`,其他数据通过关联查询填充
3. **填充在 Service 层**:关联数据填充逻辑统一在 Service 层处理
4. **首个版本直接改 DDL**:脚本直接修改建表语句,不需要写 ALTER TABLE
5. **字典优先用 DictService**:字典取值优先使用 DictService 公共方法
## Git 提交约定
- **commit 跳过 application.yml** — `git add . -- ':!application.yml'` 排除,防止泄露配置
- **commit 后不要 push** — 只做本地 commit,不推送远程仓库
## 库存业务表字段清理
**背景:** 业务表只存物料 ID,物料编码/名称/规格/单位通过关联查询填充。
**DDL 改动(50-inventory.sql):**
- `im_stock` — 移除 material_code, material_name, spec, unit
- `im_stock_transaction` — 移除 material_code, material_name
- `im_inbound_item` — 移除 material_code, material_name, spec, unit
- `im_outbound_item` — 移除 material_code, material_name, spec, unit
**实体类:** Stock, StockTransaction, InboundItem, OutboundItem — 移除对应字段
**请求 DTO** InboundItemSaveReqDTO, OutboundItemSaveReqDTO, StocktakeItemSaveReqDTO, QuickStocktakeItemDTO — 只保留 materialId
**接口改动:**
- StockTransactionService.recordTransaction() — 移除 materialCode/materialName 参数
- MaterialService — 新增 searchMaterialIdsByKeyword() 方法
**Service 改动:**
- StockTransactionServiceImpl — keyword 搜索改为两步(先查物料表匹配 ID);DTO 填充从 materialInfoMap 读取
- StockServiceImpl — 同上
- InboundServiceImpl — saveItems 不 set 冗余字段;recordTransaction 去参;history 从 material 填充
- OutboundServiceImpl — 同上
- MaterialServiceImpl — 实现 searchMaterialIdsByKeyword()
**编译验证:** `mvn compile -q` ✅
## 物料信息填充公共服务 (MaterialFillService)
### 核心设计决策
1. **实体设计原则**
- `InboundItem` 和 `OutboundItem` 只存储 `materialId`
- 不存储物料编码、名称、规格、单位等字段
- 防止物料信息变更后历史数据不一致
2. **批量查询模式**
```java
List<Long> materialIds = items.stream().map(Item::getMaterialId).collect(Collectors.toList());
Map<Long, MaterialInfoDTO> materialInfoMap = materialFillService.getMaterialInfoMap(materialIds);
```
- 避免 N+1 查询问题
- 一次查询所有物料信息,性能更优
3. **Service 层填充**
- 所有物料信息填充逻辑在 Service 层处理
- Controller 只负责返回 DTO
- 不放在 Mapper 或 Controller 层
### 修改的 Service 类(共 6 个)
| Service | 方法 | 用途 |
|---------|------|------|
| InboundServiceImpl | executeInbound(), cancel() | 入库/冲销时记录流水 |
| OutboundServiceImpl | executeOutbound(), cancel() | 出库/冲销时记录流水 |
| FinAccountsAutoServiceImpl | createApFromInbound(), cancelApFromInbound() | 采购应付联动 |
| FinAccountsAutoServiceImpl | createArFromOutbound(), cancelArFromOutbound() | 销售应收联动 |
| HomeServiceImpl | getLatestNews() | 首页动态显示 |
| DeliveryServiceImpl | confirmOutbound() | 发货确认 |
### 物料类型字典
- Dict Type: `material_type`
- 值:`P`-原材料,`SA`-半成品,`FG`-成品
- SQL 脚本:`scripts/postgresql/22-material-type-dict.sql`
### Git 状态
- 所有修改已 commit13+ commits
- **禁止 push** - 用户明确要求
- 分支:master
## 物料选择器(Material Selector
新增物料选择器功能,用于入库/出库操作时弹窗选物料。
### 接口
| 接口 | 位置 | 数据源 | 仓库参数 |
|------|------|--------|---------|
| `POST /im/inbound/material-selector` | InboundController | md_material | 不需要 |
| `POST /im/outbound/material-selector` | OutboundController | im_stock JOIN md_material | 需要 warehouseId |
### 请求参数(MaterialSelectorReqDTO → md.material.dto
- `categoryId` — 0=常用物料,>0=按分类筛选
- `keyword` — 物料编码/名称/规格关键字
- `warehouseId` — 出库场景需要
- 继承 `PageQuery`pageNum, pageSize
### 常用物料 TOP10 逻辑
- **口径:** 近 30 天出入库明细条目数最多的 10 个物料
- **入库:** `im_inbound_item` GROUP BY material_id ORDER BY COUNT(*) DESC LIMIT 10
- **出库:** `im_outbound_item` 同上
- **SQL 放 Mapper XML**(方便后续扩展)
### 分类筛选逻辑
- **入库:** MyBatis Plus LambdaQueryWrapper 查 `md_material` 表,按 `category_id` + `keyword` 分页
- **出库:** XML 联表 `im_stock JOIN md_material`,按 `category_id` + `keyword` + `warehouseId` 分页,只查库存 > 0 的数据
### 响应
- 复用 `StockPageDTO`im.stock.dto
- 物料编码/名称/规格/单位/分类等从 `MaterialFillService` 填充
### 新增文件(7个)
| 文件 | 路径 |
|------|------|
| MaterialSelectorReqDTO | md.material.dto |
| MaterialSelectorService | md.material.service |
| MaterialSelectorServiceImpl | md.material.service.impl |
| InboundItemMapper.xml | resources/mapper/im/ |
| OutboundItemMapper.xml | resources/mapper/im/ |
| StockMapper.xml | resources/mapper/im/ |
| | |
### 修改文件(5个)
| 文件 | 改动 |
|------|------|
| InboundItemMapper.java | + selectRecentMaterialIds() |
| OutboundItemMapper.java | + selectRecentMaterialIds() |
| StockMapper.java | + selectStockPage() / countStockPage() |
| InboundController.java | + /material-selector 端点 |
| OutboundController.java | + /material-selector 端点 |
## 历史单据创建人名称
### 改动
- **InboundHistoryItemDTO** — 新增 `creatorName` 字段
- **OutboundHistoryItemDTO** — 新增 `creatorName` 字段
- **InboundServiceImpl.listHistory()** — 收集 creators → 批量查 sys_user(username→nickname) → 填充
- **OutboundServiceImpl.listHistory()** — 同上
### 逻辑
1. 从单据列表收集所有 `creator`(用户名)
2. `userService.lambdaQuery().in(User::getUsername, creators).list()`
3. 转 `Map<String, String>`username → nickname
4. 逐行 `dto.setCreatorName()`
5. 一次 SQL,不 N+1
## 实体名称字段清理(SupplierName/CustomerName/WarehouseName
### 背景
单据实体(Inbound、Outbound、PurchaseOrder、SalesOrder、Delivery)及其 Item 实体中,之前还存储了供应商名称、客户名称、仓库名称等冗余字段。本次清理全部移除,只存 ID,显示名称通过 master-data 查询填充。
### 涉及实体
- **Inbound** — 移除 `supplierName`, `warehouseName`
- **Outbound** — 移除 `customerName`, `warehouseName`
- **PurchaseOrder** — 移除 `supplierName`
- **PurchaseOrderItem** — 移除了 `materialCode`, `materialName`, `spec`, `unit`(之前已完成)
- **SalesOrder** — 移除 `customerName`
- **SalesOrderItem** — 移除了物料冗余字段(之前已完成)
- **Delivery** — 移除 `customerName`
- **DeliveryItem** — 移除了物料冗余字段(之前已完成)
### DTO 改动
- **InboundSaveReqDTO / PurchaseInboundSaveReqDTO / ProductionInboundSaveReqDTO** — 只保留 supplierId/warehouseId,移除 supplierName/warehouseName
- **OutboundSaveReqDTO / SalesOutboundSaveReqDTO / MaterialOutboundSaveReqDTO** — 只保留 customerId/warehouseId,移除 customerName/warehouseName
- **InboundHistoryItemDTO / OutboundHistoryItemDTO** — **保留** display name 字段(响应 DTO 需要显示),通过 master-data lookup 填充
### 不做改动
- **Ar.java / Ap.java** — 保留 customerName / supplierName 作为财务历史快照
- **InboundHistoryItemDTO / OutboundHistoryItemDTO** — 保留 name 字段供前端展示
### 主要 Service 改动
| 文件 | 改动内容 |
|------|---------|
| **InboundServiceImpl.java** | 注入 WarehouseMapper;移除 entity setSupplierName/setWarehouseNamehistory DTO 名通过 supplierMapper + warehouseMapper 批量 lookupautoInboundFromOrder 用 supplierId 取代 supplierNameupdatePurchaseOrderAfterInbound 用 supplierId 查询 |
| **OutboundServiceImpl.java** | 注入 WarehouseMapper;移除 entity setCustomerNamehistory DTO 名通过 customerMapper + warehouseMapper 批量 lookup |
| **FinAccountsAutoServiceImpl.java** | `createApFromInbound`/`cancelApFromInbound` 使用 supplierMapper 查询 supplierName 填充 Ap`createArFromOutbound`/`cancelArFromOutbound` 使用 customerMapper 查询 customerName |
| **PurchaseOrderServiceImpl.java** | `setSupplierName(reqDTO.getSupplierName())` → `setSupplierId(reqDTO.getSupplierId())` |
| **SalesOrderServiceImpl.java** | `setCustomerName(reqDTO.getCustomerName())` → `setCustomerId(reqDTO.getCustomerId())` |
| **DeliveryServiceImpl.java** | `setCustomerName(order.getCustomerName())` → `setCustomerId(order.getCustomerId())`item 用 `materialFillService` 填充物料信息 |
### 控制器查询条件
- PurchaseOrderController / SalesOrderController / DeliveryController — 查询条件从名称改为 ID
### 编译验证
- `mvn clean compile` ✅ — 零错误
## 集成测试(InboundOutboundIntegrationTest
### 文件路径
`src/test/java/com/witsoft/erp/im/InboundOutboundIntegrationTest.java`
### 设计
- 使用 `TestRestTemplate``webEnvironment = RANDOM_PORT`
- `@TestMethodOrder(MethodOrderer.OrderAnnotation.class)` 按顺序执行
- 复用已有的 `Result<T>` 泛型返回包装类
### 测试覆盖(11 个用例)
| 序号 | 端点 | 说明 |
|------|------|------|
| 1 | POST /erp/system/user/login | 登录获取 Bearer token |
| 2 | POST /erp/im/inbound/production | 生产入库(2 行物料) |
| 3 | POST /erp/im/inbound/purchase | 采购入库(含单价) |
| 4 | POST /erp/im/inbound/history-list | 查询入库历史 |
| 5 | POST /erp/im/outbound/material | 领料出库 |
| 6 | POST /erp/im/outbound/sales | 销售出库(含单价) |
| 7 | POST /erp/im/outbound/history-list | 查询出库历史 |
| 8 | POST /erp/im/inbound/auto-from-order | 自动入库(基于采购订单) |
| 9 | POST /erp/im/stock/transaction/page | 查询库存流水 |
| 10 | DELETE /erp/im/inbound/{id} | 撤销入库单 |
| 11 | DELETE /erp/im/outbound/{id} | 撤销出库单 |
### 注意事项
- `application.yml` 中 `server.servlet.context-path: /erp`,所有路径须带 `/erp` 前缀
- 测试需要准备基础数据:物料 ID=3/4、供应商 ID=1、客户 ID=1、仓库 ID=1、采购订单 ID=1
- 当前 `authToken` 未通过 TestRestTemplate 的 basic auth,走的是 token-auth 模式
- 登录密码写的是 `***`,需要按实际数据库密码修改 `TEST_PASSWORD` 常量
## Controller 集成测试(TestRestTemplate
### 现有测试文件
| 测试类 | 路径 | 用例数 | 覆盖 Controller |
|--------|------|--------|----------------|
| InboundOutboundIntegrationTest | `im/InboundOutboundIntegrationTest.java` | 11 | Inbound + Outbound(合并) |
| StockControllerTest | `im/stock/StockControllerTest.java` | 17 | StockController |
| StocktakeControllerTest | `im/stocktake/StocktakeControllerTest.java` | 17 | StocktakeController |
| InboundControllerTest | `im/inbound/InboundControllerTest.java` | 21 | InboundController |
| OutboundControllerTest | `im/outbound/OutboundControllerTest.java` | 21 | OutboundController |
### 测试设计模式(所有测试统一)
1. **TestRestTemplate + RANDOM_PORT** — 自动分配端口,避免冲突
2. **@TestMethodOrder(OrderAnnotation.class)** — 按 Order 顺序执行
3. **CONTEXT_PATH = "/erp"** — 手动拼接,因为自动 context-path 处理不可靠
4. **assumeToken() 守卫** — 登录失败后通过 `Assumptions.assumeTrue(authToken != null)` 跳过后续测试,避免 403
5. **密码可配置** — `System.getProperty("test.password", "admin123")`,通过 `-Dtest.password=xxx` 覆盖
6. **url() 辅助方法** — `"http://localhost:" + port + CONTEXT_PATH + path`
### InboundControllerTest21 用例)
| 序号 | 端点 | 验证 |
|------|------|------|
| 1 | POST /system/user/login | 登录获取 Bearer token |
| 2-3 | POST /im/inbound/material-selector | 物料选择器(分类筛选) |
| 4-6 | POST /im/inbound | 新增 + 明细为空/类型为空校验边界 |
| 7-8 | GET /im/inbound/{id} | 详情 / 不存在返回 null |
| 9 | GET /im/inbound/{id}/items | 明细列表 |
| 10 | PUT /im/inbound | 修改 |
| 11-12 | PUT /im/inbound/{id}/cancel | 撤销 / 重复撤销 400 |
| 13-14 | DELETE /im/inbound/{id} | 删除 |
| 15-16 | POST /im/inbound/page | 分页(全查/仓库筛选) |
| 17 | POST /im/inbound/history-list | 历史明细列表 |
| 18 | POST /im/inbound/production | 生产入库 |
| 19-20 | POST /im/inbound/purchase | 采购入库 / 供应商为空 400 |
| 21 | POST /im/inbound/auto-from-order | 自动入库-订单不存在 400 |
### OutboundControllerTest21 用例)
| 序号 | 端点 | 验证 |
|------|------|------|
| 1 | POST /system/user/login | 登录 |
| 2-3 | POST /im/outbound/material-selector | 物料选择器 |
| 4-6 | POST /im/outbound | 新增 + 明细为空/客户为空校验 |
| 7-8 | GET /im/outbound/{id} | 详情 / 不存在 |
| 9 | GET /im/outbound/{id}/items | 明细 |
| 10 | PUT /im/outbound | 修改 |
| 11-12 | PUT /im/outbound/{id}/cancel | 撤销 / 重复撤销 400 |
| 13-14 | DELETE /im/outbound/{id} | 删除 |
| 15-16 | POST /im/outbound/page | 分页(全查/客户筛选) |
| 17 | POST /im/outbound/history-list | 历史明细 |
| 18-19 | POST /im/outbound/material | 领料出库 / 明细为空 400 |
| 20-21 | POST /im/outbound/sales | 销售出库 / 客户为空 400 |
### StockControllerTest17 用例)
覆盖 StockController 全部 4 个端点:
| 序号 | 端点 | 验证 |
|------|------|------|
| 1 | POST /system/user/login | 登录 |
| 2-6 | POST /im/stock/page | 空参数、仓库筛选、关键字、无匹配关键字、自定义分页 |
| 7-11 | POST /im/stock/list | 空、仓库、关键字、预警筛选、无匹配关键字 |
| 12-13 | GET /im/stock/{materialId} | 存在/不存在 |
| 14-16 | PUT /im/stock/safe-qty | 正常设置、物料不存在 400、参数校验 |
| 17 | POST /im/stock/page | DTO 字段完整性验证 |
### StocktakeControllerTest17 用例)
覆盖 StocktakeController 全部 10 个端点:
| 序号 | 端点 | 验证 |
|------|------|------|
| 1 | POST /system/user/login | 登录 |
| 2-3 | POST /im/stocktake | 新增(草稿)/ 明细为空 400 |
| 4-5 | GET /im/stocktake/{id} | 详情 / 不存在 |
| 6 | GET /im/stocktake/{id}/items | 明细(含物料信息) |
| 7 | PUT /im/stocktake | 修改 |
| 8-9 | PUT /im/stocktake/{id}/audit | 审核 / 重复审核 400 |
| 10-11 | PUT /im/stocktake/{id}/cancel | 作废 |
| 12 | DELETE /im/stocktake/{id} | 删除 |
| 13 | POST /im/stocktake/quick-save | 快速盘点(创建即审核) |
| 14-15 | POST /im/stocktake/page | 分页(筛选/空 body |
| 16-17 | POST /im/stocktake/history-list | 历史明细(空条件) |
### 已知问题
- **InboundController.getPage() 有两个 @RequestBody** — 测试用 Map 代理
- **OutboundController.getPage() 同理**
- **StocktakeController.getPage() 同理**
- 密码默认 `admin123`,通过 `-Dtest.password=xxx` 配置
- IntelliJ 解析 `junit-platform-launcher:1.8.2` 失败,已在 pom.xml 中添加依赖
+422
View File
@@ -0,0 +1,422 @@
# 2026-05-27 会话记录
## 问题修复
### 1. MyBatis-Plus 空集合 IN 子句异常
**问题:** `selectBatchIds` 传入空集合时生成 `IN ()` 非法 SQL,导致 JSQLParser 解析失败。
**修复位置:**
- `InboundServiceImpl.listHistory()` - 供应商、仓库查询
- `OutboundServiceImpl.listHistory()` - 客户、仓库查询
**解决方案:** 使用三元表达式避免空集合查询
```java
Map<Long, String> supplierNameMap = supplierIds.isEmpty() ? new HashMap<>() :
supplierMapper.selectBatchIds(supplierIds).stream()
.collect(Collectors.toMap(Supplier::getId, Supplier::getName));
```
---
### 2. JavaScript 精度丢失问题
**问题:** 雪花算法生成的 Long 类型 ID(如 `2059467259520360450`)超出 JS 安全整数范围,前端接收后精度丢失为 `2059467259520360400`
**解决方案:** 创建 `JacksonConfig.java`,全局配置 Long 类型序列化为字符串
```java
@Configuration
public class JacksonConfig {
@Bean
public Module longToStringModule() {
return new SimpleModule()
.addSerializer(Long.class, ToStringSerializer.instance)
.addSerializer(long.class, ToStringSerializer.instance);
}
}
```
**效果:**
- `Long` 类型 → 字符串(`"2059467259520360450"`
- `Integer` 类型 → 保持数字(`code: 200`
---
### 3. creatorName 为 null
**根因:** `BaseEntity.creator` 字段自动填充时存的是用户昵称(如"管理员"),但查询逻辑错误地用 `creator` 的值去匹配 `sys_user.username` 字段。
**修复:**
1. `MyMetaObjectHandler.java` - 添加默认值兜底:昵称 → 登录名 → "系统"
2. `InboundServiceImpl` / `OutboundServiceImpl` - 直接使用 `creator` 字段值作为 `creatorName`
---
### 4. 安全库存字段命名
**问题:** `StockSafeQtyReqDTO.safeQty` 实际含义是最小安全库存,字段名不准确。
**修复:**
- 字段名:`safeQty``minSafeQty`
- 注释和验证提示同步更新
---
### 5. 库存详情接口填充物料信息
**需求:** `/im/stock/{materialId}` 接口需要返回物料相关信息。
**实现:**
1. 新建 `StockDetailDTO` - 包含库存、物料、仓库信息
2. `StockService.getStockDetail()` - 使用 `MaterialFillService` 填充物料信息
3. 查询仓库信息填充仓库名称
---
## 部署操作
### 测试环境 Docker 重新部署
**命令:**
```bash
cd /home/yangxuan/Projects/IdeaProjects/tiny-erp
docker compose stop app
docker compose rm -f app
docker compose build --no-cache app
docker compose up -d app
```
**状态:** ✅ 部署成功,健康检查通过
---
## 待办事项
- [x] 清理 `im_inbound_item` / `im_outbound_item` 脏数据(主表记录不存在的明细)
- [x] 考虑添加外键约束防止未来产生脏数据
- [x] 创建测试环境部署文档 → `/home/yangxuan/Projects/IdeaProjects/tiny-erp/doc/测试环境部署文档.md`
- [x] 强调 Maven 构建前提(`mvn clean install`
# 2026-05-27 会话记录
## 问题修复
### 1. MyBatis-Plus 空集合 IN 子句异常
**问题:** `selectBatchIds` 传入空集合时生成 `IN ()` 非法 SQL,导致 JSQLParser 解析失败。
**修复位置:**
- `InboundServiceImpl.listHistory()` - 供应商、仓库查询
- `OutboundServiceImpl.listHistory()` - 客户、仓库查询
**解决方案:** 使用三元表达式避免空集合查询
```java
Map<Long, String> supplierNameMap = supplierIds.isEmpty() ? new HashMap<>() :
supplierMapper.selectBatchIds(supplierIds).stream()
.collect(Collectors.toMap(Supplier::getId, Supplier::getName));
```
---
### 2. JavaScript 精度丢失问题
**问题:** 雪花算法生成的 Long 类型 ID(如 `2059467259520360450`)超出 JS 安全整数范围,前端接收后精度丢失为 `2059467259520360400`
**解决方案:** 创建 `JacksonConfig.java`,全局配置 Long 类型序列化为字符串
```java
@Configuration
public class JacksonConfig {
@Bean
public Module longToStringModule() {
return new SimpleModule()
.addSerializer(Long.class, ToStringSerializer.instance)
.addSerializer(long.class, ToStringSerializer.instance);
}
}
```
**效果:**
- `Long` 类型 → 字符串(`"2059467259520360450"`
- `Integer` 类型 → 保持数字(`code: 200`
---
### 3. creatorName 为 null
**根因:** `BaseEntity.creator` 字段自动填充时存的是用户昵称(如"管理员"),但查询逻辑错误地用 `creator` 的值去匹配 `sys_user.username` 字段。
**修复:**
1. `MyMetaObjectHandler.java` - 添加默认值兜底:昵称 → 登录名 → "系统"
2. `InboundServiceImpl` / `OutboundServiceImpl` - 直接使用 `creator` 字段值作为 `creatorName`
---
### 4. 安全库存字段命名
**问题:** `StockSafeQtyReqDTO.safeQty` 实际含义是最小安全库存,字段名不准确。
**修复:**
- 字段名:`safeQty``minSafeQty`
- 注释和验证提示同步更新
---
### 5. 库存详情接口填充物料信息
**需求:** `/im/stock/{materialId}` 接口需要返回物料相关信息。
**实现:**
1. 新建 `StockDetailDTO` - 包含库存、物料、仓库信息
2. `StockService.getStockDetail()` - 使用 `MaterialFillService` 填充物料信息
3. 查询仓库信息填充仓库名称
---
### 6. 安全库存接口统一
**需求:** 将安全库存相关接口从 `MaterialController` 统一迁移到 `StockController`
**修改内容:**
-`StockController` - 新增 3 个接口(设置、批量设置、清除安全库存)
-`StockService` / `StockServiceImpl` - 实现新增方法
-`MaterialController` - 删除 2 个安全库存接口
-`MaterialService` / `MaterialServiceImpl` - 删除相关方法
-`MaterialMapper` / `MaterialMapper.xml` - 删除相关 SQL
**新 API**
- `PUT /im/stock/safe-qty` - 设置安全库存(单个)
- `PUT /im/stock/safe-qty/batch` - 批量设置安全库存
- `PUT /im/stock/{materialId}/safe-qty/clear` - 清除安全库存
---
### 7. 库存详情接口填充 minSafeQty
**问题:** `StockServiceImpl.getStockDetail()` 漏掉了 `minSafeQty` 字段填充。
**修复:** 添加 `dto.setMinSafeQty(material.getMinSafeQty());`
---
### 8. /home/welcome 接口数据写死
**问题:** 用户名、公司名、欢迎语都是硬编码。
**修复:**
- 使用 `UserContext.getNickname()` 获取真实用户名
- 使用 `TenantContext.getTenantName()` 获取企业名称
- 保留兜底逻辑("用户"、"企业"
---
## 数据库变更
### 增量脚本执行
**脚本 1** `scripts/postgresql/fix-fin-add-order-date.sql`
- `fin_ar` 表:添加 `order_date` 字段(DATE 类型)
- `fin_ap` 表:添加 `order_date` 字段(DATE 类型)
- 数据初始化:将 `create_time` 转换为日期赋值给 `order_date`
**脚本 2** `scripts/postgresql/fix-write-off-add-updater.sql`
- `fin_ar_write_off` 表:添加 `updater``update_time` 字段
- `fin_ap_write_off` 表:添加 `updater``update_time` 字段
- 数据初始化:将 `creator`/`create_time` 赋值给 `updater`/`update_time`
**执行方式:**
```bash
docker compose exec db psql -U postgres -d tinyerp \
-f /docker-entrypoint-initdb.d/migrations/20260527_add_column.sql
```
---
## 文档更新
### 1. 部署文档合并
- ✅ 将 `~/tiny/测试环境部署文档.md` 合并到 `DOCKER.md`
- ✅ 新增 4 个部署场景(首次部署、重新部署、只重启、彻底重置)
- ✅ 强调 Maven 构建前提(`mvn clean install -DskipTests`
- ✅ 完善故障排查表格
- ❌ 删除重复文档 `~/tiny/测试环境部署文档.md`
### 2. 库存接口文档
- ✅ 创建 `doc/stock-api.md`
- 包含 6 个库存管理接口 + 1 个相关接口
- 字段说明、物料类型枚举、注意事项
---
## 部署操作
### 测试环境 Docker 重新部署
**命令:**
```bash
cd /home/yangxuan/Projects/IdeaProjects/tiny-erp
mvn clean install -DskipTests
docker compose stop app
docker compose rm -f app
docker compose build --no-cache app
docker compose up -d app
```
**状态:** ✅ 部署成功,健康检查通过
---
## 经验教训
1. **Maven 构建前提**Docker 镜像构建复制本地 `target/` 目录,必须先执行 `mvn clean install`
2. **Long 类型精度丢失**:雪花算法 ID 超出 JS 安全范围,全局序列化为字符串
3. **空集合 IN 子句**MyBatis-Plus `selectBatchIds` 不处理空集合,需要手动判断
4. **creator 字段含义**:自动填充存的是昵称,不是用户名,查询时要注意匹配字段
5. **接口职责分离**:库存相关操作统一在 `StockController`,物料相关在 `MaterialController`
---
## 数据库环境(双数据库)
| 环境 | 类型 | 端口 | 连接方式 | sys_tenant.tenant_name |
|------|------|------|----------|------------------------|
| **测试库** | Docker 容器 tiny-erp-db (postgres:18.1) | 未暴露 | 仅 Docker 内部访问 (db:5432) | 默认租户 → 已改为**水晶科技有限公司** |
| **本地库** | WSL apt 安装的 pgsql 16 | localhost:31983 | IntelliJ / psql 直接连接 | 水晶科技有限公司 |
- Docker 应用 `tiny-erp-app` 连接的是**测试库**(Docker 内部 `tiny-erp-db`
- `application-local.yml``localhost:31983`(本地库),绑定 `server.port=8081`
- `application-test.yml``db:5432`(测试库),Docker 运行时通过 `SPRING_PROFILES_ACTIVE=test` 激活
## 待办事项
- [ ] 更新 Java 实体类(`FinAr``FinAp``FinArWriteOff``FinApWriteOff`
- [ ] 记录数据库变更日志到 `doc/数据库变更日志.md`
- [ ] 考虑添加外键约束防止 `im_inbound_item` / `im_outbound_item` 脏数据
---
## 新增功能
### 9. 物料选择器返回上次单价
**需求:** 采购入库/销售出库时单价必填,物料选择器返回上次单价供用户参考。
**修改内容:**
1.`StockPageDTO` - 新增 `lastInboundPrice``lastOutboundPrice` 字段
2.`Material` 实体 - 新增 `lastInboundPrice``lastOutboundPrice` 字段(数据库已有 `last_inbound_price``last_outbound_price`
3.`MaterialSelectorServiceImpl` - 实现批量查询和填充逻辑
- `queryLastInboundPrices()` - 批量查询上次入库单价
- `queryLastOutboundPrices()` - 批量查询上次出库单价
- `pageInboundMaterial()` / `pageOutboundMaterial()` - 填充单价字段
- 常用物料场景也支持单价填充
**API 响应示例:**
```json
{
"materialId": 4,
"materialName": "测试物料 A",
"lastInboundPrice": 12.50, // 采购入库参考
"lastOutboundPrice": 18.80 // 销售出库参考
}
```
**前端使用:**
- 采购入库单:显示 `lastInboundPrice` 作为参考,单价必填
- 销售出库单:显示 `lastOutboundPrice` 作为参考,单价必填
- 后端自动填充逻辑:如果用户未填单价,保存时自动使用上次单价
**测试验证:** ✅ 66 个集成测试全部通过(物料 20 + 入库 23 + 出库 23
---
### 10. 首页动态数量格式化
**问题:** 首页动态显示的数量带有末尾多余的 0(如 `10.5000 个`)。
**修复:** `HomeServiceImpl.getLatestNews()` 中使用 `stripTrailingZeros().toPlainString()` 格式化数量
```java
// 修改前
String.format("%s入库%s%s", materialName, item.getQuantity(), unit)
// 修改后
String.format("%s入库%s%s", materialName, item.getQuantity().stripTrailingZeros().toPlainString(), unit)
```
**效果对比:**
| 修改前 | 修改后 |
|--------|--------|
| `测试物料入库 10.5000 个` | `测试物料入库 10.5 个` |
| `测试物料出库 100.0000 个` | `测试物料出库 100 个` |
---
## 问题修复
### 11. operator 字段违反 NOT NULL 约束
**问题:** 出入库单自动生成应收/应付时,`fin_ar_receipt` 表的 `operator` 字段为 null,导致插入失败。
**错误日志:**
```
ERROR: null value in column "operator" of relation "fin_ar_receipt" violates not-null constraint
```
**根因:** `MyMetaObjectHandler` 自动填充处理器没有填充 `operator` 字段,当 `UserContext.getUserName()` 返回 null 时导致插入失败。
**修复方案:**`MyMetaObjectHandler.insertFill()` 中添加 `operator` 字段的自动填充,但**仅在用户未设置时才填充**:
```java
// 操作人(operator 字段,用于财务收款/付款单)- 仅当未设置时自动填充
String operatorName = UserContext.getUserName();
if (operatorName == null || operatorName.isEmpty()) {
operatorName = "管理员";
}
// 检查是否已有值,有值则不覆盖
if (metaObject.hasGetter("operator") && metaObject.getValue("operator") == null) {
this.strictInsertFill(metaObject, "operator", String.class, operatorName);
}
```
**行为说明:**
- ✅ 用户手动设置 `operator` → 保留用户设置的值
- ✅ 用户未设置 `operator` → 自动填充当前登录用户(兜底"管理员")
- ✅ 自动生成场景(无用户上下文)→ 自动填充"管理员"
**影响范围:** 适用于 `fin_ar_receipt`(收款单)和 `fin_ap_payment`(付款单)等需要 `operator` 的表
---
## 测试进展
### 集成测试覆盖率
| 测试类 | 测试数 | 通过 | 失败 | 覆盖率 |
|--------|--------|------|------|--------|
| `MaterialControllerTest` | 20 | 20 | 0 | 100% ✅ |
| `InboundControllerTest` | 23 | 23 | 0 | 100% ✅ |
| `OutboundControllerTest` | 23 | 23 | 0 | 100% ✅ |
| **总计** | **66** | **66** | **0** | **100%** ✅ |
**测试覆盖的功能:**
- ✅ 物料 CRUD、分页查询、详情查询
- ✅ 采购入库单保存、自动填充单价、更新物料最后入库价
- ✅ 销售出库单保存、自动填充单价、更新物料最后出库价
- ✅ 编码唯一性校验、必填字段校验、BigDecimal 精度比较
---
## 经验教训
1. **BigDecimal 比较**:测试断言使用 `compareTo()` 而非 `equals()`,避免精度差异(`10.50` vs `10.5000`
2. **自动填充优先级**:用户手动设置的值优先于自动填充,`MyMetaObjectHandler` 需要先检查字段是否已有值
3. **批量查询优化**:物料选择器使用 `selectBatchIds` 批量查询上次单价,避免 N+1 查询问题
4. **数量格式化**`BigDecimal` 转字符串时使用 `stripTrailingZeros().toPlainString()` 去除末尾多余的 0,同时避免科学计数法
---
## 待办事项
- [ ] 前端对接物料选择器接口,显示上次单价参考
- [ ] 验证采购入库/销售出库单价必填的前端校验
- [ ] 运行完整测试套件确保无回归
- [ ] 记录数据库变更日志到 `doc/数据库变更日志.md`
+330
View File
@@ -0,0 +1,330 @@
## 10:50 — AI 调用记录方案评估
**话题:** 记录 AI 调用(session_id, tokens, 返回结果),复用操作日志机制
**评估结论:方案 A — 扩展 OperLog**
- `sys_oper_log` 新增 5 字段:`ai_session_id`, `ai_model`, `prompt_tokens`, `completion_tokens`, `total_tokens`
- `module` 复用为 `"AI识别"` / `"AI对话"` 区分业务
- 复用现有 OperLog 全部基础设施(service/mapper/controller/分页/查询)
- 工作量最小,约 20min
- 方案已确认,待实现
## 10:50 — Git 约定提醒
提示 commit 时必须附带 commit message,让用户可直接复制运行。
## 11:08~11:18 — AI 调用记录实现 ✅
**改动点:**
1. `scripts/postgresql/10-system.sql` — DDL 新增 `ai_session_id`, `ai_model`, `prompt_tokens`, `completion_tokens`, `total_tokens`
2. `scripts/postgresql/fix-ai-oper-log.sql` — 迁移脚本(新增)
3. `OperLog.java` — 实体添加 5 个对应字段
4. `AiServiceImpl.java` — 注入 `OperLogService`,在 `chatText()`/`chatWithImages()` 调用前后记录日志(含 sessionId, tokens, 耗时, 输入/输出摘要)
5. `AiChatResponseDTO` — 新增 `sessionId` 字段
6. `DeepSeekChatRequestDTO` — 新增 `sessionId` 字段(`@JsonIgnore`,仅用于日志传递)
**执行迁移:** 本地库(localhost:31983)跑 `fix-ai-oper-log.sql`
**测试结果:**`Tests run: 2, Failures: 0, Errors: 0` — 日志成功写入 sys_oper_logai_model=qwen3.5-plus 等字段正确)
## 13:00~13:06 — 测试库执行 AI 迁移 ✅
- 本地 WSL Docker 可连接测试库(`docker exec -i tiny-erp-db psql -U postgres -d tinyerp`
- 执行 `fix-ai-oper-log.sql`5 个 AI 字段(`ai_session_id`, `ai_model`, `prompt_tokens`, `completion_tokens`, `total_tokens`)已添加
- 验证本地库(localhost:31983)和测试库(Docker db:5432)字段均存在 ✅
## 13:08~13:10 — 日志文件冲突问题 → 方案A
**问题:** IDEA 和 Docker 都在 WSL 同一机器运行,`./logs/` 会互相覆盖
**方案A** docker-compose 挂载路径改为 `./logs-docker:/app/logs`
- `.gitignore` 添加 `logs-docker/`
- `Dockerfile` 保留 root 运行(无 `USER appuser`
- 已实施 ✅
## 13:11~13:13 — deploy-test.sh 脚本
创建 `deploy-test.sh` 一键部署脚本:
1. `mvn clean install -DskipTests`
2. `docker compose stop/rm/build/up app`
3. `curl health` 自动验证(失败重试 15s
## 13:14~13:22 — 测试目录规范化
**问题:** 大部分测试包路径缺少 `module` 层级,与源码不一致
- 移动所有测试到 `com.witsoft.erp.module.*` 包下
- 统一先删旧包(git rm)、再建新包、再写入
- 运行全量测试通过 ✅
- `test.base.BaseControllerTest` 保留在 `com.witsoft.erp.test.base`(基建归 test,不归 module
## 13:38~14:11 — docs/ 目录全面清理
**整理方向:**
| 操作 | 说明 |
|------|------|
| ✅ 合并 API 规范到项目规范.md | 删除 `docs/API/` |
| ✅ 删除 `docs/数据库/` | 以 SQL 脚本为唯一来源 |
| ✅ 文档按模块移入对应子目录 | `06-AI单据识别需求.md``需求/AI模块``物料信息填充公共服务总结.md``设计/主数据模块` |
| ✅ 按模块独立编号 | 全局连续 → 每个模块 01- 起编 |
| ✅ 测试文件重排序 | 按 登录→首页→物料→字典→入库出库→库存盘点→操作日志 排列 |
| ✅ README.md 同步 | 目录结构、版本历史逐一同步,标注"(预留)"空目录 |
**编号规则变更:** 跨模块连续编号(旧)→ 按模块独立编号(新),新增文档只加模块内序号,不碰其他模块。
## 14:14 — UserContext 使用指南.md 文件缺失
文档中引用 `设计/系统模块/UserContext 使用指南.md`,但实际文件不存在(被 `yangxuan/``docs/` 重命名遗漏)。已补充。
## 10:50 — AI 调用记录方案评估
**话题:** 记录 AI 调用(session_id, tokens, 返回结果),复用操作日志机制
**评估结论:方案 A — 扩展 OperLog**
- `sys_oper_log` 新增 5 字段:`ai_session_id`, `ai_model`, `prompt_tokens`, `completion_tokens`, `total_tokens`
- `module` 复用为 `"AI识别"` / `"AI对话"` 区分业务
- 复用现有 OperLog 全部基础设施(service/mapper/controller/分页/查询)
- 工作量最小,约 20min
- 方案已确认,待实现
## 10:50 — Git 约定提醒
提示 commit 时必须附带 commit message,让用户可直接复制运行。
## 11:08~11:18 — AI 调用记录实现 ✅
**改动点:**
1. `scripts/postgresql/10-system.sql` — DDL 新增 `ai_session_id`, `ai_model`, `prompt_tokens`, `completion_tokens`, `total_tokens`
2. `scripts/postgresql/fix-ai-oper-log.sql` — 迁移脚本(新增)
3. `OperLog.java` — 实体添加 5 个对应字段
4. `AiServiceImpl.java` — 注入 `OperLogService`,在 `chatText()`/`chatWithImages()` 调用前后记录日志(含 sessionId, tokens, 耗时, 输入/输出摘要)
5. `AiChatResponseDTO` — 新增 `sessionId` 字段
6. `DeepSeekChatRequestDTO` — 新增 `sessionId` 字段(`@JsonIgnore`,仅用于日志传递)
**执行迁移:** 本地库(localhost:31983)跑 `fix-ai-oper-log.sql`
**测试结果:**`Tests run: 2, Failures: 0, Errors: 0` — 日志成功写入 sys_oper_logai_model=qwen3.5-plus 等字段正确)
## 13:00~13:06 — 测试库执行 AI 迁移 ✅
- 本地 WSL Docker 可连接测试库(`docker exec -i tiny-erp-db psql -U postgres -d tinyerp`
- 执行 `fix-ai-oper-log.sql`5 个 AI 字段(`ai_session_id`, `ai_model`, `prompt_tokens`, `completion_tokens`, `total_tokens`)已添加
- 验证本地库(localhost:31983)和测试库(Docker db:5432)字段均存在 ✅
## 13:08~13:10 — 日志文件冲突问题 → 方案A
**问题:** IDEA 和 Docker 都在 WSL 同一机器运行,`./logs/` 会互相覆盖
**方案A** docker-compose 挂载路径改为 `./logs-docker:/app/logs`
- `.gitignore` 添加 `logs-docker/`
- `Dockerfile` 保留 root 运行(无 `USER appuser`
- 已实施 ✅
## 13:11~13:13 — deploy-test.sh 脚本
创建 `deploy-test.sh` 一键部署脚本:
1. `mvn clean install -DskipTests`
2. `docker compose stop/rm/build/up app`
3. `curl health` 自动验证(失败重试 15s
## 13:14~13:22 — 测试目录规范化
**问题:** 大部分测试包路径缺少 `module` 层级,与源码不一致
- 移动所有测试到 `com.witsoft.erp.module.*` 包下
- 统一先删旧包(git rm)、再建新包、再写入
- 运行全量测试通过 ✅
- `test.base.BaseControllerTest` 保留在 `com.witsoft.erp.test.base`(基建归 test,不归 module
## 13:38~14:11 — docs/ 目录全面清理
**整理方向:**
| 操作 | 说明 |
|------|------|
| ✅ 合并 API 规范到项目规范.md | 删除 `docs/API/` |
| ✅ 删除 `docs/数据库/` | 以 SQL 脚本为唯一来源 |
| ✅ 文档按模块移入对应子目录 | `06-AI单据识别需求.md``需求/AI模块``物料信息填充公共服务总结.md``设计/主数据模块` |
| ✅ 按模块独立编号 | 全局连续 → 每个模块 01- 起编 |
| ✅ 测试文件重排序 | 按 登录→首页→物料→字典→入库出库→库存盘点→操作日志 排列 |
| ✅ README.md 同步 | 目录结构、版本历史逐一同步,标注"(预留)"空目录 |
**编号规则变更:** 跨模块连续编号(旧)→ 按模块独立编号(新),新增文档只加模块内序号,不碰其他模块。
## 14:14 — UserContext 使用指南.md 文件缺失
文档中引用 `设计/系统模块/UserContext 使用指南.md`,但实际文件不存在(被 `yangxuan/``docs/` 重命名遗漏)。已补充。
## 14:18 — docs/测试 HTTP 文件重排序 ✅
按执行依赖逻辑重新编号:
| 序号 | 文件 | 说明 |
|------|------|------|
| 00 | 登录登出 | 先拿 token |
| 01 | 首页 API 测试 | 仪表盘概览 |
| 02 | 物料分页 | 基础数据查询 |
| 03 | 数据字典与映射 | 字典+翻译 |
| 04 | 入库出库 | 核心业务流程 |
| 05 | 实时库存&盘点 | 库存状态 |
| 06 | 操作日志 | 审计兜底 |
同步更新了 `docs/README.md`
## 14:24 — scripts/postgresql 目录组织讨论
**话题:** 杨轩问脚本目录是否可以按 ddl/dml/init 或按模块区分。
**分析结果:** 当前脚本目录的问题:
1. 编号混乱(00/03/10/20/21/22...99,无一致规则)
2. DDL/DML 混在一起(如 10-system.sql 既建表又插数据)
3. fix- 前缀不统一(26-material-last-price.sql 也是 ALTER 但没用 fix- 前缀)
**方案A(用户选中):** 二级目录 `ddl/``dml/``migration/``mock/`,根目录保留一个 `init.sql` 通过 `\i` 引用子目录文件(因为 `docker-entrypoint-initdb.d` 只处理扁平 .sql 文件)。
**待实现:** [not yet started — compaction happened before implementation]
## 10:50 — AI 调用记录方案评估
**话题:** 记录 AI 调用(session_id, tokens, 返回结果),复用操作日志机制
**评估结论:方案 A — 扩展 OperLog**
- `sys_oper_log` 新增 5 字段:`ai_session_id`, `ai_model`, `prompt_tokens`, `completion_tokens`, `total_tokens`
- `module` 复用为 `"AI识别"` / `"AI对话"` 区分业务
- 复用现有 OperLog 全部基础设施(service/mapper/controller/分页/查询)
- 工作量最小,约 20min
- 方案已确认,待实现
## 10:50 — Git 约定提醒
提示 commit 时必须附带 commit message,让用户可直接复制运行。
## 11:08~11:18 — AI 调用记录实现 ✅
**改动点:**
1. `scripts/postgresql/10-system.sql` — DDL 新增 `ai_session_id`, `ai_model`, `prompt_tokens`, `completion_tokens`, `total_tokens`
2. `scripts/postgresql/fix-ai-oper-log.sql` — 迁移脚本(新增)
3. `OperLog.java` — 实体添加 5 个对应字段
4. `AiServiceImpl.java` — 注入 `OperLogService`,在 `chatText()`/`chatWithImages()` 调用前后记录日志(含 sessionId, tokens, 耗时, 输入/输出摘要)
5. `AiChatResponseDTO` — 新增 `sessionId` 字段
6. `DeepSeekChatRequestDTO` — 新增 `sessionId` 字段(`@JsonIgnore`,仅用于日志传递)
**执行迁移:** 本地库(localhost:31983)跑 `fix-ai-oper-log.sql`
**测试结果:**`Tests run: 2, Failures: 0, Errors: 0` — 日志成功写入 sys_oper_logai_model=qwen3.5-plus 等字段正确)
## 13:00~13:06 — 测试库执行 AI 迁移 ✅
- 本地 WSL Docker 可连接测试库(`docker exec -i tiny-erp-db psql -U postgres -d tinyerp`
- 执行 `fix-ai-oper-log.sql`5 个 AI 字段(`ai_session_id`, `ai_model`, `prompt_tokens`, `completion_tokens`, `total_tokens`)已添加
- 验证本地库(localhost:31983)和测试库(Docker db:5432)字段均存在 ✅
## 13:08~13:10 — 日志文件冲突问题 → 方案A
**问题:** IDEA 和 Docker 都在 WSL 同一机器运行,`./logs/` 会互相覆盖
**方案A** docker-compose 挂载路径改为 `./logs-docker:/app/logs`
- `.gitignore` 添加 `logs-docker/`
- `Dockerfile` 保留 root 运行(无 `USER appuser`
- 已实施 ✅
## 13:11~13:13 — deploy-test.sh 脚本
创建 `deploy-test.sh` 一键部署脚本:
1. `mvn clean install -DskipTests`
2. `docker compose stop/rm/build/up app`
3. `curl health` 自动验证(失败重试 15s
## 13:14~13:22 — 测试目录规范化
**问题:** 大部分测试包路径缺少 `module` 层级,与源码不一致
- 移动所有测试到 `com.witsoft.erp.module.*` 包下
- 统一先删旧包(git rm)、再建新包、再写入
- 运行全量测试通过 ✅
- `test.base.BaseControllerTest` 保留在 `com.witsoft.erp.test.base`(基建归 test,不归 module
## 13:38~14:11 — docs/ 目录全面清理
**整理方向:**
| 操作 | 说明 |
|------|------|
| ✅ 合并 API 规范到项目规范.md | 删除 `docs/API/` |
| ✅ 删除 `docs/数据库/` | 以 SQL 脚本为唯一来源 |
| ✅ 文档按模块移入对应子目录 | `06-AI单据识别需求.md``需求/AI模块``物料信息填充公共服务总结.md``设计/主数据模块` |
| ✅ 按模块独立编号 | 全局连续 → 每个模块 01- 起编 |
| ✅ 测试文件重排序 | 按 登录→首页→物料→字典→入库出库→库存盘点→操作日志 排列 |
| ✅ README.md 同步 | 目录结构、版本历史逐一同步,标注"(预留)"空目录 |
**编号规则变更:** 跨模块连续编号(旧)→ 按模块独立编号(新),新增文档只加模块内序号,不碰其他模块。
## 14:14 — UserContext 使用指南.md 文件缺失
文档中引用 `设计/系统模块/UserContext 使用指南.md`,但实际文件不存在(被 `yangxuan/``docs/` 重命名遗漏)。已补充。
## 14:18 — docs/测试 HTTP 文件重排序 ✅
按执行依赖逻辑重新编号:
| 序号 | 文件 | 说明 |
|------|------|------|
| 00 | 登录登出 | 先拿 token |
| 01 | 首页 API 测试 | 仪表盘概览 |
| 02 | 物料分页 | 基础数据查询 |
| 03 | 数据字典与映射 | 字典+翻译 |
| 04 | 入库出库 | 核心业务流程 |
| 05 | 实时库存&盘点 | 库存状态 |
| 06 | 操作日志 | 审计兜底 |
同步更新了 `docs/README.md`
## 14:24 — scripts/postgresql 目录组织讨论
**话题:** 杨轩问脚本目录是否可以按 ddl/dml/init 或按模块区分。
**分析结果:** 当前脚本目录的问题:
1. 编号混乱(00/03/10/20/21/22...99,无一致规则)
2. DDL/DML 混在一起(如 10-system.sql 既建表又插数据)
3. fix- 前缀不统一(26-material-last-price.sql 也是 ALTER 但没用 fix- 前缀)
**方案A(用户选中):** 二级目录 `ddl/``dml/``migration/``mock/`,根目录保留一个 `init.sql` 通过 `\i` 引用子目录文件(因为 `docker-entrypoint-initdb.d` 只处理扁平 .sql 文件)。
**待实现:** [not yet started — compaction happened before implementation]
## 14:47~15:30 — AI 接口文档 + 测试文件 ✅
**AI 接口文档:** `docs/需求/AI模块/02-AI单据识别接口文档.md`
**AI 测试文件:** `docs/测试/07-AI单据识别.http`
- 解释了 exactMatch=false 仍有 materialId 的语义:近似匹配自动选最佳,前端标黄提示
- `docs/README.md` 同步更新
**提交策略:** 用户自行处理敏感配置文件的版本管理(`application.yml``application-local.yml``scripts/idea/http-client.env.json`
## 15:30~16:20 — 物料选择器 excludedMaterialIds 实现 ✅
**需求:** 出库/入库选择器支持排除已选物料
**改动点:**
1. `MaterialSelectorReqDTO` — 新增 `excludedMaterialIds``List<Long>`
2. `MaterialServiceImpl` — 4 个分页/计数方法加 `excludedMaterialIds` 参数
3. `StockMapper.xml` — 4 个 SQL 加 `<if test="excludedMaterialIds != null and excludedMaterialIds.size() > 0"> AND s.material_id NOT IN ...</if>`
4. `MaterialSelectorServiceImpl` — 新增 `filterExcludedIds()` 私有方法做内存过滤 + queryByIds 方法加上排除逻辑
**MyBatis <if> 行为验证:**
- `null` → false,跳过 NOT IN
- `[]`(空列表)→ `size() > 0` 为 false,跳过 NOT IN
- `[1, 2]` → 进 NOT INWHERE 过滤
**测试覆盖:** 集成测试三类场景全部通过 ✅
- `testMaterialSelector_empty`(传 null)✅
- `testMaterialSelector_emptyExcludeList`(传 `[]`)✅
- `testMaterialSelector_withExcludedIds`(传实际 ID,验证排除正确)✅
## 15:55 — 测试编号冲突修复
**问题:** 新增物料选择器测试插入 `@Order(4)/@Order(5)` 后,原有的 `@Order(4)`(新增出库单)和 `@Order(5)`(明细为空)未重编号,导致 `@Order(4)/@Order(5)/@Order(7)` 重复
**修复:** 将所有 `@Order(n)` 增加 2n>=4 的改成 n+2),最后 2 个测试增加 2。涉及约 20 个测试方法。
## 16:05 — 测试 bug 修复
**问题:** 排除测试中 `assertFalse(list.stream().anyMatch(s -> s.getId().equals(excludedId)))` 失败
**原因:** `StockPageDTO.getId()` 返回库存记录 ID`s.id`),而非物料 ID`s.material_id`)。SQL NOT IN 排除的是 `material_id`,但测试用 `getId()` 取了库存记录 ID
**修复:** 改用 `getMaterialId()` 验证排除
+14
View File
@@ -0,0 +1,14 @@
# 2026-07-09
## DailyHotJob 改造完成
- planner 派发任务 → backend 执行改造 → planner review 通过,共 7 个 commit
- 涉及:异常传播、租户注解、批量查重插入、并发搜索、文件分片、时间窗口、Redis Key 可配置
- 任务文档存档于 `tasks/dailyhot-job-fix-tasks.md`
## 教训:不能越权
- 杨轩明确强调:**不能越权** — 不要替用户做决定,不要自行启动或派发任务,由用户决策后再执行
## 编译修复
- `JavInfoMapper.insertBatch(Collection<JavInfoDO>)` 返回类型 `int``Boolean`(与父类 `BaseMapperX` 一致)
- `JackettController.dailyHot()``throws Exception`(顺带修复同一 module 编译错误)
- Maven 编译验证通过
@@ -1,17 +0,0 @@
{
"version": 1,
"registry": "https://clawhub.ai",
"slug": "qiushi-openclaw-skill",
"ownerHandle": "skytodmoon",
"installedVersion": "1.0.0",
"installedAt": 1785745381570,
"artifact": {
"kind": "archive",
"sha256": "1e2d3712d2974143449c9e47b0379725a954794c498727799f782ac7b1db7a49",
"integrity": "sha256-Hi03EtKXQUNEnJ5HsDeXJalUeUxJhyd5n3gqx7Hbekk="
},
"skillFile": {
"path": "SKILL.md",
"sha256": "b21d933b7f61584d2254fba25fd531c16f19e33e10016ddfbdea1a5e2d5d6d25"
}
}
@@ -1,116 +0,0 @@
# 求是 OpenClaw Skills
## 项目介绍
求是 OpenClaw Skills 是基于毛泽东思想方法论的 AI Agent 技能集合,按照 OpenClaw 技能格式进行改造,旨在为 AI 提供系统化的思考和行动框架。
## 技能列表
| 技能名称 | 核心要义 | 适用场景 |
|---------|---------|---------|
| arming-thought | 武装思想,实事求是总原则 | 对话开始时建立方法论基础 |
| contradiction-analysis | 矛盾分析法,抓主要矛盾 | 复杂问题分析 |
| practice-cognition | 实践认识论,实践→认识→再实践 | 方案验证与迭代 |
| investigation-first | 调查研究,没有调查就没有发言权 | 决策前的信息收集 |
| mass-line | 群众路线,从群众中来到群众中去 | 反馈整合与方案验证 |
| criticism-self-criticism | 批评与自我批评,惩前毖后治病救人 | 工作审视与质量改进 |
| protracted-strategy | 持久战略,战略上藐视战术上重视 | 长期复杂任务规划 |
| concentrate-forces | 集中兵力,伤其十指不如断其一指 | 优先级决策与资源聚焦 |
| spark-prairie-fire | 星火燎原,建立根据地不做流寇 | 从零开始的发展策略 |
| overall-planning | 统筹兼顾,调动一切积极因素 | 多目标平衡与权衡 |
| workflows | 工作流组合,多种方法串联 | 复杂任务的流程设计 |
## 安装方法
### 手动安装
1.`qiushi-openclaw-skills` 目录复制到 OpenClaw 的技能目录:
```bash
cp -r qiushi-openclaw-skills ~/.openclaw/skills/
```
2. 重启 OpenClaw 或刷新技能列表。
### ClawHub 安装(未来支持)
未来将支持通过 ClawHub 一键安装。
## 技能结构
每个技能都遵循 OpenClaw 的标准结构:
```
skill-name/
└── SKILL.md # 技能定义文件
```
### SKILL.md 结构
```yaml
---
name: skill-name
description: "技能描述,决定 AI 何时自动触发此技能"
tools: [] # 技能需要使用的工具
---
# 技能名称
## 触发条件
当...时触发此技能。
## 执行步骤
1. 第一步...
2. 第二步...
## 核心原则
...
## 不适用场景
- ...
## 应用场景
- ...
## 常见错误
| 错误 | 正确做法 |
|------|---------|
| ... | ... |
## 操作规程
当本 skill 被触发时,执行以下步骤:
1. ...
## 与其他 skill 的关系
- ...
```
## 使用方法
1. **自动触发**OpenClaw 会根据技能的 `description` 字段自动判断何时触发相应技能。
2. **手动触发**:在 OpenClaw 中使用 `/skill-name` 命令手动触发技能。
3. **工作流组合**:使用 `workflows` 技能组合多个技能,形成完整的工作流程。
## 核心原则
- **实事求是**:从客观存在着的实际事物出发,让事实规定判断,让现实修正理论。
- **矛盾分析**:识别矛盾、抓住主要矛盾、区分矛盾性质。
- **实践认识论**:实践→认识→再实践,螺旋上升。
- **调查研究**:没有调查就没有发言权。
- **群众路线**:从群众中来,到群众中去。
- **批评与自我批评**:惩前毖后,治病救人。
- **持久战略**:战略上藐视,战术上重视。
- **集中兵力**:伤其十指不如断其一指。
- **星火燎原**:建立根据地,不做流寇。
- **统筹兼顾**:调动一切积极因素。
## 注意事项
- 本项目的方法论来源于毛泽东思想,旨在为 AI 提供科学的思考和行动框架。
- 技能的触发条件和执行步骤已经过优化,适合 AI 理解和执行。
- 可以根据具体任务需求,灵活组合使用不同的技能。
## 许可证
MIT License
@@ -1,50 +0,0 @@
---
name: qiushi-openclaw-skills
description: "求是 OpenClaw Skills 是基于毛泽东思想方法论的 AI Agent 技能集合,按照 OpenClaw 技能格式进行改造,旨在为 AI 提供系统化的思考和行动框架。"
tools: []
---
# 求是 OpenClaw Skills
## 项目介绍
求是 OpenClaw Skills 是基于毛泽东思想方法论的 AI Agent 技能集合,按照 OpenClaw 技能格式进行改造,旨在为 AI 提供系统化的思考和行动框架。
## 技能列表
| 技能名称 | 核心要义 | 适用场景 |
|---------|---------|---------|
| arming-thought | 武装思想,实事求是总原则 | 对话开始时建立方法论基础 |
| contradiction-analysis | 矛盾分析法,抓主要矛盾 | 复杂问题分析 |
| practice-cognition | 实践认识论,实践→认识→再实践 | 方案验证与迭代 |
| investigation-first | 调查研究,没有调查就没有发言权 | 决策前的信息收集 |
| mass-line | 群众路线,从群众中来到群众中去 | 反馈整合与方案验证 |
| criticism-self-criticism | 批评与自我批评,惩前毖后治病救人 | 工作审视与质量改进 |
| protracted-strategy | 持久战略,战略上藐视战术上重视 | 长期复杂任务规划 |
| concentrate-forces | 集中兵力,伤其十指不如断其一指 | 优先级决策与资源聚焦 |
| spark-prairie-fire | 星火燎原,建立根据地不做流寇 | 从零开始的发展策略 |
| overall-planning | 统筹兼顾,调动一切积极因素 | 多目标平衡与权衡 |
| workflows | 工作流组合,多种方法串联 | 复杂任务的流程设计 |
## 核心原则
- **实事求是**:从客观存在着的实际事物出发,让事实规定判断,让现实修正理论。
- **矛盾分析**:识别矛盾、抓住主要矛盾、区分矛盾性质。
- **实践认识论**:实践→认识→再实践,螺旋上升。
- **调查研究**:没有调查就没有发言权。
- **群众路线**:从群众中来,到群众中去。
- **批评与自我批评**:惩前毖后,治病救人。
- **持久战略**:战略上藐视,战术上重视。
- **集中兵力**:伤其十指不如断其一指。
- **星火燎原**:建立根据地,不做流寇。
- **统筹兼顾**:调动一切积极因素。
## 安装方法
```bash
clawhub install qiushi-openclaw-skills
```
## 许可证
MIT License
@@ -1,6 +0,0 @@
{
"ownerId": "kn77hfjtjjwht588zc4scw4qr582vrc6",
"slug": "qiushi-openclaw-skill",
"version": "1.0.0",
"publishedAt": 1775635456843
}
@@ -1,59 +0,0 @@
# 武装思想
## 技能介绍
武装思想是求是 OpenClaw Skills 系列中的核心技能,在每次新的顶层对话开始时自动调用,用于建立"实事求是"的总原则,并在明确适用时为后续任务选择下游技能。
## 核心功能
- **实事求是总原则**:先看事实,再下判断,让事实规定判断,让现实修正理论
- **技能调度**:根据任务需求自动选择合适的下游技能
- **行为规范**:提供可观测的行为准则,确保 AI 行为符合方法论要求
## 触发条件
当开始新的顶层对话时触发,用于建立方法论基础和选择下游技能。
## 执行步骤
1. 应用"实事求是"总原则:先看事实,再下判断
2. 评估当前任务是否需要调用下游技能
3. 如需要,选择最适合的技能进行调用
## 技能映射
| 遇到的情况 | 应调用的 skill |
|-----------|---------------|
| 面对复杂问题,不知从何入手 | contradiction-analysis |
| 需要验证方案或迭代改进 | practice-cognition |
| 要做决策但信息不足 | investigation-first |
| 需要收集多方意见或整合多源信息 | mass-line |
| 完成工作后需要审视质量 | criticism-self-criticism |
| 面对长期复杂任务 | protracted-strategy |
| 多个任务争夺注意力 | concentrate-forces |
| 从零开始,资源有限 | spark-prairie-fire |
| 多个目标需要平衡 | overall-planning |
| 一个任务明确需要多种方法串联 | workflows |
## 不适用场景
- 子 agent 执行单一具体任务时
- 用户需求非常具体,且执行路径单一明确
- 只是一次性简单输出,不涉及调查、取舍、验证或复盘
- 宿主平台已经在执行等价流程
## 指令优先级
1. 用户的明确指示
2. 宿主平台的系统规则与安全约束
3. qiushi skills 作为补充的方法论框架
## 安装方法
```bash
clawhub install arming-thought
```
## 许可证
MIT License
@@ -1,54 +0,0 @@
---
name: arming-thought
description: "在每次新的顶层对话开始时自动调用,用于建立'实事求是'的总原则,并在明确适用时为后续任务选择下游 skill"
tools: []
---
# 武装思想
## 触发条件
当开始新的顶层对话时触发,用于建立方法论基础和选择下游技能。
## 执行步骤
1. 应用"实事求是"总原则:先看事实,再下判断
2. 评估当前任务是否需要调用下游技能
3. 如需要,选择最适合的技能进行调用
## 总原则:实事求是
"'实事'就是客观存在着的一切事物,'是'就是客观事物的内部联系,即规律性,'求'就是我们去研究。" —— 毛泽东《改造我们的学习》
**核心行为规则:**
- 不空谈,看事实:每个结论后面附具体依据
- 验证才算完成:声称"完成"之前执行验证动作
- 承认不知道:遇到不确定信息时,明确标注"需要进一步确认"
- 遇阻探原因:遇到失败时说明原因、补调查或更换路径
## 调度规则
只有在下列任一条件成立时,才调用下游 skill:
- 任务明显匹配某个 skill 的触发条件
- 当前结果质量会因为该 skill 明显提升
- 你已经遇到阻塞,需要一个明确的方法框架来推进
## 技能映射
| 遇到的情况 | 应调用的 skill |
|-----------|---------------|
| 面对复杂问题,不知从何入手 | contradiction-analysis |
| 需要验证方案或迭代改进 | practice-cognition |
| 要做决策但信息不足 | investigation-first |
| 需要收集多方意见或整合多源信息 | mass-line |
| 完成工作后需要审视质量 | criticism-self-criticism |
| 面对长期复杂任务 | protracted-strategy |
| 多个任务争夺注意力 | concentrate-forces |
| 从零开始,资源有限 | spark-prairie-fire |
| 多个目标需要平衡 | overall-planning |
| 一个任务明确需要多种方法串联 | workflows |
## 不要过度调用
- 用户需求非常具体,且执行路径单一明确
- 只是一次性简单输出,不涉及调查、取舍、验证或复盘
- 宿主平台已经在执行等价流程
## 指令优先级
1. 用户的明确指示
2. 宿主平台的系统规则与安全约束
3. qiushi skills 作为补充的方法论框架
@@ -1,13 +0,0 @@
{
"name": "arming-thought",
"version": "1.0.0",
"displayName": "武装思想",
"description": "在每次新的顶层对话开始时自动调用,用于建立'实事求是'的总原则,并在明确适用时为后续任务选择下游 skill",
"author": "求是 Skill",
"homepage": "https://github.com/skytodmoon/qiushi-skill",
"tags": ["方法论", "毛泽东思想", "实事求是"],
"requires": {
"env": []
},
"files": []
}
@@ -1,79 +0,0 @@
# 集中兵力
## 技能介绍
集中兵力是求是 OpenClaw Skills 系列中的核心技能,基于毛泽东的《中国革命战争的战略问题》,强调"伤其十指不如断其一指",用于当多个任务争夺注意力时优先处理重要任务。
## 核心功能
- **任务分析**:分析所有待处理的任务
- **优先级排序**:根据重要性和紧急性对任务进行排序
- **资源集中**:将资源集中到最重要的任务上
- **各个击破**:逐个解决优先级高的任务
## 触发条件
当多个任务争夺注意力,需要优先处理重要任务时触发。
## 执行步骤
1. **任务分析**:分析所有待处理的任务
2. **优先级排序**:根据重要性和紧急性对任务进行排序
3. **资源集中**:将资源集中到最重要的任务上
4. **各个击破**:逐个解决优先级高的任务
5. **动态调整**:根据情况动态调整优先级和资源分配
## 核心原则
伤其十指不如断其一指。不打无准备之仗。
## 不适用场景
- 只有一个任务
- 所有任务都同等重要
- 任务之间相互依赖,无法单独处理
- 时间充足,不需要优先级排序
## 集中兵力的应用
- **任务管理**:管理多个并发任务
- **项目规划**:规划项目的优先级
- **资源分配**:合理分配有限的资源
- **问题解决**:集中精力解决关键问题
## 常见错误
| 错误 | 正确做法 |
|------|---------|
| 平均分配资源 | 集中资源到最重要的任务 |
| 同时处理多个任务 | 一次只处理一个重要任务 |
| 忽视任务的重要性 | 认真评估任务的重要性和紧急性 |
| 缺乏准备 | 充分准备后再行动 |
| 不根据情况调整 | 动态调整优先级和资源分配 |
## 操作规程
当本 skill 被触发时,执行以下步骤:
1. **任务清单**:列出所有待处理的任务
2. **评估排序**:评估每个任务的重要性和紧急性,进行排序
3. **资源规划**:规划所需的资源,确保重要任务得到充分支持
4. **执行计划**:制定详细的执行计划,明确每个任务的时间和资源需求
5. **集中执行**:集中精力执行最重要的任务,确保完成质量
6. **评估调整**:定期评估任务进展,根据情况调整优先级和资源分配
## 与其他 skill 的关系
- **矛盾分析法**:集中兵力需要识别主要矛盾
- **持久战略**:在持久战略中,需要在关键阶段集中兵力
- **统筹兼顾**:集中兵力需要在全局范围内统筹兼顾
- **实践认识论**:集中兵力的效果需要在实践中验证
## 安装方法
```bash
clawhub install concentrate-forces
```
## 许可证
MIT License
@@ -1,56 +0,0 @@
---
name: concentrate-forces
description: "当多个任务争夺注意力,需要优先处理重要任务时调用"
tools: []
---
# 集中兵力
## 触发条件
当多个任务争夺注意力,需要优先处理重要任务时触发。
## 执行步骤
1. **任务分析**:分析所有待处理的任务
2. **优先级排序**:根据重要性和紧急性对任务进行排序
3. **资源集中**:将资源集中到最重要的任务上
4. **各个击破**:逐个解决优先级高的任务
5. **动态调整**:根据情况动态调整优先级和资源分配
## 核心原则
伤其十指不如断其一指。不打无准备之仗。
## 不适用场景
- 只有一个任务
- 所有任务都同等重要
- 任务之间相互依赖,无法单独处理
- 时间充足,不需要优先级排序
## 集中兵力的应用
- **任务管理**:管理多个并发任务
- **项目规划**:规划项目的优先级
- **资源分配**:合理分配有限的资源
- **问题解决**:集中精力解决关键问题
## 常见错误
| 错误 | 正确做法 |
|------|---------|
| 平均分配资源 | 集中资源到最重要的任务 |
| 同时处理多个任务 | 一次只处理一个重要任务 |
| 忽视任务的重要性 | 认真评估任务的重要性和紧急性 |
| 缺乏准备 | 充分准备后再行动 |
| 不根据情况调整 | 动态调整优先级和资源分配 |
## 操作规程
当本 skill 被触发时,执行以下步骤:
1. **任务清单**:列出所有待处理的任务
2. **评估排序**:评估每个任务的重要性和紧急性,进行排序
3. **资源规划**:规划所需的资源,确保重要任务得到充分支持
4. **执行计划**:制定详细的执行计划,明确每个任务的时间和资源需求
5. **集中执行**:集中精力执行最重要的任务,确保完成质量
6. **评估调整**:定期评估任务进展,根据情况调整优先级和资源分配
## 与其他 skill 的关系
- **矛盾分析法**:集中兵力需要识别主要矛盾
- **持久战略**:在持久战略中,需要在关键阶段集中兵力
- **统筹兼顾**:集中兵力需要在全局范围内统筹兼顾
- **实践认识论**:集中兵力的效果需要在实践中验证
@@ -1,13 +0,0 @@
{
"name": "concentrate-forces",
"version": "1.0.0",
"displayName": "集中兵力",
"description": "当多个任务争夺注意力,需要优先处理重要任务时调用",
"author": "求是 Skill",
"homepage": "https://github.com/skytodmoon/qiushi-skill",
"tags": ["方法论", "毛泽东思想", "集中兵力"],
"requires": {
"env": []
},
"files": []
}
@@ -1,73 +0,0 @@
# 矛盾分析法
## 技能介绍
矛盾分析法是求是 OpenClaw Skills 系列中的核心技能,用于分析复杂问题,识别矛盾,抓住主要矛盾,区分矛盾性质,从而找到解决问题的方法。
## 核心功能
- **矛盾识别**:识别问题中的所有矛盾
- **主要矛盾判定**:找出规定或影响其他矛盾的主要矛盾
- **矛盾性质分析**:区分对抗性矛盾和非对抗性矛盾
- **解决方案选择**:根据矛盾性质选择合适的解决方法
- **矛盾转化监控**:持续关注矛盾的变化和转化
## 触发条件
当问题复杂、存在多个冲突因素、优先级不清,或你不知道应该先解决什么时触发。
## 执行步骤
1. **识别所有矛盾**:列出当前情境中所有对立的、互相制约的因素
2. **判定主要矛盾**:找出那个规定或影响着其他矛盾的主要矛盾
3. **分析矛盾的主要方面**:判断哪一方面占支配地位
4. **区分矛盾性质**:判断矛盾是对抗性的还是非对抗性的
5. **选择解决方法**:根据矛盾性质,选择对应方法
6. **监控矛盾转化**:持续关注矛盾的变化
## 矛盾性质判断
**对抗性矛盾**(根本利益冲突):
- 需要明确立场,果断处理
- 不能调和,只能选择一方
**非对抗性矛盾**(共同利益下的分歧):
- 使用"团结——批评——团结"的方法
- 从团结的愿望出发,通过讨论和批评解决分歧,达到新的团结
## 常见错误
| 错误 | 正确做法 |
|------|---------|
| 不做矛盾分析就动手 | 先分析,后行动 |
| 搞一刀切 | 每个矛盾都有其特殊性,不能套用模板 |
| 抓不住主要矛盾 | 全局着眼,抓住牛鼻子 |
| 忽视矛盾转化 | 持续监控,动态调整 |
| 把非对抗性矛盾当对抗性处理 | 先判断性质,再选择方法 |
## 操作规程
当本 skill 被触发时,执行以下具体步骤并输出结构化的矛盾分析表:
1. **列矛盾清单**:用 bullet list 列出当前情境中所有可识别的对立面,格式为 `[A] vs [B]`
2. **判定主要矛盾**:在列表中标记一个矛盾为 `⭐ 主要矛盾`,并用一句话说明理由
3. **判断性质**:对主要矛盾标注:`对抗性``非对抗性`
4. **选择应对方法**:根据性质,选择对应方法,并明确写出"接下来我将……"
5. **设置监控提示**:在分析末尾加一行:"⚠️ 需监控:[次要矛盾X] 是否上升为主要矛盾"
## 与其他 skill 的关系
- **实践认识论**:矛盾分析得出的结论需要在实践中验证
- **调查研究**:识别矛盾的前提是充分的调查研究
- **集中兵力**:抓住主要矛盾后,集中力量解决它
- **统筹兼顾**:当多对矛盾都需要处理时,需要统筹兼顾
- **批评与自我批评**:矛盾分析也适用于审视自己的工作
## 安装方法
```bash
clawhub install contradiction-analysis
```
## 许可证
MIT License
@@ -1,60 +0,0 @@
---
name: contradiction-analysis
description: "当问题复杂、存在多个冲突因素、优先级不清,或你不知道应该先解决什么时调用"
tools: []
---
# 矛盾分析法
## 触发条件
当问题复杂、存在多个冲突因素、优先级不清,或你不知道应该先解决什么时触发。
## 执行步骤
1. 识别所有矛盾:列出当前情境中所有对立的、互相制约的因素
2. 判定主要矛盾:找出那个规定或影响着其他矛盾的主要矛盾
3. 分析矛盾的主要方面:判断哪一方面占支配地位
4. 区分矛盾性质:判断矛盾是对抗性的还是非对抗性的
5. 选择解决方法:根据矛盾性质,选择对应方法
6. 监控矛盾转化:持续关注矛盾的变化
## 核心原则
一切事物都包含矛盾,分析任何问题的方法就是找到其中的矛盾,区分主要矛盾和次要矛盾,然后集中力量解决主要矛盾。
## 不适用场景
- 任务是直接执行性的(如"帮我把这段代码格式化")
- 用户已经明确指定了解决方案,只需要实现
- 问题只有一个维度,不存在对立面
- 时间紧急且问题属于已知模式
## 矛盾性质判断
**对抗性矛盾**(根本利益冲突):
- 需要明确立场,果断处理
- 不能调和,只能选择一方
**非对抗性矛盾**(共同利益下的分歧):
- 使用"团结——批评——团结"的方法
- 从团结的愿望出发,通过讨论和批评解决分歧,达到新的团结
## 常见错误
| 错误 | 正确做法 |
|------|---------|
| 不做矛盾分析就动手 | 先分析,后行动 |
| 搞一刀切 | 每个矛盾都有其特殊性,不能套用模板 |
| 抓不住主要矛盾 | 全局着眼,抓住牛鼻子 |
| 忽视矛盾转化 | 持续监控,动态调整 |
| 把非对抗性矛盾当对抗性处理 | 先判断性质,再选择方法 |
## 操作规程
当本 skill 被触发时,执行以下具体步骤并输出结构化的矛盾分析表:
1. **列矛盾清单**:用 bullet list 列出当前情境中所有可识别的对立面,格式为 `[A] vs [B]`
2. **判定主要矛盾**:在列表中标记一个矛盾为 `⭐ 主要矛盾`,并用一句话说明理由
3. **判断性质**:对主要矛盾标注:`对抗性``非对抗性`
4. **选择应对方法**:根据性质,选择对应方法,并明确写出"接下来我将……"
5. **设置监控提示**:在分析末尾加一行:"⚠️ 需监控:[次要矛盾X] 是否上升为主要矛盾"
## 与其他 skill 的关系
- **实践认识论**:矛盾分析得出的结论需要在实践中验证
- **调查研究**:识别矛盾的前提是充分的调查研究
- **集中兵力**:抓住主要矛盾后,集中力量解决它
- **统筹兼顾**:当多对矛盾都需要处理时,需要统筹兼顾
- **批评与自我批评**:矛盾分析也适用于审视自己的工作
@@ -1,13 +0,0 @@
{
"name": "contradiction-analysis",
"version": "1.0.0",
"displayName": "矛盾分析法",
"description": "当问题复杂、存在多个冲突因素、优先级不清,或你不知道应该先解决什么时调用",
"author": "求是 Skill",
"homepage": "https://github.com/skytodmoon/qiushi-skill",
"tags": ["方法论", "毛泽东思想", "矛盾分析"],
"requires": {
"env": []
},
"files": []
}
@@ -1,82 +0,0 @@
# 批评与自我批评
## 技能介绍
批评与自我批评是求是 OpenClaw Skills 系列中的核心技能,基于毛泽东的《论联合政府》,强调"惩前毖后,治病救人",用于完成工作后审视质量,或改进自身表现。
## 核心功能
- **自我检查**:对自己的工作进行全面检查
- **自我批评**:诚恳地找出自己的不足和错误
- **接受批评**:虚心接受他人的批评和建议
- **改进计划**:制定具体的改进措施
## 触发条件
当完成工作后需要审视质量,或需要改进自身表现时触发。
## 执行步骤
1. **自我检查**:对自己的工作进行全面检查
2. **自我批评**:诚恳地找出自己的不足和错误
3. **接受批评**:虚心接受他人的批评和建议
4. **分析原因**:分析产生问题的原因
5. **制定改进计划**:制定具体的改进措施
6. **落实改进**:认真落实改进计划
## 核心原则
惩前毖后,治病救人。房子是应该经常打扫的。
## 批评与自我批评的方法
- **实事求是**:基于事实进行批评和自我批评
- **与人为善**:以帮助他人为目的,不搞人身攻击
- **治病救人**:通过批评帮助他人改进,而不是惩罚
- **知无不言**:坦诚地表达自己的意见和看法
- **言无不尽**:充分表达自己的想法和建议
## 不适用场景
- 工作尚未完成
- 问题已经解决
- 不需要改进的简单任务
- 纯粹的理论探讨
## 常见错误
| 错误 | 正确做法 |
|------|---------|
| 敷衍了事 | 认真对待批评和自我批评 |
| 只批评别人不自我批评 | 首先进行自我批评 |
| 搞人身攻击 | 针对问题,不针对个人 |
| 不接受批评 | 虚心接受他人的批评和建议 |
| 批评后不改进 | 认真落实改进措施 |
## 操作规程
当本 skill 被触发时,执行以下步骤:
1. **准备阶段**:回顾工作内容,收集相关信息
2. **自我检查**:对工作进行全面检查,找出问题和不足
3. **自我批评**:诚恳地进行自我批评,分析问题原因
4. **征求意见**:主动征求他人的批评和建议
5. **分析总结**:分析批评意见,总结经验教训
6. **改进计划**:制定具体的改进计划和措施
7. **落实改进**:认真落实改进计划,定期检查改进效果
## 与其他 skill 的关系
- **实践认识论**:批评与自我批评是实践后的重要环节
- **调查研究**:批评与自我批评可以发现调查研究中的问题
- **群众路线**:批评与自我批评需要群众的参与和监督
- **矛盾分析法**:批评与自我批评可以帮助识别和解决内部矛盾
## 安装方法
```bash
clawhub install criticism-self-criticism
```
## 许可证
MIT License
@@ -1,59 +0,0 @@
---
name: criticism-self-criticism
description: "当完成工作后需要审视质量,或需要改进自身表现时调用"
tools: []
---
# 批评与自我批评
## 触发条件
当完成工作后需要审视质量,或需要改进自身表现时触发。
## 执行步骤
1. **自我检查**:对自己的工作进行全面检查
2. **自我批评**:诚恳地找出自己的不足和错误
3. **接受批评**:虚心接受他人的批评和建议
4. **分析原因**:分析产生问题的原因
5. **制定改进计划**:制定具体的改进措施
6. **落实改进**:认真落实改进计划
## 核心原则
惩前毖后,治病救人。房子是应该经常打扫的。
## 不适用场景
- 工作尚未完成
- 问题已经解决
- 不需要改进的简单任务
- 纯粹的理论探讨
## 批评与自我批评的方法
- **实事求是**:基于事实进行批评和自我批评
- **与人为善**:以帮助他人为目的,不搞人身攻击
- **治病救人**:通过批评帮助他人改进,而不是惩罚
- **知无不言**:坦诚地表达自己的意见和看法
- **言无不尽**:充分表达自己的想法和建议
## 常见错误
| 错误 | 正确做法 |
|------|---------|
| 敷衍了事 | 认真对待批评和自我批评 |
| 只批评别人不自我批评 | 首先进行自我批评 |
| 搞人身攻击 | 针对问题,不针对个人 |
| 不接受批评 | 虚心接受他人的批评和建议 |
| 批评后不改进 | 认真落实改进措施 |
## 操作规程
当本 skill 被触发时,执行以下步骤:
1. **准备阶段**:回顾工作内容,收集相关信息
2. **自我检查**:对工作进行全面检查,找出问题和不足
3. **自我批评**:诚恳地进行自我批评,分析问题原因
4. **征求意见**:主动征求他人的批评和建议
5. **分析总结**:分析批评意见,总结经验教训
6. **改进计划**:制定具体的改进计划和措施
7. **落实改进**:认真落实改进计划,定期检查改进效果
## 与其他 skill 的关系
- **实践认识论**:批评与自我批评是实践后的重要环节
- **调查研究**:批评与自我批评可以发现调查研究中的问题
- **群众路线**:批评与自我批评需要群众的参与和监督
- **矛盾分析法**:批评与自我批评可以帮助识别和解决内部矛盾
@@ -1,13 +0,0 @@
{
"name": "criticism-self-criticism",
"version": "1.0.0",
"displayName": "批评与自我批评",
"description": "当完成工作后需要审视质量,或需要改进自身表现时调用",
"author": "求是 Skill",
"homepage": "https://github.com/skytodmoon/qiushi-skill",
"tags": ["方法论", "毛泽东思想", "批评与自我批评"],
"requires": {
"env": []
},
"files": []
}
@@ -1,81 +0,0 @@
# 调查研究
## 技能介绍
调查研究是求是 OpenClaw Skills 系列中的核心技能,基于毛泽东的《反对本本主义》,强调"没有调查就没有发言权",用于在做决策前收集充分的信息,深入了解问题背景。
## 核心功能
- **信息收集**:通过各种渠道收集相关信息
- **信息分析**:对收集到的信息进行整理和分析
- **结论形成**:基于分析结果形成调查结论
- **建议提出**:根据结论提出具体的建议
## 触发条件
当需要做决策但信息不足,或需要深入了解问题背景时触发。
## 执行步骤
1. **明确调查目标**:确定需要了解的问题和信息
2. **制定调查计划**:设计调查方法、步骤和时间安排
3. **收集信息**:通过各种渠道收集相关信息
4. **分析信息**:对收集到的信息进行整理和分析
5. **形成结论**:基于分析结果形成调查结论
6. **提出建议**:根据结论提出具体的建议
## 核心原则
没有调查就没有发言权。调查就像"十月怀胎",解决问题就像"一朝分娩"。
## 调查方法
- **观察法**:直接观察相关现象和行为
- **访谈法**:与相关人员进行交流和访谈
- **文献法**:查阅相关文献和资料
- **实验法**:通过实验验证假设
- **问卷调查法**:通过问卷收集大量信息
## 不适用场景
- 已经有足够的信息做出决策
- 时间紧急且问题属于已知模式
- 纯粹的理论探讨,不需要实际信息
- 问题本身不涉及具体事实
## 常见错误
| 错误 | 正确做法 |
|------|---------|
| 没有调查就下结论 | 先调查,后结论 |
| 调查不全面 | 从多个角度收集信息 |
| 调查不深入 | 深入分析问题的本质 |
| 只收集有利信息 | 客观收集各种信息,包括不利信息 |
| 调查后不分析 | 对收集到的信息进行系统分析 |
## 操作规程
当本 skill 被触发时,执行以下步骤:
1. **明确问题**:清楚定义需要调查的问题
2. **确定范围**:确定调查的范围和边界
3. **选择方法**:根据问题特点选择合适的调查方法
4. **实施调查**:按照计划进行调查,收集信息
5. **分析数据**:对收集到的数据进行整理和分析
6. **形成报告**:撰写调查报告,包括发现和建议
## 与其他 skill 的关系
- **矛盾分析法**:调查研究是识别矛盾的前提
- **实践认识论**:调查研究是实践的重要组成部分
- **群众路线**:调查研究需要深入群众,了解实际情况
- **批评与自我批评**:调查研究可以发现自身存在的问题
## 安装方法
```bash
clawhub install investigation-first
```
## 许可证
MIT License
@@ -1,58 +0,0 @@
---
name: investigation-first
description: "当需要做决策但信息不足,或需要深入了解问题背景时调用"
tools: []
---
# 调查研究
## 触发条件
当需要做决策但信息不足,或需要深入了解问题背景时触发。
## 执行步骤
1. **明确调查目标**:确定需要了解的问题和信息
2. **制定调查计划**:设计调查方法、步骤和时间安排
3. **收集信息**:通过各种渠道收集相关信息
4. **分析信息**:对收集到的信息进行整理和分析
5. **形成结论**:基于分析结果形成调查结论
6. **提出建议**:根据结论提出具体的建议
## 核心原则
没有调查就没有发言权。调查就像"十月怀胎",解决问题就像"一朝分娩"。
## 不适用场景
- 已经有足够的信息做出决策
- 时间紧急且问题属于已知模式
- 纯粹的理论探讨,不需要实际信息
- 问题本身不涉及具体事实
## 调查方法
- **观察法**:直接观察相关现象和行为
- **访谈法**:与相关人员进行交流和访谈
- **文献法**:查阅相关文献和资料
- **实验法**:通过实验验证假设
- **问卷调查法**:通过问卷收集大量信息
## 常见错误
| 错误 | 正确做法 |
|------|---------|
| 没有调查就下结论 | 先调查,后结论 |
| 调查不全面 | 从多个角度收集信息 |
| 调查不深入 | 深入分析问题的本质 |
| 只收集有利信息 | 客观收集各种信息,包括不利信息 |
| 调查后不分析 | 对收集到的信息进行系统分析 |
## 操作规程
当本 skill 被触发时,执行以下步骤:
1. **明确问题**:清楚定义需要调查的问题
2. **确定范围**:确定调查的范围和边界
3. **选择方法**:根据问题特点选择合适的调查方法
4. **实施调查**:按照计划进行调查,收集信息
5. **分析数据**:对收集到的数据进行整理和分析
6. **形成报告**:撰写调查报告,包括发现和建议
## 与其他 skill 的关系
- **矛盾分析法**:调查研究是识别矛盾的前提
- **实践认识论**:调查研究是实践的重要组成部分
- **群众路线**:调查研究需要深入群众,了解实际情况
- **批评与自我批评**:调查研究可以发现自身存在的问题
@@ -1,13 +0,0 @@
{
"name": "investigation-first",
"version": "1.0.0",
"displayName": "调查研究",
"description": "当需要做决策但信息不足,或需要深入了解问题背景时调用",
"author": "求是 Skill",
"homepage": "https://github.com/skytodmoon/qiushi-skill",
"tags": ["方法论", "毛泽东思想", "调查研究"],
"requires": {
"env": []
},
"files": []
}
@@ -1,79 +0,0 @@
# 群众路线
## 技能介绍
群众路线是求是 OpenClaw Skills 系列中的核心技能,基于毛泽东的《关于领导方法的若干问题》,强调"从群众中来,到群众中去",用于收集多方意见和整合多源信息。
## 核心功能
- **意见收集**:收集群众的意见和建议
- **意见分析**:对收集到的意见进行整理和分析
- **意见反馈**:将整理后的意见反馈给群众
- **方案优化**:根据群众反馈优化方案
## 触发条件
当需要收集多方意见或整合多源信息时触发。
## 执行步骤
1. **从群众中来**:收集群众的意见和建议
2. **集中起来**:对收集到的意见进行整理和分析
3. **到群众中去**:将整理后的意见反馈给群众
4. **坚持下去**:根据群众的反馈进一步调整和完善
## 核心原则
从群众中来,到群众中去。收集→系统化→返回→验证→再收集。
## 不适用场景
- 问题只涉及少数专业人士的意见
- 时间紧急且需要快速决策
- 问题本身不需要多方意见
- 已经有明确的解决方案
## 群众路线的应用
- **决策参考**:收集群众意见作为决策的参考
- **方案优化**:根据群众反馈优化方案
- **问题解决**:依靠群众的智慧解决问题
- **关系维护**:通过群众路线维护良好的关系
## 常见错误
| 错误 | 正确做法 |
|------|---------|
| 忽视群众意见 | 认真倾听群众的意见和建议 |
| 只收集不反馈 | 及时将处理结果反馈给群众 |
| 形式主义 | 真正深入群众,了解实际情况 |
| 选择性收集 | 客观收集各种意见,包括批评意见 |
| 不重视反馈 | 认真对待群众的反馈,及时调整 |
## 操作规程
当本 skill 被触发时,执行以下步骤:
1. **确定范围**:确定需要收集意见的范围和对象
2. **设计方法**:设计收集意见的方法和工具
3. **收集意见**:通过各种渠道收集群众的意见
4. **整理分析**:对收集到的意见进行整理和分析
5. **形成方案**:基于分析结果形成初步方案
6. **反馈验证**:将方案反馈给群众,征求意见
7. **调整完善**:根据反馈调整和完善方案
## 与其他 skill 的关系
- **调查研究**:群众路线是调查研究的重要方法
- **实践认识论**:群众的实践是认识的重要来源
- **批评与自我批评**:群众的批评是自我批评的重要参考
- **统筹兼顾**:群众路线需要统筹兼顾各方利益
## 安装方法
```bash
clawhub install mass-line
```
## 许可证
MIT License
@@ -1,56 +0,0 @@
---
name: mass-line
description: "当需要收集多方意见或整合多源信息时调用"
tools: []
---
# 群众路线
## 触发条件
当需要收集多方意见或整合多源信息时触发。
## 执行步骤
1. **从群众中来**:收集群众的意见和建议
2. **集中起来**:对收集到的意见进行整理和分析
3. **到群众中去**:将整理后的意见反馈给群众
4. **坚持下去**:根据群众的反馈进一步调整和完善
## 核心原则
从群众中来,到群众中去。收集→系统化→返回→验证→再收集。
## 不适用场景
- 问题只涉及少数专业人士的意见
- 时间紧急且需要快速决策
- 问题本身不需要多方意见
- 已经有明确的解决方案
## 群众路线的应用
- **决策参考**:收集群众意见作为决策的参考
- **方案优化**:根据群众反馈优化方案
- **问题解决**:依靠群众的智慧解决问题
- **关系维护**:通过群众路线维护良好的关系
## 常见错误
| 错误 | 正确做法 |
|------|---------|
| 忽视群众意见 | 认真倾听群众的意见和建议 |
| 只收集不反馈 | 及时将处理结果反馈给群众 |
| 形式主义 | 真正深入群众,了解实际情况 |
| 选择性收集 | 客观收集各种意见,包括批评意见 |
| 不重视反馈 | 认真对待群众的反馈,及时调整 |
## 操作规程
当本 skill 被触发时,执行以下步骤:
1. **确定范围**:确定需要收集意见的范围和对象
2. **设计方法**:设计收集意见的方法和工具
3. **收集意见**:通过各种渠道收集群众的意见
4. **整理分析**:对收集到的意见进行整理和分析
5. **形成方案**:基于分析结果形成初步方案
6. **反馈验证**:将方案反馈给群众,征求意见
7. **调整完善**:根据反馈调整和完善方案
## 与其他 skill 的关系
- **调查研究**:群众路线是调查研究的重要方法
- **实践认识论**:群众的实践是认识的重要来源
- **批评与自我批评**:群众的批评是自我批评的重要参考
- **统筹兼顾**:群众路线需要统筹兼顾各方利益

Some files were not shown because too many files have changed in this diff Show More