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

Plugin authoring reference

This page is a reference, not a how-to — for the step-by-step walkthrough, see Build a Plugin. It documents the constraints of the M365 app-package format itself, and maps each one to where wiqd plugin surfaces it.

The table below lists the files under the project’s appPackage/ directory — the same layout wiqd agent scaffolds. Alongside it, at the project root, sit the wiqd descriptor wiqd.plugin.json, the ATK lifecycle file m365agents.yml, and the per-environment env/.env.<env> files that provision writes.

Path (under appPackage/)Purpose
manifest.jsonThe top-level Teams app manifest — declares the app and its components
color.pngFull-color app icon, 192×192
outline.pngTransparent outline icon, 32×32
declarativeAgent.jsonThe declarative-agent component (if the plugin composes an agent)
instruction.txtThe declarative agent’s instructions, referenced by declarativeAgent.json
skills/<slug>/SKILL.mdA skill component — one folder per skill
ai-plugin.jsonAn API-plugin manifest, at the package root — present only when a composed agent brings API-plugin actions[]
apiSpecificationFile/The OpenAPI spec(s) backing those API-plugin actions

A key divergence from hand-authoring: wiqd plugin create pins the manifest to manifestVersion: "1.29" — a numbered, GA Teams schema — rather than hand-editing 1.28 or devPreview. That version choice has a real behavioral consequence for connectors: at 1.29, agentConnectors[] entries are URL-only and mcpToolDescription becomes optional; at 1.28, mcpToolDescription is required, and if its referenced file isn’t included in the upload ZIP the upload fails with an HTTP 400. Authoring against wiqd’s pinned 1.29 schema sidesteps that schema failure — but not the platform one: Cowork requires mcpToolDescription regardless of what 1.29 permits, so a URL-only connector still fails to verify in the product. Supply one.

Every skill’s SKILL.md starts with YAML frontmatter. Two fields are load-bearing:

FieldConstraint
name1–64 characters, kebab-case, must match its containing folder name exactly
description1–1024 characters, should contain the trigger phrases that should surface the skill

The single most common authoring mistake is a name that doesn’t match its folder — the two are required to agree, and a mismatch is easy to introduce by renaming one without the other.

Kebab-case, precisely: lowercase alphanumeric characters and hyphens only. No underscores, no uppercase letters, no leading/trailing hyphens, and no consecutive hyphens.

nameValid?Why
triage-issueslowercase, hyphen-separated
triage-issues-v2digits are fine after a hyphen
Triage_Issuesuppercase letters and an underscore
-triage-issuesleading hyphen
triage--issuesconsecutive hyphens
triage-issues-trailing hyphen

A skill’s content loads progressively, not all at once — this keeps a busy plugin’s context footprint small until a specific skill is actually needed:

  1. Frontmatter — loaded for every skill at startup, always. This is why description must carry the trigger phrases: it’s the only part of an unused skill an agent has already seen.
  2. SKILL.md body — loaded only once a trigger phrase matches and the skill activates.
  3. references/ — loaded on demand, only when the active skill’s instructions point at a specific reference file.

A fourth category, scripts/, is never loaded into context at all — scripts are executed, and only their output (not their source) becomes part of the conversation.

A skill folder may carry companion files (under references/ and scripts/) subject to:

  • At most 20 files per skill.
  • At most 5 MB per individual file.
  • At most 10 MB total across the skill folder.

Every companion-file path must additionally be:

  • Relative — no absolute paths.
  • Free of .. path segments, backslashes, and null bytes.
  • Not a hidden file — no leading . in the filename.
  • Not a Windows reserved nameCON, PRN, AUX, NUL, COM1COM9, LPT1LPT9 (with or without an extension) are all rejected.
  • Composed of safe filename characters only.

Connector / remote MCP server requirements

Section titled “Connector / remote MCP server requirements”

An agent connector that fronts a remote MCP server must satisfy:

  • HTTPS with TLS 1.2 or later.
  • Streamable HTTP transport, speaking JSON-RPC 2.0.
  • Support for both the tools/list and tools/call methods.
  • Each tool call completing in under 30 seconds.

wiqd’s divergence: wiqd plugin add connector writes a URL-only entry unless you pass --tool-description, because the 1.29 schema marks mcpToolDescription optional.

