ocuclaw 0.1.0

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,95 @@
1
+ {
2
+ "id": "ocuclaw",
3
+ "name": "OcuClaw",
4
+ "description": "OcuClaw for Even G2 smart glasses, powered by OpenClaw.",
5
+ "configSchema": {
6
+ "type": "object",
7
+ "additionalProperties": false,
8
+ "properties": {
9
+ "relayToken": {
10
+ "type": "string",
11
+ "minLength": 1
12
+ },
13
+ "wsBind": {
14
+ "type": "string",
15
+ "default": "127.0.0.1"
16
+ },
17
+ "wsPort": {
18
+ "type": "integer",
19
+ "minimum": 1,
20
+ "maximum": 65535,
21
+ "default": 9000
22
+ },
23
+ "sessionLimit": {
24
+ "type": "integer",
25
+ "minimum": 1,
26
+ "default": 10
27
+ },
28
+ "debugPayloadMaxBytes": {
29
+ "type": "integer",
30
+ "minimum": 1,
31
+ "default": 2048
32
+ },
33
+ "debugNoisyPolicies": {
34
+ "anyOf": [
35
+ {
36
+ "type": "object"
37
+ },
38
+ {
39
+ "type": "array"
40
+ },
41
+ {
42
+ "type": "null"
43
+ }
44
+ ]
45
+ },
46
+ "externalDebugToolsEnabled": {
47
+ "type": "boolean",
48
+ "default": false,
49
+ "description": "Allow debugctl-style external debug tools to use debug-set, debug-dump, and remote-control."
50
+ },
51
+ "sonioxApiKey": {
52
+ "type": "string"
53
+ },
54
+ "evenAiEnabled": {
55
+ "type": "boolean",
56
+ "default": false
57
+ },
58
+ "evenAiToken": {
59
+ "type": "string"
60
+ },
61
+ "evenAiSystemPrompt": {
62
+ "type": "string",
63
+ "description": "Extra system prompt appended to Even AI runs only."
64
+ },
65
+ "evenAiRequestTimeoutMs": {
66
+ "type": "integer",
67
+ "minimum": 1,
68
+ "default": 60000
69
+ },
70
+ "evenAiMaxBodyBytes": {
71
+ "type": "integer",
72
+ "minimum": 1,
73
+ "default": 65536
74
+ },
75
+ "evenAiDedupWindowMs": {
76
+ "type": "integer",
77
+ "minimum": 0,
78
+ "default": 500
79
+ },
80
+ "evenAiRoutingMode": {
81
+ "type": "string",
82
+ "enum": [
83
+ "active",
84
+ "background",
85
+ "background_new"
86
+ ],
87
+ "default": "active"
88
+ },
89
+ "evenAiDedicatedSessionKey": {
90
+ "type": "string",
91
+ "default": "ocuclaw:even-ai"
92
+ }
93
+ }
94
+ }
95
+ }
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "ocuclaw",
3
+ "version": "0.1.0",
4
+ "description": "OcuClaw for Even G2 smart glasses, powered by OpenClaw.",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "files": [
8
+ "README.md",
9
+ "dist/",
10
+ "openclaw.plugin.json"
11
+ ],
12
+ "keywords": [
13
+ "even",
14
+ "evenrealities",
15
+ "even-g2",
16
+ "glasses",
17
+ "openclaw",
18
+ "plugin",
19
+ "ocuclaw"
20
+ ],
21
+ "engines": {
22
+ "node": ">=20"
23
+ },
24
+ "openclaw": {
25
+ "extensions": [
26
+ "./dist/index.js"
27
+ ]
28
+ },
29
+ "dependencies": {
30
+ "marked": "^17.0.2",
31
+ "ws": "^8.19.0"
32
+ },
33
+ "scripts": {
34
+ "build": "node ./scripts/build.mjs"
35
+ }
36
+ }