mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-04 10:31:37 +00:00
* refactor(channels): move single-account promotion keys to plugin declarations * fix(channels): keep legacy promotion tier for undeclared setup adapters * fix(channels): keep plugin discovery lazy in setup promotion helpers * fix(channels): resolve bundled promotion surfaces from setup-only artifacts * test(matrix): use vi.stubEnv in setup test env helper
71 lines
1.6 KiB
JSON
71 lines
1.6 KiB
JSON
{
|
|
"name": "@openclaw/irc",
|
|
"version": "2026.7.2",
|
|
"description": "OpenClaw IRC channel plugin",
|
|
"type": "module",
|
|
"devDependencies": {
|
|
"@openclaw/plugin-sdk": "workspace:*"
|
|
},
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
],
|
|
"install": {
|
|
"clawhubSpec": "clawhub:@openclaw/irc",
|
|
"npmSpec": "@openclaw/irc",
|
|
"defaultChoice": "npm",
|
|
"minHostVersion": ">=2026.6.9",
|
|
"allowInvalidConfigRecovery": true
|
|
},
|
|
"setupEntry": "./setup-entry.ts",
|
|
"setupFeatures": {
|
|
"configPromotion": true
|
|
},
|
|
"channel": {
|
|
"id": "irc",
|
|
"configuredState": {
|
|
"env": {
|
|
"allOf": [
|
|
"IRC_HOST",
|
|
"IRC_NICK"
|
|
]
|
|
}
|
|
},
|
|
"label": "IRC",
|
|
"selectionLabel": "IRC (Server + Nick)",
|
|
"detailLabel": "IRC",
|
|
"docsPath": "/channels/irc",
|
|
"docsLabel": "irc",
|
|
"blurb": "classic IRC networks with DM/channel routing and pairing controls.",
|
|
"aliases": [
|
|
"internet-relay-chat"
|
|
],
|
|
"systemImage": "network",
|
|
"cliAddOptions": [
|
|
{
|
|
"flags": "--password <password>",
|
|
"description": "Channel password or login secret"
|
|
}
|
|
]
|
|
},
|
|
"compat": {
|
|
"pluginApi": ">=2026.7.2"
|
|
},
|
|
"build": {
|
|
"openclawVersion": "2026.7.2",
|
|
"bundledDist": false
|
|
},
|
|
"release": {
|
|
"publishToClawHub": true,
|
|
"publishToNpm": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"zod": "4.4.3"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/openclaw/openclaw"
|
|
}
|
|
}
|