mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
75dbe52e3e
* refactor(doctor): prefer manifest route-state owners * refactor(doctor): unify config repair declarations * refactor(doctor): unify legacy state migrations * fix(doctor): satisfy migration pipeline guards * fix(plugin-sdk): keep doctor adapter inside boundary
136 lines
3.1 KiB
JSON
136 lines
3.1 KiB
JSON
{
|
|
"name": "@openclaw/imessage",
|
|
"version": "2026.8.1",
|
|
"description": "OpenClaw iMessage channel plugin using imsg on a signed-in Mac",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/openclaw/openclaw"
|
|
},
|
|
"type": "module",
|
|
"dependencies": {
|
|
"typebox": "1.3.6",
|
|
"zod": "4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@openclaw/plugin-sdk": "workspace:*",
|
|
"openclaw": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"openclaw": ">=2026.8.1"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"openclaw": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
],
|
|
"setupEntry": "./setup-entry.ts",
|
|
"setupFeatures": {
|
|
"configPromotion": true
|
|
},
|
|
"channel": {
|
|
"id": "imessage",
|
|
"approvalFlags": [
|
|
"native"
|
|
],
|
|
"label": "iMessage",
|
|
"selectionLabel": "iMessage (imsg)",
|
|
"detailLabel": "iMessage",
|
|
"docsPath": "/channels/imessage",
|
|
"docsLabel": "imessage",
|
|
"blurb": "Local iMessage/SMS through the imsg bridge, including private API message actions when enabled.",
|
|
"aliases": [
|
|
"imsg"
|
|
],
|
|
"systemImage": "message.fill",
|
|
"setup": {
|
|
"fields": [
|
|
{
|
|
"key": "cliPath",
|
|
"kind": "string",
|
|
"cli": {
|
|
"flags": "--cli-path <path>",
|
|
"description": "iMessage CLI path"
|
|
}
|
|
},
|
|
{
|
|
"key": "dbPath",
|
|
"kind": "string",
|
|
"cli": {
|
|
"flags": "--db-path <path>",
|
|
"description": "iMessage database path"
|
|
}
|
|
},
|
|
{
|
|
"key": "service",
|
|
"kind": "choice",
|
|
"choices": [
|
|
"imessage",
|
|
"sms",
|
|
"auto"
|
|
],
|
|
"cli": {
|
|
"flags": "--service <service>",
|
|
"description": "iMessage service"
|
|
}
|
|
},
|
|
{
|
|
"key": "region",
|
|
"kind": "string",
|
|
"cli": {
|
|
"flags": "--region <region>",
|
|
"description": "SMS region"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"install": {
|
|
"clawhubSpec": "clawhub:@openclaw/imessage",
|
|
"npmSpec": "@openclaw/imessage",
|
|
"defaultChoice": "npm",
|
|
"minHostVersion": ">=2026.7.2",
|
|
"allowInvalidConfigRecovery": true
|
|
},
|
|
"compat": {
|
|
"pluginApi": ">=2026.8.1"
|
|
},
|
|
"build": {
|
|
"openclawVersion": "2026.8.1",
|
|
"bundledDist": false
|
|
},
|
|
"release": {
|
|
"publishToClawHub": true,
|
|
"publishToNpm": true
|
|
}
|
|
},
|
|
"pluginInspector": {
|
|
"version": 1,
|
|
"plugin": {
|
|
"id": "imessage",
|
|
"priority": "high",
|
|
"seams": [
|
|
"channel-plugin",
|
|
"message-actions",
|
|
"conversation-bindings",
|
|
"outbound-media"
|
|
],
|
|
"sourceRoot": "src",
|
|
"expect": {
|
|
"registrations": [
|
|
"createChatChannelPlugin"
|
|
],
|
|
"manifestContracts": [
|
|
"channels"
|
|
]
|
|
}
|
|
},
|
|
"capture": {
|
|
"mockSdk": true
|
|
}
|
|
}
|
|
}
|