feat(plugins): add sample plugin demonstrating the system

Amit Haridas
This commit is contained in:
2026-04-23 22:55:12 +05:30
parent a816b6ec32
commit b5771dd914
2 changed files with 25 additions and 0 deletions
@@ -0,0 +1,13 @@
{
"id": "_sample",
"name": "Sample Plugin",
"version": "1.0.0",
"description": "Demonstrates the plugin system. Safe to delete.",
"icon": "puzzle",
"extensionPoints": {
"commands": [
{ "id": "hello", "label": "Sample: Hello World", "shortcut": "" }
]
},
"settings": []
}