一键导入
deepseek-openclaw-config-generator
Build and configure DeepSeek model integrations with OpenClaw agent framework using this local-first web app.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Build and configure DeepSeek model integrations with OpenClaw agent framework using this local-first web app.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Browser-based interface for viewing and filtering OpenClaw session tool call history with zero dependencies for local network deployment.
AI-powered quantitative research and backtesting platform with end-to-end workflow from research to strategy publication
Give your AI assistant a phone — OpenClaw plugin for real phone calls via Twilio + OpenAI Realtime API with in-call tools, transcripts, and call screening
Run multi-model consensus panels (Lite or Heavy) with your own agent backends—no hosted middleware, your models, your rules.
Build a multi-role JARVIS-style voice assistant with local ASR/TTS, OpenClaw LLM gateway, voice wake words, HUD effects, and speaker verification
Use 37 battle-tested marketing skills covering CRO, copywriting, SEO, paid ads, email, growth, and strategy with real data connectors for Google Ads, Search Console, Meta Ads, and X/Twitter
| name | deepseek-openclaw-config-generator |
| description | Build and configure DeepSeek model integrations with OpenClaw agent framework using this local-first web app. |
| triggers | ["how do I connect DeepSeek to OpenClaw","generate OpenClaw config for DeepSeek","set up DeepSeek model with OpenClaw","create DeepSeek OpenClaw onboarding command","configure DeepSeek API for OpenClaw agent","which DeepSeek model should I use with OpenClaw","show me DeepSeek OpenClaw configuration","help with DeepSeek OpenClaw integration"] |
Skill by ara.so — Hermes Skills collection.
DeepSeek OpenClaw is a local-first web application for generating OpenClaw configuration assets tailored to DeepSeek models. It provides a UI for selecting models, generating onboarding commands, and creating redacted config snippets without sending API keys to any backend.
# Clone the repository
git clone https://github.com/LawmakerTreasure/deepseek-openclaw.git
cd deepseek-openclaw
# Install dependencies
npm install
# Start development server
npm run dev
# Build for production
npm run build
# Preview production build
npm run preview
# Build static assets
npm run build
# Deploy dist/ folder to your hosting provider
# (GitHub Pages, Netlify, Vercel, etc.)
The app includes these model references:
| Model ID | Best For |
|---|---|
deepseek/deepseek-v4-flash | Fast, everyday automation and lightweight tasks |
deepseek/deepseek-v4-pro | Complex coding, planning, and reasoning workflows |
deepseek/deepseek-chat | General conversational interfaces |
deepseek/deepseek-reasoner | Deep reasoning and multi-step problem solving |
Always verify model availability against current DeepSeek and OpenClaw documentation.
Create a .env file for local configuration (never commit this file):
# DeepSeek API key (optional for local dev)
DEEPSEEK_API_KEY=your_key_here
In production, use environment variable references:
export DEEPSEEK_API_KEY="${DEEPSEEK_API_KEY}"
The app generates commands like:
openclaw onboard \
--provider deepseek \
--model deepseek/deepseek-v4-flash \
--env DEEPSEEK_API_KEY="${DEEPSEEK_API_KEY}"
Generated configuration follows OpenClaw's JSON structure:
{
"env": {
"DEEPSEEK_API_KEY": "${DEEPSEEK_API_KEY}"
},
"agents": {
"defaults": {
"model": {
"primary": "deepseek/deepseek-v4-flash"
}
}
}
}
The main configuration generator component:
import { useState } from 'react';
import { DeepSeekModel, OpenClawConfig } from './types';
import { generateOpenClawCommand, generateConfigSnippet } from './openclaw';
import { deepSeekModels } from './models';
function ConfigGenerator() {
const [apiKey, setApiKey] = useState('');
const [selectedModel, setSelectedModel] = useState<DeepSeekModel>('deepseek/deepseek-v4-flash');
const [verbose, setVerbose] = useState(false);
const command = generateOpenClawCommand({
apiKey,
model: selectedModel,
verbose,
});
const config = generateConfigSnippet({
apiKey,
model: selectedModel,
});
return (
<div className="generator">
<input
type="password"
placeholder="DeepSeek API Key"
value={apiKey}
onChange={(e) => setApiKey(e.target.value)}
/>
<select
value={selectedModel}
onChange={(e) => setSelectedModel(e.target.value as DeepSeekModel)}
>
{deepSeekModels.map((model) => (
<option key={model.id} value={model.id}>
{model.name}
</option>
))}
</select>
<label>
<input
type="checkbox"
checked={verbose}
onChange={(e) => setVerbose(e.target.checked)}
/>
Verbose mode
</label>
<pre>{command}</pre>
<pre>{config}</pre>
</div>
);
}
// src/models.ts
export interface ModelInfo {
id: string;
name: string;
description: string;
useCase: string;
}
export const deepSeekModels: ModelInfo[] = [
{
id: 'deepseek/deepseek-v4-flash',
name: 'DeepSeek V4 Flash',
description: 'Fast and efficient for everyday tasks',
useCase: 'Default choice for automation and quick responses',
},
{
id: 'deepseek/deepseek-v4-pro',
name: 'DeepSeek V4 Pro',
description: 'Advanced reasoning for complex coding',
useCase: 'Multi-file refactoring, architecture planning',
},
{
id: 'deepseek/deepseek-chat',
name: 'DeepSeek Chat',
description: 'General conversational model',
useCase: 'Customer support, casual interactions',
},
{
id: 'deepseek/deepseek-reasoner',
name: 'DeepSeek Reasoner',
description: 'Deep reasoning and problem solving',
useCase: 'Research, debugging, logical analysis',
},
];
// src/openclaw.ts
export interface CommandOptions {
apiKey: string;
model: string;
verbose?: boolean;
}
export function generateOpenClawCommand(options: CommandOptions): string {
const { apiKey, model, verbose } = options;
const keyValue = apiKey ? apiKey : '${DEEPSEEK_API_KEY}';
const verboseFlag = verbose ? ' \\\n --verbose' : '';
return `openclaw onboard \\
--provider deepseek \\
--model ${model} \\
--env DEEPSEEK_API_KEY="${keyValue}"${verboseFlag}`;
}
export function generateConfigSnippet(options: CommandOptions): string {
const { apiKey, model } = options;
const redactedKey = apiKey ? 'sk-***redacted***' : '${DEEPSEEK_API_KEY}';
const config = {
env: {
DEEPSEEK_API_KEY: redactedKey,
},
agents: {
defaults: {
model: {
primary: model,
},
},
},
};
return JSON.stringify(config, null, 2);
}
// src/types.ts
export type DeepSeekModel =
| 'deepseek/deepseek-v4-flash'
| 'deepseek/deepseek-v4-pro'
| 'deepseek/deepseek-chat'
| 'deepseek/deepseek-reasoner';
export interface OpenClawConfig {
env: {
DEEPSEEK_API_KEY: string;
};
agents: {
defaults: {
model: {
primary: DeepSeekModel;
};
};
};
}
# Use V4 Flash for fast, lightweight agent tasks
openclaw onboard \
--provider deepseek \
--model deepseek/deepseek-v4-flash \
--env DEEPSEEK_API_KEY="${DEEPSEEK_API_KEY}"
# Use V4 Pro for multi-file refactoring and architecture work
openclaw onboard \
--provider deepseek \
--model deepseek/deepseek-v4-pro \
--env DEEPSEEK_API_KEY="${DEEPSEEK_API_KEY}" \
--verbose
# Use DeepSeek Reasoner for debugging and analysis
openclaw onboard \
--provider deepseek \
--model deepseek/deepseek-reasoner \
--env DEEPSEEK_API_KEY="${DEEPSEEK_API_KEY}"
{
"env": {
"DEEPSEEK_API_KEY": "${DEEPSEEK_API_KEY}"
},
"agents": {
"defaults": {
"model": {
"primary": "deepseek/deepseek-v4-flash",
"fallback": "deepseek/deepseek-chat"
}
},
"research": {
"model": {
"primary": "deepseek/deepseek-reasoner"
}
},
"coding": {
"model": {
"primary": "deepseek/deepseek-v4-pro"
}
}
}
}
# Always use environment variables
export DEEPSEEK_API_KEY="your-actual-key"
# Or use a .env file (add to .gitignore)
echo "DEEPSEEK_API_KEY=your-actual-key" >> .env
echo ".env" >> .gitignore
function redactApiKey(key: string): string {
if (!key) return '${DEEPSEEK_API_KEY}';
return 'sk-***redacted***';
}
{
"channels": {
"slack": {
"allowlist": ["@specific-user"],
"mentionRequired": true
}
}
}
Solution: Verify the model ID against current DeepSeek documentation. Model names may change between versions.
# Check available models via DeepSeek API
curl https://api.deepseek.com/v1/models \
-H "Authorization: Bearer ${DEEPSEEK_API_KEY}"
Solution: Ensure your key is correctly set and has the necessary permissions.
# Test API key
curl https://api.deepseek.com/v1/chat/completions \
-H "Authorization: Bearer ${DEEPSEEK_API_KEY}" \
-H "Content-Type: application/json" \
-d '{"model":"deepseek-chat","messages":[{"role":"user","content":"test"}]}'
Solution: Ensure all dependencies are installed and TypeScript config is correct.
# Reinstall dependencies
rm -rf node_modules package-lock.json
npm install
# Check TypeScript version
npx tsc --version
# Run type check
npx tsc --noEmit
Solution: Verify OpenClaw installation and provider support.
# Check OpenClaw version
openclaw --version
# List available providers
openclaw providers list
# Verify DeepSeek provider is installed
openclaw providers info deepseek
deepseek-openclaw/
├── src/
│ ├── App.tsx # Main application component
│ ├── main.tsx # React entry point
│ ├── models.ts # DeepSeek model definitions
│ ├── openclaw.ts # Command and config generators
│ ├── types.ts # TypeScript type definitions
│ └── styles.css # Global styles
├── .env.example # Environment variable template
├── vite.config.ts # Vite build configuration
├── tsconfig.json # TypeScript configuration
└── package.json # Dependencies and scripts