Copilot Cowork treats mcpToolDescription as required anyway. Its published connector validation rules list a missing one as an Error, and a URL-only connector will pass validate, pass validate --mode deep, provision cleanly, and then show “Could not verify connection” in the Cowork UI with nothing in the authoring loop having warned you. If you are targeting Cowork, capture the server’s tools/list output to a file under appPackage/ and pass --tool-description <file>. add connector warns when you leave it out.

The path is relative to appPackage/. A leading ./ — the form Microsoft Learn’s own examples use — is accepted and canonicalized away, because validateAppPackage compares the raw manifest string against ZIP entry names (which carry no prefix) and would otherwise reject it with “not found in the app package.”

add connector also enforces caps before writing, so an out-of-bounds entry never reaches the manifest in the first place:

FieldCap
Connectors per manifest≤ 10
id (derived from --name)≤ 64 characters
displayName (from --name)≤ 128 characters
description (from --description)≤ 4000 characters
mcpServerUrl (from --url)≤ 2048 characters

A connector or API plugin can declare one of these authentication types:

  • None — no authentication.
  • OAuthPluginVault — OAuth, with tokens managed by the plugin vault.
  • ApiKeyPluginVault — API-key authentication, with the key managed by the plugin vault. Note that API-key auth is not yet available in Cowork — use OAuth or Dynamic Client Registration (DCR) there instead.
  • DynamicClientRegistration — the connector registers its own OAuth client at runtime instead of using a pre-configured client ID. This enum value is not how you enable DCR, and against Entra it does not work at all. Cowork’s own guidance is to omit the authorization node (while still supplying mcpToolDescription), which is what --auth-type dcr emits. And Entra publishes no RFC 7591 registration_endpoint, so DCR is unusable against any Entra-protected MCP server — including every first-party Microsoft one. If your server’s authorization server is login.microsoftonline.com, skip DCR and register a client by hand.

There is deliberately no microsoftEntra type here. composeExtensions has one; agentConnectors does not, so there is no SSO path for a connector. Every OAuth-protected MCP server therefore needs a client ID you own — including first-party Microsoft APIs. And because Entra publishes no RFC 7591 registration_endpoint, DCR is not a workaround for that: an Entra-protected server always costs a hand-registered app.

wiqd plugin add connector wires the manifest side of this for you:

Terminal window
wiqd plugin add connector --name "GitHub MCP" --description "Authenticated GitHub access" \
--url https://api.githubcopilot.com/mcp/ \
--auth-type oauth --auth-reference-id <reference-id>

--auth-type accepts none (default), oauth, api-key, and dcr. oauth and api-key require --auth-reference-id; none and dcr write no authorization node and reject one.

Register the credential first. The reference id comes from the Teams Developer Portal (Tools → OAuth client registration) or from an oauth/register step in m365agents.yml. add connector writes only that pointer — a client ID, client secret, or token must never appear in the manifest. wiqd does not create the app registration or discover OAuth endpoints for you.

Static wiqd plugin validate covers only the declarative-agent (MVL) surface. Everything below surfaces only at wiqd plugin validate --mode deep (package-first AVL) or at upload/submission time — knowing which layer owns which code tells you where in your workflow a given failure will actually appear. The ASKILL-* codes are the Microsoft 365 Copilot platform’s own Agent Skills validation codes (emitted by AVL and at upload), not wiqd-defined — wiqd surfaces them by running deep validation against that platform.

These fire against the manifest’s agentSkills[] array itself, before the package is even inspected — all are severity Error:

CodeMeaning
ASKILL-M001An agentSkills[] entry is missing its required folder property
ASKILL-M002The agentSkills array declares more than 20 entries
ASKILL-M003An agentSkills[] entry’s folder path is longer than 256 characters

These fire once the referenced skill folders are actually opened inside the ZIP — all are severity Error:

CodeMeaning
ASKILL-P001The folder an agentSkills[] entry points at doesn’t exist in the package
ASKILL-P002That folder has no SKILL.md file
ASKILL-P003SKILL.md’s frontmatter isn’t valid, ----delimited YAML
ASKILL-P004SKILL.md frontmatter has no name field
ASKILL-P005SKILL.md frontmatter has no description field
ASKILL-P006SKILL.md’s name doesn’t match its containing folder’s name
ASKILL-P007SKILL.md’s name isn’t valid kebab-case
ASKILL-P008Two or more agentSkills[] entries point at the same folder

