feat(portable): 预装国内渠道+本地模型自动发现+4个新技能

- release.yml 便携包离线预装 钉钉/飞书中国版/企业微信 插件(借鉴 openclaw-china 生态)
- config-server 新增 /api/local-models:自动探测 Ollama/LM Studio 本地模型(借鉴 RealShocky/openclaw-windows)
- Config.html 检测到本地模型自动生成卡片、免 Key 点选即用;新增钉钉渠道卡片
- skills-cn 新增 pdf-toolkit/web-to-markdown/qrcode-maker/image-compress(13→17)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
hfshfg
2026-06-17 22:45:59 +08:00
parent 086fd35b29
commit 8bffa5d9d7
7 changed files with 352 additions and 4 deletions

View File

@@ -237,6 +237,13 @@ input:focus { border-color: #ff6b35; }
</div>
</div>
<!-- 本地模型自动发现Ollama / LM Studio-->
<div id="localModelsBox" style="display:none; margin-top:6px;">
<h3 style="color:#4caf50; font-size:0.95em; margin:12px 0 4px;">💻 检测到本机本地模型 <span class="tag free">离线·免费</span></h3>
<p class="desc" style="margin-bottom:10px;">无需 API Key纯本地推理。点选即用</p>
<div class="model-grid" id="localModelGrid"></div>
</div>
<div class="btn-row">
<button class="btn btn-primary" id="nextStep1" disabled>下一步 →</button>
</div>
@@ -332,6 +339,21 @@ input:focus { border-color: #ff6b35; }
</div>
</div>
</div>
<div class="model-card channel-card" onclick="toggleChannel(this, 'dingtalk')">
<h4>📲 钉钉 <span class="tag cn">国内·最易</span></h4>
<p>WebSocket 接入,免公网 IP</p>
<div class="channel-form" id="form-dingtalk" onclick="event.stopPropagation()">
<div class="form-group">
<label>Client ID (AppKey)</label>
<input type="text" id="ch-dingtalk-clientid" placeholder="dingxxx...">
</div>
<div class="form-group">
<label>Client Secret (AppSecret)</label>
<input type="text" id="ch-dingtalk-secret" placeholder="应用密钥">
<p class="hint"><a href="https://open-dev.dingtalk.com" target="_blank">→ 从钉钉开放平台创建机器人应用</a></p>
</div>
</div>
</div>
<div class="model-card channel-card" onclick="toggleChannel(this, 'wecom')">
<h4>🏢 企业微信</h4>
<p>接入企业微信机器人</p>
@@ -438,10 +460,15 @@ function setupStep2() {
'uclaw-cloud': '虾盘云', minimax: 'MiniMax', kimi: 'Kimi (月之暗面)', deepseek: 'DeepSeek',
zai: '智谱 GLM', qwen: '通义千问', doubao: '豆包',
openai: 'OpenAI', anthropic: 'Anthropic Claude', groq: 'Groq',
siliconflow: '硅基流动', custom: '自定义'
siliconflow: '硅基流动', custom: '自定义',
ollama: 'Ollama本地', lmstudio: 'LM Studio本地'
};
const name = providerNames[selectedProvider] || selectedProvider;
document.getElementById('step2desc').textContent = `请填写 ${name} 的 API Key`;
document.getElementById('step2desc').textContent = selectedLocal
? `${name} 是本地模型,无需 API Key直接点「保存并启动」即可`
: `请填写 ${name} 的 API Key`;
// 本地模型隐藏 Key 获取信息框
document.getElementById('buyInfo').style.display = selectedLocal ? 'none' : 'block';
// Buy links
const card = document.querySelector(`#step1 .model-card[data-provider="${selectedProvider}"]`);
@@ -514,8 +541,13 @@ function buildOpenClawConfig(provider, base, model, apiKey) {
// --- Save config ---
async function saveConfig() {
const apiKey = document.getElementById('apiKey').value.trim();
if (!apiKey) { showToast('请填写 API Key', true); return; }
let apiKey = document.getElementById('apiKey').value.trim();
// 本地模型Ollama/LM Studio不需要真实 KeyOpenClaw 配置结构里仍要有 apiKey 字段
if (selectedLocal) {
if (!apiKey) apiKey = 'local';
} else if (!apiKey) {
showToast('请填写 API Key', true); return;
}
let base = selectedBase;
let model = selectedModel;
@@ -582,6 +614,52 @@ async function loadConfig() {
}
loadConfig();
// --- 本地模型自动发现Ollama / LM Studio---
// 探测 /api/local-models发现本机已运行的本地模型就动态生成卡片点选即用、无需 Key。
async function discoverLocalModels() {
try {
const res = await fetch('/api/local-models');
if (!res.ok) return;
const { providers } = await res.json();
if (!providers || !providers.length) return;
const grid = document.getElementById('localModelGrid');
grid.innerHTML = '';
providers.forEach(p => {
// 每个本地 provider 最多展示前 6 个模型,避免列表过长
p.models.slice(0, 6).forEach(modelId => {
const card = document.createElement('div');
card.className = 'model-card';
card.dataset.provider = p.provider; // ollama / lmstudio
card.dataset.base = p.base;
card.dataset.model = modelId;
card.dataset.local = '1'; // 标记:本地模型免 Key
card.innerHTML = `
<span class="check">✓</span>
<h4>${p.label} <span class="tag free">本地</span></h4>
<p>${modelId}</p>`;
card.addEventListener('click', () => {
document.querySelectorAll('.model-card').forEach(c => c.classList.remove('selected'));
card.classList.add('selected');
selectedProvider = p.provider;
selectedBase = p.base;
selectedModel = modelId;
selectedLocal = true;
document.getElementById('nextStep1').disabled = false;
});
grid.appendChild(card);
});
});
document.getElementById('localModelsBox').style.display = 'block';
} catch { /* 无本地模型或探测失败:静默 */ }
}
let selectedLocal = false;
// 选云端卡片时重置本地标记
document.querySelectorAll('#step1 > .model-grid .model-card').forEach(c => {
c.addEventListener('click', () => { selectedLocal = false; });
});
discoverLocalModels();
// Allow direct step preview via URL param, e.g. ?step=3
const stepParam = new URLSearchParams(window.location.search).get('step');
if (stepParam) goStep(parseInt(stepParam));
@@ -641,6 +719,10 @@ async function launchOpenClaw() {
const wcSecret = document.getElementById('ch-wecom-secret')?.value.trim();
if (wcBotId && wcSecret) channels.wecom = { enabled: true, botId: wcBotId, secret: wcSecret };
const ddId = document.getElementById('ch-dingtalk-clientid')?.value.trim();
const ddSecret = document.getElementById('ch-dingtalk-secret')?.value.trim();
if (ddId && ddSecret) channels.dingtalk = { enabled: true, clientId: ddId, clientSecret: ddSecret };
// 2. Save channel config if any (merge into existing config)
if (Object.keys(channels).length > 0) {
try {