Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

local-coding本地编码

Agent Skill

local-coding 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,539

周安装

152

GitHub Stars

1

下载量

1,240
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:local-coding(本地编码)
来源仓库:https://github.com/twinsgeeks/local-coding
安装命令:
openclaw skills install local-coding
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install local-coding

简介

在本地设备群中运行多种代码模型,支持代码生成、审查、重构和调试全流程。

  • 集成 DeepSeek-Coder、Codestral、StarCoder 和 Qwen-Coder 等主流开源模型。
  • 根据项目语言和环境自动选择合适模型,提供实时反馈和结果导出。
  • 需确保本地算力满足模型运行需求,注意代码版权和知识产权归属问题。
  • local-coding 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
local-coding
description
Local coding assistant — run DeepSeek-Coder, Codestral, StarCoder, and Qwen-Coder across your device fleet. Code generation, review, refactoring, and debugging routed to the best available machine. Works with Aider, Continue.dev, Cline, and any OpenAI-compatible coding tool. No cloud API costs, all code stays local.
version
1.0.1
homepage
https://github.com/geeks-accelerator/ollama-herd
metadata
{"openclaw":{"emoji":"keyboard","requires":{"anyBins":["curl","wget"],"optionalBins":["python3","pip"]},"configPaths":["~/.fleet-manager/latency.db","~/.fleet-manager/logs/herd.jsonl"],"os":["darwin","linux","windows"]}}

Local Coding Assistant — Code Models Across Your Fleet

Run the best open-source coding models on your own hardware. DeepSeek-Coder, Codestral, StarCoder, and Qwen-Coder routed across your devices — the fleet picks the best machine for every code generation request.

Your code never leaves your network. No GitHub Copilot subscription, no cloud API costs.

Coding models available

ModelParametersOllama nameStrengths
Codestral22Bcodestral80+ languages, fill-in-the-middle, Mistral's code specialist
DeepSeek-Coder-V2236B MoE (21B active)deepseek-coder-v2Matches GPT-4 Turbo on code tasks
DeepSeek-Coder6.7B, 33Bdeepseek-coder:33bPurpose-built for code (87% code training data)
Qwen2.5-Coder7B, 32Bqwen2.5-coder:32bStrong multi-language code generation
StarCoder23B, 7B, 15Bstarcoder2:15bTrained on The Stack v2, 600+ languages
CodeGemma7BcodegemmaGoogle's code-focused Gemma variant

Quick start

pip install ollama-herd    # PyPI: https://pypi.org/project/ollama-herd/
herd                       # start the router (port 11435)
herd-node                  # run on each device — finds the router automatically

No models are downloaded during installation. All pulls require user confirmation.

Code generation

Write new code

from openai import OpenAI

client = OpenAI(base_url="http://localhost:11435/v1", api_key="not-needed")

response = client.chat.completions.create(
    model="codestral",
    messages=[{"role": "user", "content": "Write a thread-safe LRU cache in Python with TTL support"}],
)
print(response.choices[0].message.content)

Code review

curl http://localhost:11435/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-coder-v2:16b",
    "messages": [{"role": "user", "content": "Review this code for bugs and security issues:\
\

def process_payment(amount, card_number):\ ...\

  }'

Refactoring

curl http://localhost:11435/api/chat -d '{
  "model": "qwen2.5-coder:32b",
  "messages": [{"role": "user", "content": "Refactor this to use async/await: ..."}],
  "stream": false
}'

Works with your IDE tools

The fleet exposes an OpenAI-compatible API at http://localhost:11435/v1. Point any coding tool at it:

ToolConfig
Aideraider --openai-api-base http://localhost:11435/v1 --model codestral
Continue.devSet API base to http://localhost:11435/v1 in VS Code settings
ClineSet provider to OpenAI-compatible, base URL http://localhost:11435/v1
Open WebUISet Ollama URL to http://localhost:11435
LangChainChatOpenAI(base_url="http://localhost:11435/v1", model="codestral")

Pick the right model for your RAM

Cross-platform: These are example configurations. Any device (Mac, Linux, Windows) with equivalent RAM works.
DeviceRAMBest coding model
MacBook Air (8GB)8GBstarcoder2:3b or deepseek-coder:6.7b
Mac Mini (16GB)16GBcodestral or starcoder2:15b
Mac Mini (32GB)32GBqwen2.5-coder:32b or deepseek-coder:33b
Mac Studio (128GB)128GBdeepseek-coder-v2 — frontier code quality

Check what's running

# Models loaded in memory
curl -s http://localhost:11435/api/ps | python3 -m json.tool

# All available models
curl -s http://localhost:11435/api/tags | python3 -m json.tool

# Recent coding request traces
curl -s "http://localhost:11435/dashboard/api/traces?limit=5" | python3 -m json.tool

Also available on this fleet

General-purpose LLMs

Llama 3.3, Qwen 3.5, DeepSeek-R1, Mistral Large — for non-code tasks through the same endpoint.

Image generation

curl http://localhost:11435/api/generate-image \
  -d '{"model": "z-image-turbo", "prompt": "developer workspace illustration", "width": 512, "height": 512}'

Speech-to-text

curl http://localhost:11435/api/transcribe -F "file=@standup.wav" -F "model=qwen3-asr"

Full documentation

Guardrails

  • Model downloads require explicit user confirmation — coding models range from 2GB to 130GB+. Always confirm before pulling.
  • Model deletion requires explicit user confirmation.
  • Never delete or modify files in ~/.fleet-manager/.
  • No models are downloaded automatically — all pulls are user-initiated or require opt-in.
  • Your code stays local — no prompts or generated code leave your network.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

78.84%
按下载量换算978

安全审计

VirusTotal

未展示

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills