Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
87 lines
2.2 KiB
JSON
87 lines
2.2 KiB
JSON
{
|
||
"$schema": "../../../packages/plugin-contract/schema/plugin-contract.schema.json",
|
||
"manifestVersion": 1,
|
||
"id": "com.netcatty.hello",
|
||
"name": "hello-netcatty",
|
||
"displayName": {
|
||
"en": "Hello Netcatty",
|
||
"zh-CN": "你好,Netcatty"
|
||
},
|
||
"description": "Minimal plugin contract and SDK example.",
|
||
"version": "0.1.0",
|
||
"publisher": "netcatty",
|
||
"license": "GPL-3.0-or-later",
|
||
"engines": {
|
||
"netcatty": ">=0.0.0",
|
||
"api": ">=0.1.0-internal <0.2.0"
|
||
},
|
||
"main": {
|
||
"browser": "dist/index.js"
|
||
},
|
||
"activationEvents": [
|
||
"onCommand:com.netcatty.hello.sayHello",
|
||
"onProvider:com.netcatty.hello.completion",
|
||
"onProvider:com.netcatty.hello.decoration",
|
||
"onProvider:com.netcatty.hello.theme"
|
||
],
|
||
"permissions": {
|
||
"required": [
|
||
"commands",
|
||
"settings.read",
|
||
"menus",
|
||
"provider.terminal",
|
||
"terminal.complete",
|
||
"terminal.output",
|
||
"terminal.decorate"
|
||
],
|
||
"optional": []
|
||
},
|
||
"contributes": {
|
||
"settings": [
|
||
{
|
||
"id": "com.netcatty.hello.greeting",
|
||
"label": "Greeting",
|
||
"description": "Text used by the example command.",
|
||
"control": "text",
|
||
"scope": "application",
|
||
"default": "Hello from Netcatty"
|
||
}
|
||
],
|
||
"commands": [
|
||
{
|
||
"id": "com.netcatty.hello.sayHello",
|
||
"title": "Say Hello",
|
||
"category": "Examples"
|
||
}
|
||
],
|
||
"menus": [
|
||
{
|
||
"command": "com.netcatty.hello.sayHello",
|
||
"location": "commandPalette",
|
||
"group": "examples",
|
||
"order": 10
|
||
}
|
||
],
|
||
"providers": [
|
||
{
|
||
"id": "com.netcatty.hello.completion",
|
||
"label": "Hello completion",
|
||
"description": "Suggests the example hello command.",
|
||
"kind": "terminal.completion"
|
||
},
|
||
{
|
||
"id": "com.netcatty.hello.decoration",
|
||
"label": "Hello decoration",
|
||
"description": "Highlights the example greeting in terminal output.",
|
||
"kind": "terminal.decoration"
|
||
},
|
||
{
|
||
"id": "com.netcatty.hello.theme",
|
||
"label": "Hello theme",
|
||
"description": "Adds a subtle cursor color to the example terminal theme.",
|
||
"kind": "terminal.theme"
|
||
}
|
||
]
|
||
}
|
||
}
|