Skills Plugins MCP Prompt Model 博客 我的中心
开发编程 #data #database #ai #agent

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the privacy/cost/offline trade-offs. Based on Lesson 17 of AI Agents for Beginners. USE FOR: run an agent locally, offline agent, on-device agent, Foundry Local, Qwen function calling, local tool calling, local RAG, Chroma vector database, local MCP server, privacy-preserving agent, hybrid local and cloud agent, small language model agent, engineering assistant on my machine. DO NOT USE FOR: deploying agents to the cloud at scale (use deploying-scalable-agents / Lesson 16), building your first agent concept (Lesson 01), Foundry (cloud) hosted agents, GPU cluster / server-side inference provisioning.

DeepseekModel 官方收录技能 质量 优秀 · 90 v1.0.0

获取

https://deepseekmodel.com/api/download.php?id=microsoft-ai-agents-for-beginners-agents-skills-local-ai-agents-skill-md&format=skill
下载 .skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name local-ai-agents description Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the privacy/cost/offline trade-offs. Based on Lesson 17 of AI Agents for Beginners. USE FOR: run an agent locally, offline agent, on-device agent, Foundry Local, Qwen function calling, local tool calling, local RAG, Chroma vector database, local MCP server, privacy-preserving agent, hybrid local and cloud agent, small language model agent, engineering assistant on my machine. DO NOT USE FOR: deploying agents to the cloud at scale (use deploying-scalable-agents / Lesson 16), building your first agent concept (Lesson 01), Foundry (cloud) hosted agents, GPU cluster / server-side inference provisioning. license MIT Creating Local AI Agents with Foundry Local and Qwen Companion skill for Lesson 17 – Creating Local AI Agents . Use it to help a learner build an agent that reasons, calls tools, and searches documentation entirely on their own machine — no cloud inference. Ground every recommendation in the lesson content and the runnable notebook. Triggers Activate this skill when a learner wants to: Run an agent fully on-device for privacy, cost, or offline reasons. Serve a model locally with Foundry Local and connect via the OpenAI-compatible endpoint. Use a Qwen function-calling model to drive reliable local tool calls. Add local RAG (Chroma) or a local MCP server . Design a hybrid local/cloud routing strategy. Core mental model An SLM trades breadth for privacy, cost, and offline operation. The winning strategy: let the SLM orchestrate and let tools do the heavy lifting. The model does not need to know the codebase — it needs to know when to call read_file and search_docs . That plays to an SLM's strength (bounded decisions like tool selection) and away from its weakness (broad knowledge, long multi-hop reasoning). Why these specific pieces Foundry Local exposes an OpenAI-compatible HTTP endpoint , so cloud agent code transfers by changing only base_url (and using a local placeholder API key). It also auto-selects the best build (CPU/GPU/NPU) for the machine. Qwen models are trained for function calling and emit well-formed tool calls consistently — this is what turns a local chat model into a local agent . Chroma runs in-process and stores vectors on disk, so the whole RAG pipeline (embed → store → retrieve → reason) stays local. MCP is a transport, not a cloud service: an MCP server can run locally over stdio . Setup essentials foundry model run qwen2.5-7b-instruct foundry service status from foundry_local import FoundryLocalManager from openai import OpenAI manager = FoundryLocalManager( "qwen2.5-7b-instruct" ) client = OpenAI(base_url=manager.endpoint, api_key=manager.api_key) # local placeholder ~8 GB RAM is a realistic minimum; a GPU/NPU helps but is not required. Key patterns to reproduce Point the learner at the notebook 17-local-agent-foundry-local.ipynb : Sandboxed tools : every file tool resolves paths and rejects anything outside a single project root — even locally, a tool runs with the user's permissions. Tool-calling loop : register tools with the OpenAI tools schema, execute requested tools locally, feed results back, repeat until a final answer. Local RAG : upsert docs into a Chroma collection; search_docs returns top-k chunks. Local MCP : connect to a local server over stdio ; scope it to a project directory and validate its outputs. Hybrid routing (local as one of the models) Situation Where it runs Sensitive data / offline Local SLM Simple, bounded task Local SLM (cheap, fast) Hard multi-hop reasoning on non-sensitive data Cloud model Cloud outage Local SLM (graceful degradation) This mirrors the model-routing idea from Lesson 16, with the workstation as one of the routes. Prefer designs that fall back to local so the agent degrades in quality rather than failing outright. Guardrails for the assistant Keep every file/tool operation scoped to a sandboxed project directory. Do not send code or data to the cloud when the learner's stated goal is privacy/offline — keep the whole pipeline local. Set realistic expectations for SLM quality; lean on tools and RAG rather than the model's memorised knowledge. Note that Lesson 17 has no Foundry Responses endpoint, so the cloud smoke-test action does not apply — validate by running the notebook locally.
Agent 识别该技能的关键词,点击任意一个即可复制。

该技能未提供触发词。

下载的 .skill 包内含以下字段。
字段 说明
format格式标识(skill/v1)
skill_id技能唯一 ID
name技能名称
version版本号
description技能描述
category所属分类(数组)
trigger_words触发词列表
tags标签列表
source来源标识
source_url来源链接(本页地址)
exported_at导出时间(每次下载生成)
system_prompt系统提示词正文
model_config模型参数:provider / model / temperature / max_tokens / top_p
examples示例
install_guide各平台导入说明(Coze / Dify / Claude / 自定义框架)
同一份技能可按不同平台格式导出。
.skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用 下载
.skillpro 增强格式,额外含脚本 / 工具 / 依赖 / 钩子占位 下载
.json 纯 JSON 导出,只含 system_prompt 与模型参数 下载
Coze 带 frontmatter 的 Markdown,Coze 平台导入用 下载
Dify Dify DSL,创建应用后直接导入 下载

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。