{
  "schemaVersion": "1.0",
  "item": {
    "slug": "microsoft-skill-creator",
    "name": "Microsoft Skill Creator",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/TianqiZhang/microsoft-skill-creator",
    "canonicalUrl": "https://clawhub.ai/TianqiZhang/microsoft-skill-creator",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/microsoft-skill-creator",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=microsoft-skill-creator",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/skill-templates.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/microsoft-skill-creator"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/microsoft-skill-creator",
    "agentPageUrl": "https://openagent3.xyz/skills/microsoft-skill-creator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/microsoft-skill-creator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/microsoft-skill-creator/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Microsoft Skill Creator",
        "body": "Create hybrid skills for Microsoft technologies that store essential knowledge locally while enabling dynamic Learn MCP lookups for deeper details."
      },
      {
        "title": "About Skills",
        "body": "Skills are modular packages that extend agent capabilities with specialized knowledge and workflows. A skill transforms a general-purpose agent into a specialized one for a specific domain."
      },
      {
        "title": "Skill Structure",
        "body": "skill-name/\n├── SKILL.md (required)     # Frontmatter (name, description) + instructions\n├── references/             # Documentation loaded into context as needed\n├── sample_codes/           # Working code examples\n└── assets/                 # Files used in output (templates, etc.)"
      },
      {
        "title": "Key Principles",
        "body": "Frontmatter is critical: name and description determine when the skill triggers—be clear and comprehensive\nConcise is key: Only include what agents don't already know; context window is shared\nNo duplication: Information lives in SKILL.md OR reference files, not both"
      },
      {
        "title": "Learn MCP Tools",
        "body": "ToolPurposeWhen to Usemicrosoft_docs_searchSearch official docsFirst pass discovery, finding topicsmicrosoft_docs_fetchGet full page contentDeep dive into important pagesmicrosoft_code_sample_searchFind code examplesGet implementation patterns"
      },
      {
        "title": "CLI Alternative",
        "body": "If the Learn MCP server is not available, use the mslearn CLI from the command line instead:\n\n# Run directly (no install needed)\nnpx @microsoft/learn-cli search \"semantic kernel overview\"\n\n# Or install globally, then run\nnpm install -g @microsoft/learn-cli\nmslearn search \"semantic kernel overview\"\n\nMCP ToolCLI Commandmicrosoft_docs_search(query: \"...\")mslearn search \"...\"microsoft_code_sample_search(query: \"...\", language: \"...\")mslearn code-search \"...\" --language ...microsoft_docs_fetch(url: \"...\")mslearn fetch \"...\"\n\nGenerated skills should include this same CLI fallback table so agents can use either path."
      },
      {
        "title": "Step 1: Investigate the Topic",
        "body": "Build deep understanding using Learn MCP tools in three phases:\n\nPhase 1 - Scope Discovery:\n\nmicrosoft_docs_search(query=\"{technology} overview what is\")\nmicrosoft_docs_search(query=\"{technology} concepts architecture\")\nmicrosoft_docs_search(query=\"{technology} getting started tutorial\")\n\nPhase 2 - Core Content:\n\nmicrosoft_docs_fetch(url=\"...\")  # Fetch pages from Phase 1\nmicrosoft_code_sample_search(query=\"{technology}\", language=\"{lang}\")\n\nPhase 3 - Depth:\n\nmicrosoft_docs_search(query=\"{technology} best practices\")\nmicrosoft_docs_search(query=\"{technology} troubleshooting errors\")\n\nInvestigation Checklist\n\nAfter investigating, verify:\n\nCan explain what the technology does in one paragraph\n Identified 3-5 key concepts\n Have working code for basic usage\n Know the most common API patterns\n Have search queries for deeper topics"
      },
      {
        "title": "Step 2: Clarify with User",
        "body": "Present findings and ask:\n\n\"I found these key areas: [list]. Which are most important?\"\n\"What tasks will agents primarily perform with this skill?\"\n\"Which programming language should code samples prioritize?\""
      },
      {
        "title": "Step 3: Generate the Skill",
        "body": "Use the appropriate template from skill-templates.md:\n\nTechnology TypeTemplateClient library, NuGet/npm packageSDK/LibraryAzure resourceAzure ServiceApp development frameworkFramework/PlatformREST API, protocolAPI/Protocol\n\nGenerated Skill Structure\n\n{skill-name}/\n├── SKILL.md                    # Core knowledge + Learn MCP guidance\n├── references/                 # Detailed local documentation (if needed)\n└── sample_codes/               # Working code examples\n    ├── getting-started/\n    └── common-patterns/"
      },
      {
        "title": "Step 4: Balance Local vs Dynamic Content",
        "body": "Store locally when:\n\nFoundational (needed for any task)\nFrequently accessed\nStable (won't change)\nHard to find via search\n\nKeep dynamic when:\n\nExhaustive reference (too large)\nVersion-specific\nSituational (specific tasks only)\nWell-indexed (easy to search)\n\nContent Guidelines\n\nContent TypeLocalDynamicCore concepts (3-5)✅ FullHello world code✅ FullCommon patterns (3-5)✅ FullTop API methodsSignature + exampleFull docs via fetchBest practicesTop 5 bulletsSearch for moreTroubleshootingSearch queriesFull API referenceDoc links"
      },
      {
        "title": "Step 5: Validate",
        "body": "Review: Is local content sufficient for common tasks?\nTest: Do suggested search queries return useful results?\nVerify: Do code samples run without errors?"
      },
      {
        "title": "For SDKs/Libraries",
        "body": "\"{name} overview\" → purpose, architecture\n\"{name} getting started quickstart\" → setup steps\n\"{name} API reference\" → core classes/methods\n\"{name} samples examples\" → code patterns\n\"{name} best practices performance\" → optimization"
      },
      {
        "title": "For Azure Services",
        "body": "\"{service} overview features\" → capabilities\n\"{service} quickstart {language}\" → setup code\n\"{service} REST API reference\" → endpoints\n\"{service} SDK {language}\" → client library\n\"{service} pricing limits quotas\" → constraints"
      },
      {
        "title": "For Frameworks/Platforms",
        "body": "\"{framework} architecture concepts\" → mental model\n\"{framework} project structure\" → conventions\n\"{framework} tutorial walkthrough\" → end-to-end flow\n\"{framework} configuration options\" → customization"
      },
      {
        "title": "Investigation",
        "body": "microsoft_docs_search(query=\"semantic kernel overview\")\nmicrosoft_docs_search(query=\"semantic kernel plugins functions\")\nmicrosoft_code_sample_search(query=\"semantic kernel\", language=\"csharp\")\nmicrosoft_docs_fetch(url=\"https://learn.microsoft.com/semantic-kernel/overview/\")"
      },
      {
        "title": "Generated Skill",
        "body": "semantic-kernel/\n├── SKILL.md\n└── sample_codes/\n    ├── getting-started/\n    │   └── hello-kernel.cs\n    └── common-patterns/\n        ├── chat-completion.cs\n        └── function-calling.cs"
      },
      {
        "title": "Generated SKILL.md",
        "body": "---\nname: semantic-kernel\ndescription: Build AI agents with Microsoft Semantic Kernel. Use for LLM-powered apps with plugins, planners, and memory in .NET or Python.\n---\n\n# Semantic Kernel\n\nOrchestration SDK for integrating LLMs into applications with plugins, planners, and memory.\n\n## Key Concepts\n\n- **Kernel**: Central orchestrator managing AI services and plugins\n- **Plugins**: Collections of functions the AI can call\n- **Planner**: Sequences plugin functions to achieve goals\n- **Memory**: Vector store integration for RAG patterns\n\n## Quick Start\n\nSee [getting-started/hello-kernel.cs](sample_codes/getting-started/hello-kernel.cs)\n\n## Learn More\n\n| Topic | How to Find |\n|-------|-------------|\n| Plugin development | `microsoft_docs_search(query=\"semantic kernel plugins custom functions\")` |\n| Planners | `microsoft_docs_search(query=\"semantic kernel planner\")` |\n| Memory | `microsoft_docs_fetch(url=\"https://learn.microsoft.com/en-us/semantic-kernel/frameworks/agent/agent-memory\")` |\n\n## CLI Alternative\n\nIf the Learn MCP server is not available, use the `mslearn` CLI instead:\n\n| MCP Tool | CLI Command |\n|----------|-------------|\n| `microsoft_docs_search(query: \"...\")` | `mslearn search \"...\"` |\n| `microsoft_code_sample_search(query: \"...\", language: \"...\")` | `mslearn code-search \"...\" --language ...` |\n| `microsoft_docs_fetch(url: \"...\")` | `mslearn fetch \"...\"` |\n\nRun directly with `npx @microsoft/learn-cli <command>` or install globally with `npm install -g @microsoft/learn-cli`."
      }
    ],
    "body": "Microsoft Skill Creator\n\nCreate hybrid skills for Microsoft technologies that store essential knowledge locally while enabling dynamic Learn MCP lookups for deeper details.\n\nAbout Skills\n\nSkills are modular packages that extend agent capabilities with specialized knowledge and workflows. A skill transforms a general-purpose agent into a specialized one for a specific domain.\n\nSkill Structure\nskill-name/\n├── SKILL.md (required)     # Frontmatter (name, description) + instructions\n├── references/             # Documentation loaded into context as needed\n├── sample_codes/           # Working code examples\n└── assets/                 # Files used in output (templates, etc.)\n\nKey Principles\nFrontmatter is critical: name and description determine when the skill triggers—be clear and comprehensive\nConcise is key: Only include what agents don't already know; context window is shared\nNo duplication: Information lives in SKILL.md OR reference files, not both\nLearn MCP Tools\nTool\tPurpose\tWhen to Use\nmicrosoft_docs_search\tSearch official docs\tFirst pass discovery, finding topics\nmicrosoft_docs_fetch\tGet full page content\tDeep dive into important pages\nmicrosoft_code_sample_search\tFind code examples\tGet implementation patterns\nCLI Alternative\n\nIf the Learn MCP server is not available, use the mslearn CLI from the command line instead:\n\n# Run directly (no install needed)\nnpx @microsoft/learn-cli search \"semantic kernel overview\"\n\n# Or install globally, then run\nnpm install -g @microsoft/learn-cli\nmslearn search \"semantic kernel overview\"\n\nMCP Tool\tCLI Command\nmicrosoft_docs_search(query: \"...\")\tmslearn search \"...\"\nmicrosoft_code_sample_search(query: \"...\", language: \"...\")\tmslearn code-search \"...\" --language ...\nmicrosoft_docs_fetch(url: \"...\")\tmslearn fetch \"...\"\n\nGenerated skills should include this same CLI fallback table so agents can use either path.\n\nCreation Process\nStep 1: Investigate the Topic\n\nBuild deep understanding using Learn MCP tools in three phases:\n\nPhase 1 - Scope Discovery:\n\nmicrosoft_docs_search(query=\"{technology} overview what is\")\nmicrosoft_docs_search(query=\"{technology} concepts architecture\")\nmicrosoft_docs_search(query=\"{technology} getting started tutorial\")\n\n\nPhase 2 - Core Content:\n\nmicrosoft_docs_fetch(url=\"...\")  # Fetch pages from Phase 1\nmicrosoft_code_sample_search(query=\"{technology}\", language=\"{lang}\")\n\n\nPhase 3 - Depth:\n\nmicrosoft_docs_search(query=\"{technology} best practices\")\nmicrosoft_docs_search(query=\"{technology} troubleshooting errors\")\n\nInvestigation Checklist\n\nAfter investigating, verify:\n\n Can explain what the technology does in one paragraph\n Identified 3-5 key concepts\n Have working code for basic usage\n Know the most common API patterns\n Have search queries for deeper topics\nStep 2: Clarify with User\n\nPresent findings and ask:\n\n\"I found these key areas: [list]. Which are most important?\"\n\"What tasks will agents primarily perform with this skill?\"\n\"Which programming language should code samples prioritize?\"\nStep 3: Generate the Skill\n\nUse the appropriate template from skill-templates.md:\n\nTechnology Type\tTemplate\nClient library, NuGet/npm package\tSDK/Library\nAzure resource\tAzure Service\nApp development framework\tFramework/Platform\nREST API, protocol\tAPI/Protocol\nGenerated Skill Structure\n{skill-name}/\n├── SKILL.md                    # Core knowledge + Learn MCP guidance\n├── references/                 # Detailed local documentation (if needed)\n└── sample_codes/               # Working code examples\n    ├── getting-started/\n    └── common-patterns/\n\nStep 4: Balance Local vs Dynamic Content\n\nStore locally when:\n\nFoundational (needed for any task)\nFrequently accessed\nStable (won't change)\nHard to find via search\n\nKeep dynamic when:\n\nExhaustive reference (too large)\nVersion-specific\nSituational (specific tasks only)\nWell-indexed (easy to search)\nContent Guidelines\nContent Type\tLocal\tDynamic\nCore concepts (3-5)\t✅ Full\t\nHello world code\t✅ Full\t\nCommon patterns (3-5)\t✅ Full\t\nTop API methods\tSignature + example\tFull docs via fetch\nBest practices\tTop 5 bullets\tSearch for more\nTroubleshooting\t\tSearch queries\nFull API reference\t\tDoc links\nStep 5: Validate\nReview: Is local content sufficient for common tasks?\nTest: Do suggested search queries return useful results?\nVerify: Do code samples run without errors?\nCommon Investigation Patterns\nFor SDKs/Libraries\n\"{name} overview\" → purpose, architecture\n\"{name} getting started quickstart\" → setup steps\n\"{name} API reference\" → core classes/methods\n\"{name} samples examples\" → code patterns\n\"{name} best practices performance\" → optimization\n\nFor Azure Services\n\"{service} overview features\" → capabilities\n\"{service} quickstart {language}\" → setup code\n\"{service} REST API reference\" → endpoints\n\"{service} SDK {language}\" → client library\n\"{service} pricing limits quotas\" → constraints\n\nFor Frameworks/Platforms\n\"{framework} architecture concepts\" → mental model\n\"{framework} project structure\" → conventions\n\"{framework} tutorial walkthrough\" → end-to-end flow\n\"{framework} configuration options\" → customization\n\nExample: Creating a \"Semantic Kernel\" Skill\nInvestigation\nmicrosoft_docs_search(query=\"semantic kernel overview\")\nmicrosoft_docs_search(query=\"semantic kernel plugins functions\")\nmicrosoft_code_sample_search(query=\"semantic kernel\", language=\"csharp\")\nmicrosoft_docs_fetch(url=\"https://learn.microsoft.com/semantic-kernel/overview/\")\n\nGenerated Skill\nsemantic-kernel/\n├── SKILL.md\n└── sample_codes/\n    ├── getting-started/\n    │   └── hello-kernel.cs\n    └── common-patterns/\n        ├── chat-completion.cs\n        └── function-calling.cs\n\nGenerated SKILL.md\n---\nname: semantic-kernel\ndescription: Build AI agents with Microsoft Semantic Kernel. Use for LLM-powered apps with plugins, planners, and memory in .NET or Python.\n---\n\n# Semantic Kernel\n\nOrchestration SDK for integrating LLMs into applications with plugins, planners, and memory.\n\n## Key Concepts\n\n- **Kernel**: Central orchestrator managing AI services and plugins\n- **Plugins**: Collections of functions the AI can call\n- **Planner**: Sequences plugin functions to achieve goals\n- **Memory**: Vector store integration for RAG patterns\n\n## Quick Start\n\nSee [getting-started/hello-kernel.cs](sample_codes/getting-started/hello-kernel.cs)\n\n## Learn More\n\n| Topic | How to Find |\n|-------|-------------|\n| Plugin development | `microsoft_docs_search(query=\"semantic kernel plugins custom functions\")` |\n| Planners | `microsoft_docs_search(query=\"semantic kernel planner\")` |\n| Memory | `microsoft_docs_fetch(url=\"https://learn.microsoft.com/en-us/semantic-kernel/frameworks/agent/agent-memory\")` |\n\n## CLI Alternative\n\nIf the Learn MCP server is not available, use the `mslearn` CLI instead:\n\n| MCP Tool | CLI Command |\n|----------|-------------|\n| `microsoft_docs_search(query: \"...\")` | `mslearn search \"...\"` |\n| `microsoft_code_sample_search(query: \"...\", language: \"...\")` | `mslearn code-search \"...\" --language ...` |\n| `microsoft_docs_fetch(url: \"...\")` | `mslearn fetch \"...\"` |\n\nRun directly with `npx @microsoft/learn-cli <command>` or install globally with `npm install -g @microsoft/learn-cli`."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/TianqiZhang/microsoft-skill-creator",
    "publisherUrl": "https://clawhub.ai/TianqiZhang/microsoft-skill-creator",
    "owner": "TianqiZhang",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/microsoft-skill-creator",
    "downloadUrl": "https://openagent3.xyz/downloads/microsoft-skill-creator",
    "agentUrl": "https://openagent3.xyz/skills/microsoft-skill-creator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/microsoft-skill-creator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/microsoft-skill-creator/agent.md"
  }
}