agent-academy-mission-builder
Scaffolds content and structures new missions, labs, or modules for the Agent Academy repository.
Install
mkdir -p .claude/skills/agent-academy-mission-builder && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/10290" && unzip -o skill.zip -d .claude/skills/agent-academy-mission-builder && rm skill.zipInstalls to .claude/skills/agent-academy-mission-builder
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Scaffold and author content for the microsoft/agent-academy GitHub repo. Use this skill whenever the user wants to create a new mission, lab, or module for Agent Academy — whether that's a course mission (Recruit, Operative, Commander) or a standalone Special Ops mission. Trigger whenever the user says "write a mission", "scaffold a lab", "create a Special Ops", "new Agent Academy module", or describes an agent-building concept they want to turn into a hands-on lesson. Also trigger when the user says "add a module to agent academy", "I want to contribute a mission", or asks about badge creation for Special Ops. This skill handles: repo structure lookup, duplicate detection, mission naming, markdown scaffolding, step-by-step content drafting, cross-linking, tag/category suggestions, difficulty rating, and badge image generation for Special Ops missions.Key capabilities
- →Scaffold mission structure
- →Generate badge images
- →Cross-link missions
- →Assign difficulty ratings
How it works
It interviews the user, checks for duplicates, and generates markdown files based on mission templates.
Inputs & outputs
When to use agent-academy-mission-builder
- →Create a new Agent Academy module
- →Scaffold a hands-on AI lab
- →Generate badge images for missions
- →Contribute a new training mission
About this skill
Agent Academy Mission Builder
This skill scaffolds new content for the microsoft/agent-academy repository at https://github.com/microsoft/agent-academy. It covers two distinct mission types and handles everything from naming to final markdown output, including badge generation for Special Ops.
Think of this skill like a mission briefing officer: it gets the concept from you, does the reconnaissance (checks the repo, checks for duplicates, maps cross-links), then hands you back a fully briefed document you only need to fill in the "boots on the ground" steps for.
Phase 0: Gather Intel (Interview the User)
Before writing anything, collect the following. Ask in one message, not one question at a time:
Required info:
- Mission type: Course mission (Recruit / Operative / Commander) OR Special Ops?
- Topic / feature: What Copilot Studio capability, integration, or concept does this cover?
- Rough description: What will the learner build or do by the end?
- Difficulty (for Special Ops): Beginner / Intermediate / Advanced (maps to 1 / 2 / 3 stars)
- Prerequisites: What must the learner have done or have access to?
For course missions, also ask:
- Which mission number does this follow? (sets the folder name like
07-) - What is the overall course scenario it fits into? (e.g., Operative = Hiring system)
For Special Ops, also ask:
- Industry or use-case context (healthcare, retail, HR, IT, finance, etc.)? Or "general"?
- Any specific integrations (SharePoint, Teams, Dataverse, Azure, MCP, etc.)?
If the user hasn't given you enough to go on, ask. Otherwise proceed.
Phase 1: Reconnaissance (Repo Check)
Use web_search and web_fetch to:
-
Check for duplicates: Search
site:github.com/microsoft/agent-academy [topic keyword]andmicrosoft.github.io/agent-academy [topic keyword]. If something very similar exists, flag it and ask the user whether to proceed anyway or pivot the angle. -
Map existing missions: Fetch https://microsoft.github.io/agent-academy/recruit/ and https://microsoft.github.io/agent-academy/operative/ to get the current mission list. Use this to:
- Assign the correct next mission number for course missions
- Identify missions to cross-link (e.g., if this mission uses MCP, link to Mission 10 MCP)
- Spot curriculum gaps the new mission fills
-
Check Special Ops listing: Fetch https://microsoft.github.io/agent-academy/special-ops/ to see what already exists and identify tags/categories in use.
Report findings briefly before proceeding. If there's a close duplicate, surface it clearly.
Phase 2: Mission Naming
Agent Academy missions use military/spy operation themed names. Rules:
-
Course missions: Use
🚨 Mission XX: [Action Verb] + [What They Build]Examples:🚨 Mission 03: Create a Multi-Agent Orchestration SystemThe operation name appears in the briefing paragraph:Operation [Codename]Codenames are dramatic and thematic: "Operation Talent Scout", "Operation Symphony", "Operation MCP Rendezvous". They relate to what the mission accomplishes. -
Special Ops: The lab title is a punchy phrase, often with a symbol if relevant. Examples:
Microsoft Copilot Studio & MCP,Power Platform CLI MCPThe operation name in the briefing: same dramatic style. The badge bottom banner name is a clever play on the mission topic. See badge section.
Naming formula for operation codenames: [Military/Intelligence Term] + [Thematic Noun]. Examples:
- Adaptive Cards → "Operation Flash Card"
- Event Triggers → "Operation Trip Wire"
- AI Safety → "Operation Safe Harbor"
- Document Generation → "Operation Paper Trail"
- Dataverse Grounding → "Operation Deep Root"
Generate 2-3 name options and let the user pick, or auto-select the best one.
Phase 3: Scaffold the Markdown
Course Mission Template
File: docs/[rank]/[NN]-[slug]/index.md
---
title: "Mission NN: [Title]"
---
# [Emoji] Mission [NN]: [Full Title]
**Welcome, [Rank].** [1-2 sentence scene-setter in mission briefing voice.]
Your assignment, should you choose to accept it, is **[Operation Codename]** —
[one sentence high-level goal].
[2-3 sentences expanding on what they'll build and how it connects to the course scenario.]
## Mission Objective
By the end of this mission, you will have:
- [Concrete deliverable 1]
- [Concrete deliverable 2]
- [Concrete deliverable 3]
## Prerequisites
Before embarking on this mission, ensure you have:
- Completed [Mission N-1: Title](../[folder]/)
- [Any specific access or setup]
> [!TIP]
> [Optional tip for getting access if stuck]
## Background Intel
> [!NOTE]
> [Key concept explanation — 2-4 paragraphs. Explain the why before the how. Include an analogy.]
## Mission Tasks
### Task 1: [Name]
[Brief intro sentence]
1. [Step 1]
2. [Step 2]
3. [Step 3]
> [!NOTE]
> [Callout with context or warning about a common mistake]
### Task 2: [Name]
[... repeat pattern ...]
## Mission Complete
**Mission [NN] is completed!** You now have mastered the following skills:
✅ **[Skill 1]**: [One sentence — what they can now do]
✅ **[Skill 2]**: [One sentence]
✅ **[Skill 3]**: [One sentence]
## Related Missions
- [Mission N-1: Title](../[prev-folder]/) — [Why it connects]
- [Mission N+1: Title](../[next-folder]/) — [What builds on this]
## Further Reading
- [Microsoft docs link]
- [Related Academy content]
Special Ops Template
File: docs/special-ops/[slug]/index.md
---
title: "[Mission Title]"
tags:
- [technology-tag]
- [industry-tag]
difficulty: [1|2|3]
---
# [Emoji] [Mission Title]
> **Difficulty**: [stars] | **Time**: ~[N] min | **Type**: Special Ops

**Welcome, agent.** Your mission — should you choose to accept it — is [one-liner].
## What You'll Build
- [Specific deliverable 1]
- [Specific deliverable 2]
- [Specific deliverable 3]
## Prerequisites
- [Access/license requirement]
- [Tool requirement]
> [!WARNING]
> [Access barrier callout if needed]
## Concept Brief
[2-4 paragraphs on the core concept. Why does it exist? When would you use it?
Include an analogy.]
### Key Terms
| Term | Definition |
|------|------------|
| [Term] | [Plain-language definition] |
## The Scenario
> [!NOTE]
> **Scenario:** [Company] is a [industry] company that needs to [problem]. You are building
> an agent that [solution].
## Mission Tasks
### Task 1: [Name]
1. [Step]
2. [Step]
### Task 2: [Name]
[...]
## Mission Accomplished
Congrats, agent — mission accomplished! Claim your badge:
`https://aka.ms/agent-academy-special-ops/[slug]/form`
## Tags
**Technology**: [tag1], [tag2]
**Industry**: [industry]
**Difficulty**: [stars]
## Related Content
- [Relevant course mission link]
- [Official docs link]
Phase 4: Auto-Draft Background Intel and Scenario
Don't leave these blank. Fill them in using knowledge of Copilot Studio and the feature:
- Write 2-4 paragraphs of background. Voice: energetic, not dry docs.
- Always include an analogy. Existing ones in the repo:
- MCP = "USB-C of AI integration"
- Orchestrator = "symphony conductor"
- Agent = "digital coworker" Find a new one for the new concept.
- For Special Ops: draft the fictional scenario with company name, industry, and problem.
Phase 5: Step-by-Step Drafting
Fill in Mission Tasks based on Copilot Studio knowledge:
- One action per step, clear action verbs (Select, Navigate, Enter, Configure, Test)
- Bold UI element names: Test your agent, Publish, Save
- Code format for: values to type, field names, test messages to send
- Use
[!NOTE],[!TIP],[!WARNING]callouts freely - Where exact steps are unknown, add
<!-- TODO: Add screenshot -->and[FILL IN: describe what needs to happen here]placeholders
Phase 6: Tags and Cross-Links (Special Ops Only)
See references/tags.md for full tag taxonomy. Select 1-3 technology tags and 1-3 industry tags.
Difficulty = number of stars on the badge:
- 1 star: Beginner (single feature, under 30 min, no admin required)
- 2 stars: Intermediate (2-3 concepts, 30-60 min, some config)
- 3 stars: Advanced (multi-step, VSCode, Azure/admin required, 60+ min)
Always cross-link to the most relevant course mission. Check docs/recruit/index.md, docs/operative/index.md, docs/commander/index.md, and docs/special-ops/index.md for the current mission inventory.
Phase 7: Deliver Output
- Scaffolded markdown file create the mission file directly in the repo in the corresponding folder. If it's a recruit course mission, create a folder under
docs/recruit/with the appropriate mission name and place anindex.mdfile inside as well as anassetsfolder for images, for example,docs/recruit/mcp-lab/index.md. Repeat this pattern for operative and commander missions under their respective folders. For Special Ops, create the folder underdocs/special-ops/with the slug name and place theindex.mdfile andassetsfolder inside, for example,docs/special-ops/mcp-lab/index.md. - Summary of what was pre-filled vs. what needs manual work (be explicit about TODOs)
- Cross-link map of which missions link here, and where this links
- For Special Ops: Tags, difficulty, badge banner name, and image generation prompt
- Duplicate check result with links to anything similar that exists
End every delivery with:
"The bones are done. Fill in the step-by-step and swap in real screenshots. Want me to draft any specific task section in more detail?"
Reference Files
Read these when needed:
WRITING_STYLE.md(repo root) — Voice, tone, formatting rulesdocs/recruit/index.md— Recruit mission inventory for numbering and cross-linkingdocs/operative/index.md— Operative mission inventorydocs/commander/index.md— Commander mission inventorydocs/special-ops/index.md— Exist
Content truncated.
When not to use it
- →Non-educational content
- →Projects outside Agent Academy
Prerequisites
Limitations
- →Requires specific folder structure
- →Limited to Agent Academy mission types
How it compares
It automates the creation of standardized training content for a specific repository.
Compared to similar skills
agent-academy-mission-builder side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| agent-academy-mission-builder (this skill) | 0 | 5mo | No flags | Intermediate |
| planning-with-files | 233 | 6mo | Review | Intermediate |
| gepetto | 1 | 6mo | No flags | Intermediate |
| lecture-transcript-slide-matcher | 6 | 9mo | Review | Advanced |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by microsoft
View all by microsoft →You might also like
planning-with-files
davila7
Implements Manus-style file-based planning for complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when starting complex multi-step tasks, research projects, or any task requiring >5 tool calls.
gepetto
davila7
Creates detailed, sectionized implementation plans through research, stakeholder interviews, and multi-LLM review. Use when planning features that need thorough pre-implementation analysis.
lecture-transcript-slide-matcher
az9713
Combines YouTube lecture transcripts with PDF slides to create an interactive HTML page. Matches each slide to corresponding transcript segments, organized by key concepts. Use when users want to create synchronized lecture notes from transcript text files and slide PDFs.
compact
catlog22
Compact current session memory into structured text for session recovery. Supports custom descriptions and tagging.
skill-builder
ruvnet
Create new Claude Code Skills with proper YAML frontmatter, progressive disclosure structure, and complete directory organization. Use when you need to build custom skills for specific workflows, generate skill templates, or understand the Claude Skills specification.
vibe-agents
KhazP
Generate AGENTS.md and AI configuration files for your project. Use when the user wants to create agent instructions, set up AI configs, or says "create AGENTS.md", "configure my AI assistant", or "generate agent files".