Skip to content
Work IQ Dev Tools are in preview (v0.12.2). Commands and APIs may change before 1.0. See the installation guide.

Getting Started

Welcome to Work IQ Dev Tools (the wiqd CLI). This section walks you through installation, authentication, and creating your first M365 Copilot declarative agent.

Work IQ Dev Tools provide a developer CLI for building, validating, and publishing M365 Copilot declarative agents. They deliver a streamlined experience for the full agent lifecycle — from scaffolding a new project to sharing it with your organization.

  1. Installation — Install wiqd with a single command.
  2. Quickstart — Create your first agent in 5 minutes.
  3. Authentication — Sign in to your Microsoft 365 account.
  • Node.js 24+ (auto-installed via fnm on Windows, or nvm/Homebrew on macOS/Linux)
  • A Microsoft 365 account with access to Copilot
  • An Azure subscription (for provisioning agents)

Install wiqd and all dependencies with a single command:

Terminal window
iex "& { $(irm 'https://aka.ms/wiqd/install.ps1') }"

On macOS / Linux:

Terminal window
curl -fsSL https://aka.ms/wiqd/install.sh | bash

Work IQ Dev Tools also ship a Copilot CLI agent. Once installed, you can drive the agent lifecycle conversationally in interactive mode by passing --agent wiqd:wiqd, which routes your request to the wiqd orchestrator for skill routing, lifecycle orchestration, and next-step suggestions:

Terminal window
copilot -i "create a new declarative agent" --agent wiqd:wiqd

Always include --agent wiqd:wiqd so Copilot CLI targets the wiqd orchestrator rather than generic behavior.