Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
}
15 changes: 15 additions & 0 deletions plugins/workiq/.mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"mcpServers": {
"workiq": {
"command": "npx",
"args": [
"-y",
"@microsoft/workiq",
"mcp"
],
"tools": [
"*"
]
}
}
}
7 changes: 7 additions & 0 deletions plugins/workiq/skills/example/SKILL.md
Original file line number Diff line number Diff line change
@@ -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.
Loading