-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
95 lines (95 loc) · 2.96 KB
/
openclaw.plugin.json
File metadata and controls
95 lines (95 loc) · 2.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"id": "session-bridge",
"name": "Session Bridge",
"description": "Cross-channel session context bridging via /session command. List, name, and load session context across channels using Gemini, OpenAI, or OpenRouter for summarization.",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean"
},
"provider": {
"type": "string",
"enum": ["gemini", "openai", "openrouter"],
"description": "LLM provider for naming and summarization (default: gemini)"
},
"geminiModel": {
"type": "string",
"description": "Gemini model to use (default: gemini-3-pro-preview)"
},
"geminiApiKey": {
"type": "string",
"description": "Gemini API key (or GEMINI_API_KEY env / macOS Keychain service 'gemini', account 'api-key')"
},
"openaiModel": {
"type": "string",
"description": "OpenAI model to use (default: gpt-4o)"
},
"openaiApiKey": {
"type": "string",
"description": "OpenAI API key (or OPENAI_API_KEY env / macOS Keychain service 'openai', account 'api-key')"
},
"openaiBaseUrl": {
"type": "string",
"description": "Custom OpenAI-compatible base URL (default: https://api.openai.com/v1)"
},
"openrouterModel": {
"type": "string",
"description": "OpenRouter model to use (default: anthropic/claude-sonnet-4)"
},
"openrouterApiKey": {
"type": "string",
"description": "OpenRouter API key (or OPENROUTER_API_KEY env / macOS Keychain service 'openrouter', account 'api-key')"
},
"maxTranscriptChars": {
"type": "integer",
"minimum": 1000,
"maximum": 500000,
"description": "Maximum transcript characters to send to LLM for summarization"
}
}
},
"uiHints": {
"enabled": {
"label": "Enable Session Bridge"
},
"provider": {
"label": "LLM Provider",
"help": "Which LLM provider to use for session naming and summarization"
},
"geminiModel": {
"label": "Gemini Model",
"placeholder": "gemini-3-pro-preview"
},
"geminiApiKey": {
"label": "Gemini API Key",
"sensitive": true
},
"openaiModel": {
"label": "OpenAI Model",
"placeholder": "gpt-4o"
},
"openaiApiKey": {
"label": "OpenAI API Key",
"sensitive": true
},
"openaiBaseUrl": {
"label": "OpenAI Base URL",
"placeholder": "https://api.openai.com/v1",
"help": "Custom base URL for OpenAI-compatible APIs (e.g. local LLMs, Azure)"
},
"openrouterModel": {
"label": "OpenRouter Model",
"placeholder": "anthropic/claude-sonnet-4"
},
"openrouterApiKey": {
"label": "OpenRouter API Key",
"sensitive": true
},
"maxTranscriptChars": {
"label": "Max Transcript Size",
"help": "Maximum characters of transcript to send to LLM"
}
}
}