Token导航 LogoToken导航TokenDH.com
运维和基础设施执行命令github未标认证来源可访问许可证需确认审计异常

m365-agent-scaffolderm365 Agent 脚手架

Agent Skill

m365-agent-scaffolder 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

282

周安装

12

GitHub Stars

4

下载量

99
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:m365-agent-scaffolder(m365 Agent 脚手架)
来源仓库:https://github.com/sebastienlevert/m365-copilot-skills
仓库路径:skills/m365-agent-scaffolder
安装命令:
npx skills add https://github.com/sebastienlevert/m365-copilot-skills --skill m365-agent-scaffolder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/sebastienlevert/m365-copilot-skills --skill m365-agent-scaffolder

简介

m365-agent-scaffolder 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 它可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 安装命令为 npx skills add https://github.com/sebastienlevert/m365-copilot-skills --skill m365-agent-scaffolder。
  • 当前分类为运维和基础设施,适用于 Codex、Claude、Cursor、Gemini CLI。

SKILL.md

M365 Agent Scaffolder

⛔ STOP - READ THIS FIRST ⛔

THE ONLY VALID COMMAND

Copy this command EXACTLY. Replace <project-name> with the user's project name:

npx -p @microsoft/m365agentstoolkit-cli@latest atk new -n <project-name> -c declarative-agent -with-plugin type-spec -i false

FORBIDDEN COMMANDS - THESE DO NOT EXIST

❌ INVALID COMMANDWHY IT FAILS
atk initDOES NOT EXIST - there is no init command
atk init --templateDOES NOT EXIST - there is no init command or --template flag
atk createDOES NOT EXIST - there is no create command
atk scaffoldDOES NOT EXIST - there is no scaffold command
--template anythingDOES NOT EXIST - there is no --template flag
--template declarative-copilotDOES NOT EXIST - this is completely made up
--template m365-agentDOES NOT EXIST - this is completely made up
Any command without npx -p @microsoft/m365agentstoolkit-cli@latest prefixWILL FAIL - atk might not be installed globally

CORRECT vs WRONG

CORRECT:

npx -p @microsoft/m365agentstoolkit-cli@latest atk new -n my-agent -c declarative-agent -with-plugin type-spec -i false

WRONG (DO NOT USE):

atk init my-agent --template declarative-copilot

WRONG (DO NOT USE):

atk init my-agent --template m365-agent

WRONG (DO NOT USE):

atk create my-agent

Quick Summary

This skill does ONE thing: creates new M365 Copilot agent project structures. It:

  1. Collects minimal required information
  2. Scaffolds the project using ATK CLI
  3. Automatically continues to m365-agent-developer skill for implementation

All architecture, planning, implementation, and deployment is handled by the m365-agent-developer skill.


When to Use This Skill

Use this skill ONLY when:

  • Creating a brand new empty M365 Copilot agent project from scratch
  • The user explicitly asks to create a new M365 Copilot project, agent or workspace
  • Starting a new M365 Copilot agent development initiative that needs initial project structure

Do NOT use this skill when:

  • Working with existing projects (use m365-agent-developer)
  • Implementing features or capabilities (use m365-agent-developer)
  • Deploying or managing agents (use m365-agent-developer)
  • Troubleshooting issues (use m365-agent-developer)
  • Designing architecture or planning (use m365-agent-developer)

Instructions

Follow these exact steps when creating a new M365 Copilot agent project:

Step 1: Understand the Request

Action: Verify the user wants to create a NEW M365 Copilot agent project.

Check for:

  • Keywords: "new project", "create agent", "scaffold", "start from scratch", "M365 Copilot", "M365 agent", "declarative agent"
  • Confirmation this is NOT an existing project

If existing project: Stop and recommend using m365-agent-developer skill.

Step 2: Verify Empty Directory and Collect Project Name

Action: First, check if the current directory is empty. Then ask for the project name.

Directory Check (CRITICAL):

  • Use ls -A to check if current directory is empty
  • Ignore hidden folders (folders starting with .) when evaluating if directory is empty:

- Hidden folders like .claude, .copilot, .github are configuration/metadata folders - These folders are used to steer coding agents and should not prevent scaffolding - If ONLY hidden folders exist, treat the directory as empty

  • If directory is NOT empty (has non-hidden files/folders), ERROR OUT with message: ❌ Error: Current directory is not empty! This skill requires an empty directory to scaffold a new M365 Copilot agent project. Please navigate to an empty directory or create a new one first.
  • Do NOT proceed if directory has non-hidden content

If directory is empty, collect:

  1. Project name (required)

- What should the M365 Copilot agent project be named? - Must be valid for directory names (no spaces, special characters) - Example: "customer-support-agent", "sales-assistant"

Example question:

What would you like to name your M365 Copilot agent project?

Step 3: Run ATK CLI Command and Move Files to Current Directory

Action: Execute the scaffolding command, then move files from the ATK-created subfolder to the current directory.

⛔ COMMAND REMINDER - COPY EXACTLY ⛔

Commands to execute sequentially:

  1. Create the project (COPY THIS EXACT COMMAND):
npx -p @microsoft/m365agentstoolkit-cli@latest atk new -n <project-name> -c declarative-agent -with-plugin type-spec -i false

BEFORE YOU RUN ANY COMMAND, VERIFY:

  • ✅ Command starts with npx -p @microsoft/m365agentstoolkit-cli@latest
  • ✅ Command uses atk new (NOT atk init, NOT atk create)
  • ✅ Command has -c declarative-agent (NOT --template)
  • ✅ Command has -with-plugin type-spec
  • ✅ Command has -i false

IF YOUR COMMAND LOOKS LIKE ANY OF THESE, STOP - IT IS WRONG:

  • atk init... → WRONG, use atk new
  • --template... → WRONG, use -c declarative-agent
  • ❌ Missing npx -p @microsoft/m365agentstoolkit-cli@latest → WRONG

Parameters:

  • -n <project-name>: The project name provided by the user (ONLY parameter to customize)
  • -c declarative-agent: Create a declarative agent (REQUIRED - do not change)
  • -with-plugin type-spec: Include TypeSpec plugin scaffolding (REQUIRED - do not change)
  • -i false: Non-interactive mode (REQUIRED - do not change)

Note: ATK will create a subfolder named <project-name> with all project files.

  1. Move all files from the subfolder to current directory:
mv <project-name>/* <project-name>/.* . 2>/dev/null || true
  1. Delete the now-empty subfolder:
rmdir <project-name>

Why this is important:

  • ATK always creates a subfolder, but we want files in the current directory
  • Moving files ensures the developer's intended directory structure
  • Deleting the empty subfolder keeps the workspace clean

Step 4: Confirm Creation and Continue to m365-agent-developer Skill

Action: Provide a simple confirmation message and automatically continue to m365-agent-developer skill.

Message template:

✅ Project created in current directory: <absolute-current-directory-path>

Your empty M365 Copilot agent project structure is ready.

🎯 Continuing with the m365-agent-developer skill to help you design and implement your agent...

Then immediately invoke m365-agent-developer skill:

  • Use the Skill tool to invoke "m365-agent-developer"
  • Do NOT stop or wait for user confirmation
  • The flow should be seamless and automatic

Examples

For detailed examples of how to use this skill, see the Examples Reference.

Best Practices

For detailed best practices when scaffolding M365 Copilot agent projects, see the Best Practices Reference.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.04%
按下载量换算34

Claude

31.32%
按下载量换算31

Cursor

18.83%
按下载量换算19

Gemini CLI

10.1%
按下载量换算10

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/sebastienlevert/m365-copilot-skills --skill m365-agent-scaffolder 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills