Skip to content
Closed
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
5 changes: 4 additions & 1 deletion .github/workflows/validate-canvas-extensions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ jobs:
ext_name="${file#extensions/}"
ext_name="${ext_name%%/*}"

if [ "$ext_name" = "external-assets" ]; then
# Skip the shared external-assets/ directory and any catalog files that
# live directly under extensions/ (e.g. external.json) β€” these are not
# extension directories. Top-level files are identified by a dot in the name.
if [ "$ext_name" = "external-assets" ] || [[ "$ext_name" == *.* ]]; then
continue
fi

Expand Down
Binary file added extensions/external-assets/vox-preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions extensions/external.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,31 @@
"installUrl": "https://github.com/jdubois/coffilot",
"sourceUrl": "https://github.com/jdubois/coffilot",
"imagePath": "extensions/external-assets/coffilot-preview.png"
},
{
"id": "vox",
"name": "Vox",
"description": "Hands-free voice panel for Copilot: talk to the agent out loud and hear it reply, with a reactive listening orb. Voice in, voice out.",
"author": { "name": "aasis21", "url": "https://github.com/aasis21" },
"keywords": [
"voice",
"text-to-speech",
"speech-to-text",
"accessibility",
"hands-free"
],
"screenshots": {
"icon": {
"path": "extensions/external-assets/vox-preview.png",
"type": "image/png"
},
"gallery": {
"path": "extensions/external-assets/vox-preview.png",
"type": "image/png"
}
},
"installUrl": "https://github.com/aasis21/vox",
"sourceUrl": "https://github.com/aasis21/vox",
"imagePath": "extensions/external-assets/vox-preview.png"
}
]
Loading