GitHub Copilot ChatGPT Claude Codex CLI Cursor opencode Skill Text

install-atk

Install or update the M365 Agents Toolkit (ATK) CLI and VS Code extension. Triggers: "install atk", "update atk", "install agents toolkit", "update agents toolkit", "install the toolkit", "setup atk", "get atk", "install atk cli", "install atk extension", "install atk vsix", "upd

Ciza · 0 points · 19 views 1 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download microsoft-skills-.github_plugins_microsoft-365-agents-toolkit_skills_install-atk-e58528d.zip · 1 KB
Part of microsoft/skills — 195 skills

Install

skills CLI npx skills add https://github.com/microsoft/skills/tree/main/.github/plugins/microsoft-365-agents-toolkit/skills/install-atk
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install microsoft-skills@llmmart
Git git clone https://github.com/microsoft/skills.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole microsoft/skills collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

Install ATK

Install or update the M365 Agents Toolkit (ATK) CLI and/or VS Code extension.

Telemetry Tagging

Before running any atk CLI commands, set the session environment variable so all CLI invocations are tagged as skill-initiated:

export ATK_CLI_SKILL=true

Run this once at the start of the session. All subsequent atk commands in the same terminal will inherit it.

Triggers

This skill activates when the user asks to:

  • Install or update ATK / Agents Toolkit / the toolkit
  • Install or update the ATK CLI
  • Install or update the ATK VS Code extension / VSIX
  • Set up ATK / get started with ATK

Behavior

ATK CLI commands use npx -y --package @microsoft/m365agentstoolkit-cli atk which automatically downloads and runs the latest version — no global installation is needed.

When triggered, determine what the user wants:

User intent Action
Install/update everything or just "ATK" Verify CLI works + install VSIX
Install/update CLI only Verify CLI works (npx handles it automatically)
Install/update extension / VSIX only Install VSIX only
Ambiguous Verify CLI works + install VSIX

Commands

Step 1: Verify ATK CLI works

npx -y --package @microsoft/m365agentstoolkit-cli atk --version
  • If this succeeds (prints a version): ATK CLI is available. The npx prefix automatically downloads the latest package on first use and caches it for subsequent runs.
  • If this fails: Check that Node.js 18+ and npm are installed. The npx command requires a working Node.js environment.

Step 2: ATK VS Code Extension (if requested)

code --install-extension TeamsDevApp.ms-teams-vscode-extension

Execution

  1. Verify ATK CLI works by running npx -y --package @microsoft/m365agentstoolkit-cli atk --version
  2. Report the result (version number / failure)
  3. Install VS Code extension if requested
  4. Explain that all ATK commands use the npx -y --package @microsoft/m365agentstoolkit-cli atk prefix — no global install needed

Safety Rules

  • MUST NOT skip errors — report failures clearly to the user
  • MUST use the exact package names and extension IDs above — do not substitute with other names or links
Files (skills)
  • SKILL.md 2.6 KB
    ---
    name: install-atk
    description: >
      Install or update the M365 Agents Toolkit (ATK) CLI and VS Code extension.
      Triggers: "install atk", "update atk", "install agents toolkit", "update agents toolkit",
      "install the toolkit", "setup atk", "get atk", "install atk cli", "install atk extension",
      "install atk vsix", "update the vs code extension", "install latest atk", "upgrade atk"
    ---
    
    # Install ATK
    
    Install or update the M365 Agents Toolkit (ATK) CLI and/or VS Code extension.
    
    ## Telemetry Tagging
    
    Before running any `atk` CLI commands, set the session environment variable so all CLI invocations are tagged as skill-initiated:
    ```bash
    export ATK_CLI_SKILL=true
    ```
    Run this once at the start of the session. All subsequent `atk` commands in the same terminal will inherit it.
    
    ## Triggers
    
    This skill activates when the user asks to:
    - Install or update ATK / Agents Toolkit / the toolkit
    - Install or update the ATK CLI
    - Install or update the ATK VS Code extension / VSIX
    - Set up ATK / get started with ATK
    
    ## Behavior
    
    ATK CLI commands use `npx -y --package @microsoft/m365agentstoolkit-cli atk` which automatically downloads and runs the latest version — no global installation is needed.
    
    When triggered, determine what the user wants:
    
    | User intent | Action |
    |-------------|--------|
    | Install/update **everything** or just "ATK" | Verify CLI works + install VSIX |
    | Install/update **CLI** only | Verify CLI works (npx handles it automatically) |
    | Install/update **extension** / **VSIX** only | Install VSIX only |
    | Ambiguous | Verify CLI works + install VSIX |
    
    ## Commands
    
    ### Step 1: Verify ATK CLI works
    
    ```bash
    npx -y --package @microsoft/m365agentstoolkit-cli atk --version
    ```
    
    - **If this succeeds** (prints a version): ATK CLI is available. The `npx` prefix automatically downloads the latest package on first use and caches it for subsequent runs.
    - **If this fails**: Check that Node.js 18+ and npm are installed. The `npx` command requires a working Node.js environment.
    
    ### Step 2: ATK VS Code Extension (if requested)
    
    ```bash
    code --install-extension TeamsDevApp.ms-teams-vscode-extension
    ```
    
    ## Execution
    
    1. **Verify** ATK CLI works by running `npx -y --package @microsoft/m365agentstoolkit-cli atk --version`
    2. Report the result (version number / failure)
    3. Install VS Code extension if requested
    4. Explain that all ATK commands use the `npx -y --package @microsoft/m365agentstoolkit-cli atk` prefix — no global install needed
    
    ## Safety Rules
    
    - **MUST NOT** skip errors — report failures clearly to the user
    - **MUST** use the exact package names and extension IDs above — do not substitute with other names or links
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related