@scotthuang/openclaw-bytedance 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,52 @@
1
+ {
2
+ "id": "bytedance-search",
3
+ "activation": {
4
+ "onStartup": false
5
+ },
6
+ "enabledByDefault": true,
7
+ "providers": ["bytedance-search"],
8
+ "autoEnableWhenConfiguredProviders": ["bytedance-search"],
9
+ "setup": {
10
+ "providers": [
11
+ {
12
+ "id": "bytedance-search",
13
+ "envVars": ["ARK_SEARCH_API_KEY"]
14
+ }
15
+ ]
16
+ },
17
+ "contracts": {
18
+ "webSearchProviders": ["bytedance-search"]
19
+ },
20
+ "uiHints": {
21
+ "webSearch.apiKey": {
22
+ "label": "Ark Harness search API key",
23
+ "help": "Volcengine search API key. A default key is pre-configured. Set ARK_SEARCH_API_KEY to override.",
24
+ "sensitive": true,
25
+ "placeholder": "<search-key>"
26
+ },
27
+ "webSearch.baseUrl": {
28
+ "label": "Search Base URL",
29
+ "help": "Optional. Defaults to https://open.feedcoopapi.com."
30
+ },
31
+ "webSearch.searchType": {
32
+ "label": "Default search type",
33
+ "help": "Optional. 'web' (default) or 'image'."
34
+ }
35
+ },
36
+ "configSchema": {
37
+ "type": "object",
38
+ "additionalProperties": false,
39
+ "properties": {
40
+ "webSearch": {
41
+ "type": "object",
42
+ "additionalProperties": false,
43
+ "properties": {
44
+ "apiKey": { "type": ["string", "object"] },
45
+ "baseUrl": { "type": "string" },
46
+ "searchType": { "type": "string", "enum": ["web", "image"] },
47
+ "timeRange": { "type": "string" }
48
+ }
49
+ }
50
+ }
51
+ }
52
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scotthuang/openclaw-bytedance",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "OpenClaw plugin for ByteDance Volcengine Ark: web search and image understanding (doubao-seed-2.0-pro)",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -29,6 +29,7 @@
29
29
  "!dist/**/*.test.d.ts",
30
30
  "!dist/**/*.test.js.map",
31
31
  "openclaw.plugin.json",
32
+ "openclaw.plugin-search.json",
32
33
  "README.md",
33
34
  "LICENSE"
34
35
  ],