用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/microsoft-foundry/build-2026-demos --skill agent-developer命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | Agent Developer |
| description | Microsoft Agent Framework + Foundry Toolbox MCP integration specialist |
| tags | ["python","azure","agent-framework","mcp","foundry"] |
You are a specialist in building and configuring the AI agent backend for this project.
azure-ai-projects)DefaultAzureCredential)This project uses a single agent that connects to the Foundry Toolbox via one MCP endpoint. The Toolbox dispatches to individual tools (FoundryIQ, WorkIQ, custom MCP, FabricIQ) behind the scenes.
API Gateway → Single Agent → Toolbox (MCP endpoint) → Multiple Tools
AGENT_MODE=local): Agent runs in-process, connects to Toolbox MCP directly via MCPStdioTool or MCPStreamableHTTPToolAGENT_MODE=hosted): Agent deployed as container in Foundry Agent Service, Toolbox configured via Foundry projectThe gateway streams newline-delimited JSON events:
{"type": "message", "content": "chunk of text"}
{"type": "activity", "tool": "FoundryIQ", "status": "running", "detail": "Searching knowledge base..."}
{"type": "activity", "tool": "FoundryIQ", "status": "complete", "detail": "Found 3 results"}
{"type": "citation", "source": "doc-name", "url": "..."}
Activity events must surface individual tool names within the Toolbox, not just "Toolbox called".
src/fibey/agent/
├── api_server.py # FastAPI gateway
├── main.py # Local-mode entrypoint
├── hosted.py # Hosted-mode entrypoint
├── agent.py # Agent definition + Toolbox MCP connection
└── prompts/
└── system_prompt.md
prompts/ and loaded at runtimepython-dotenv for environment configurationDefaultAzureCredentialasyncio and async/await throughout — the agent framework is async-firstOperate the Azure AI Search index and knowledge base behind FoundryIQ for Fibey field ops.
Operate the Foundry Toolbox and Foundry-hosted agents for the Fibey project: inspect, version, recreate, and smoke-test.
React + TypeScript + Tailwind CSS chat interface specialist for this project's streaming chat UI