mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
99d662473c
* fix(channels): validate headless channel setup * docs(channels): document headless provisioning * fix(channels): repair setup metadata typing * chore(channels): regenerate official channel catalog for env metadata * fix(slack): keep mode-conditional env contract plugin-owned Static --use-env declaration keeps only the unconditional SLACK_BOT_TOKEN; socket-vs-HTTP conditional requirements (app token, signing secret) stay in Slack's own setup validation so HTTP mode no longer demands an irrelevant SLACK_APP_TOKEN. * chore(sdk): regenerate api baselines and catalog after rebase * fix(slack): align manifest env declaration with runtime contract * chore(sdk): regenerate api baselines after rebase * chore(sdk): regenerate api baselines after rebase * chore(sdk): regenerate api baselines after rebase
143 lines
3.4 KiB
JSON
143 lines
3.4 KiB
JSON
{
|
|
"name": "@openclaw/irc",
|
|
"version": "2026.8.1",
|
|
"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",
|
|
"setup": {
|
|
"fields": [
|
|
{
|
|
"key": "host",
|
|
"kind": "string",
|
|
"cli": {
|
|
"flags": "--host <host>",
|
|
"description": "IRC server host"
|
|
}
|
|
},
|
|
{
|
|
"key": "port",
|
|
"kind": "string",
|
|
"cli": {
|
|
"flags": "--port <port>",
|
|
"description": "IRC server port"
|
|
}
|
|
},
|
|
{
|
|
"key": "tls",
|
|
"kind": "boolean",
|
|
"cli": {
|
|
"flags": "--tls",
|
|
"description": "Use TLS for IRC"
|
|
}
|
|
},
|
|
{
|
|
"key": "nick",
|
|
"kind": "string",
|
|
"cli": {
|
|
"flags": "--nick <nick>",
|
|
"description": "IRC nickname"
|
|
}
|
|
},
|
|
{
|
|
"key": "username",
|
|
"kind": "string",
|
|
"cli": {
|
|
"flags": "--username <name>",
|
|
"description": "IRC username"
|
|
}
|
|
},
|
|
{
|
|
"key": "realname",
|
|
"kind": "string",
|
|
"cli": {
|
|
"flags": "--realname <name>",
|
|
"description": "IRC real name"
|
|
}
|
|
},
|
|
{
|
|
"key": "channels",
|
|
"kind": "string-list",
|
|
"cli": {
|
|
"flags": "--channels <names>",
|
|
"description": "IRC channels"
|
|
}
|
|
},
|
|
{
|
|
"key": "password",
|
|
"kind": "string",
|
|
"sensitive": true,
|
|
"cli": {
|
|
"flags": "--password <password>",
|
|
"description": "IRC server password"
|
|
}
|
|
},
|
|
{
|
|
"key": "useEnv",
|
|
"kind": "boolean",
|
|
"cli": {
|
|
"flags": "--use-env",
|
|
"description": "Use IRC environment configuration"
|
|
},
|
|
"envVars": ["IRC_HOST", "IRC_NICK"]
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"compat": {
|
|
"pluginApi": ">=2026.8.1"
|
|
},
|
|
"build": {
|
|
"openclawVersion": "2026.8.1",
|
|
"bundledDist": false
|
|
},
|
|
"release": {
|
|
"publishToClawHub": true,
|
|
"publishToNpm": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"zod": "4.4.3"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/openclaw/openclaw"
|
|
}
|
|
}
|