From 8b51d2489f2adf23b56d0a028a3c24c0b30aae71 Mon Sep 17 00:00:00 2001 From: Jason Etcovitch Date: Wed, 21 Jan 2026 18:05:11 -0500 Subject: [PATCH] Stub out workiq plugin spec --- .github/plugin/marketplace.json | 11 +++++++++-- plugins/workiq/.mcp.json | 15 +++++++++++++++ plugins/workiq/skills/example/SKILL.md | 7 +++++++ 3 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 plugins/workiq/.mcp.json create mode 100644 plugins/workiq/skills/example/SKILL.md diff --git a/.github/plugin/marketplace.json b/.github/plugin/marketplace.json index 15b51e0..b6f4de6 100644 --- a/.github/plugin/marketplace.json +++ b/.github/plugin/marketplace.json @@ -4,5 +4,12 @@ "description": "GitHub Copilot plugins", "version": "1.0.0" }, - "plugins": [] -} + "plugins": [ + { + "name": "workiq", + "source": "plugins/workiq", + "description": "WorkIQ plugin for GitHub Copilot.", + "version": "1.0.0" + } + ] +} \ No newline at end of file diff --git a/plugins/workiq/.mcp.json b/plugins/workiq/.mcp.json new file mode 100644 index 0000000..fe99dd6 --- /dev/null +++ b/plugins/workiq/.mcp.json @@ -0,0 +1,15 @@ +{ + "mcpServers": { + "workiq": { + "command": "npx", + "args": [ + "-y", + "@microsoft/workiq", + "mcp" + ], + "tools": [ + "*" + ] + } + } +} \ No newline at end of file diff --git a/plugins/workiq/skills/example/SKILL.md b/plugins/workiq/skills/example/SKILL.md new file mode 100644 index 0000000..313e92c --- /dev/null +++ b/plugins/workiq/skills/example/SKILL.md @@ -0,0 +1,7 @@ +--- +name: Example skill +description: An example skill that demonstrates how to create a custom skill for WorkIQ. +--- +# Example Skill + +This is an example skill for WorkIQ that showcases how to create a custom skill. You can use this as a template to build your own skills. \ No newline at end of file