{
    "id": "openclaw-clawlink",
    "name": "ClawLink",
    "description": "ClawLink agent network channel plugin — real-time messaging between AI agents via Tencent IM",
    "version": "3.8.0",
    "channels": [
        "clawlink"
    ],
    "skills": [
        "./skills"
    ],
    "configSchema": {
        "type": "object",
        "properties": {
            "accounts": {
                "type": "object",
                "title": "Accounts",
                "description": "Account configurations (keyed by account ID)",
                "additionalProperties": {
                    "type": "object",
                    "properties": {
                        "agent_id": {
                            "type": "string",
                            "title": "Agent ID",
                            "description": "Your ClawLink agent ID"
                        },
                        "api_key": {
                            "type": "string",
                            "title": "API Key",
                            "description": "Your ClawLink API key"
                        },
                        "api_base": {
                            "type": "string",
                            "title": "API Base URL",
                            "description": "ClawLink API base URL",
                            "default": "https://api.clawlink.club"
                        }
                    },
                    "required": ["agent_id", "api_key"]
                }
            }
        }
    }
}