Companion-file size and path violations aren’t part of this numbered set — they’re rejected under the rules in Companion-file limits instead.

Connectors are validated as part of the same package-first pass, against a separate set of platform rules rather than numbered ASKILL-* codes:

  • Every connector needs both an id and a displayName, and ids must be unique across the manifest’s connector list.
  • A connector must pick exactly one tool source — either plugin or remoteMcpServer — never both, never neither.
  • mcpServerUrl must be a well-formed HTTPS URL.
  • On manifest 1.28, a remoteMcpServer connector must also carry mcpToolDescription, and the file it names must be present in the uploaded ZIP. wiqd’s add connector targets the pinned 1.29 schema and writes URL-only entries by default, so wiqd-authored connectors do not carry this field unless you pass --tool-description — see Package anatomy. When you do declare one, zipAppPackage collects the referenced file into the app package.
  • authorization.referenceId is required whenever the auth type isn’t None, and conversely must be absent when the type is None.
Failure classSurfaces at
Declarative-agent manifest / API-plugin manifest / OpenAPI errorswiqd plugin validate (static, MVL)
ASKILL-* codes, connector validation ruleswiqd plugin validate --mode deep (package-first, AVL), and at upload/submission
Top-level manifest additionalProperties rejections (a field the Cowork plugin schema doesn’t define, under manifest 1.28)wiqd plugin validate --mode deep, and at upload/submission — a separate, unnumbered schema rejection, not an ASKILL-* code

SKILL.md follows the open Agent Skills standard, which is not wiqd- or Copilot-specific — the same file format is understood by Claude Code, VS Code / GitHub Copilot, Gemini CLI, Cursor, JetBrains Junie, OpenAI Codex, and other agent hosts. Authoring a skill once and exporting it (see Import / export) is how you carry it to those other tools without hand-translating the format.

  • Be specific about triggers. Phrase description as “Use when the user asks to…” rather than a generic capability summary — vague descriptions produce skills that either never activate or activate for the wrong requests.
  • Write numbered workflow steps that map to concrete, executable actions, not abstract guidance.
  • Define an explicit output format so the agent’s response is predictable and testable.
  • Reference connector tools by name. If the skill drives an MCP connector, name its tools explicitly rather than describing them vaguely — inspect the server’s advertised tool list before writing the instructions.
  • Keep SKILL.md lean. Move detailed or rarely-needed material into references/ — remember the body loads on every trigger, but references load only on demand.
  • Never embed secrets in SKILL.md or any companion file. Use connector auth (see Auth types) instead.

Every section of the Microsoft Learn “Build plugins for Copilot Cowork” page, mapped to its wiqd equivalent:

Learn sectionStatus
Package anatomyCovered herePackage anatomy
Convert a Claude pluginCoveredwiqd plugin import replaces Convert-ClaudePluginToMOS3.ps1
Create a skillCoveredBuild a Plugin → Path 1 & 2, SKILL.md frontmatter rules
Reference materialsCoveredThree-layer context-loading model
Connector (MCP)CoveredConnector / remote MCP server requirements
ManifestCoveredPackage anatomy
IconsCoveredPackage anatomy (192×192 / 32×32)
Package (zip with Compress-Archive)Covered, different mechanismwiqd plugin package replaces hand-zipping
Test / sideloadCovered, different mechanismwiqd plugin provision + wiqd plugin share replace raw atk install sideloading
Publish to tenantCoveredBuild a Plugin → Publishing paths
Publish to the public storeOut of scope for wiqd — Partner Center certification/submission is a human/admin step outside wiqd; see Publishing paths
Test connector via dev tunnelsOut of scope for wiqd — wiqd does not manage dev tunnels; expose your MCP server yourself and pass its public https:// URL to wiqd plugin add connector
Packaging patternsCoveredPackage anatomy
Skill best practicesCoveredSkill-authoring best practices
Validation rulesCoveredValidation codes
Cross-platform (Claude, Cursor, etc.)CoveredCross-platform SKILL.md portability, wiqd plugin export
MCP annotationsOut of scope for wiqdwiqd plugin add connector does not scaffold tool-level MCP annotations; the remote server owns them, or you declare them in a --tool-description file
Common questionsCovered — spread across this page and Build a Plugin; ask the conversational path (see Path 1) for anything not covered