Agent Skills
› xuiltul/animaworks
› local-llm-tool
local-llm-tool
GitHub本地LLM执行工具,通过Ollama或vLLm端点提供文本生成和对话功能。支持在本地GPU上运行推理、调用自托管模型及摘要处理。
Trigger Scenarios
需要本地部署的LLM进行文本生成
使用自托管LLM进行多轮对话
查询本地LLM模型列表或服务状态
Install
npx skills add xuiltul/animaworks --skill local-llm-tool -g -y
SKILL.md
Frontmatter
{
"name": "local-llm-tool",
"tags": [
"llm",
"local",
"ollama",
"external"
],
"description": "Local LLM execution tool for text generation and chat through Ollama or vLLM endpoints. Use when: running on-prem inference, calling a local GPU model, or summarizing with a self-hosted LLM."
}
Local LLM Tool
External tool for text generation and chat via local LLM (Ollama/vLLM).
Invocation via Bash
Use Bash with animaworks-tool local_llm <subcommand> [args]. See Actions below for syntax.
Actions
generate — Text generation
{"tool_name": "local_llm", "action": "generate", "args": {"prompt": "prompt text", "system": "system prompt (optional)", "temperature": 0.7, "max_tokens": 2048}}
chat — Multi-turn chat
{"tool_name": "local_llm", "action": "chat", "args": {"messages": [{"role": "user", "content": "question"}], "system": "system prompt (optional)"}}
models — List available models
{"tool_name": "local_llm", "action": "models", "args": {}}
status — Server status
{"tool_name": "local_llm", "action": "status", "args": {}}
CLI Usage (S/C/D/G-mode)
animaworks-tool local_llm generate "prompt" [-S "system prompt"]
animaworks-tool local_llm list
animaworks-tool local_llm status
Notes
- Ollama or vLLM server must be running
- Use -s/--server to specify server URL
- Use -m/--model to specify model
Version History
- 140e43b Current 2026-07-25 09:12


