@maudecode/openclaw-cowtail 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,47 @@
1
+ {
2
+ "id": "cowtail",
3
+ "name": "Cowtail",
4
+ "description": "Cowtail mobile realtime channel for OpenClaw",
5
+ "channels": ["cowtail"],
6
+ "channelEnvVars": {
7
+ "cowtail": ["OPENCLAW_COWTAIL_BRIDGE_TOKEN"]
8
+ },
9
+ "uiHints": {
10
+ "url": {
11
+ "label": "Cowtail realtime URL",
12
+ "placeholder": "wss://cowtail.example.invalid/openclaw/realtime"
13
+ },
14
+ "bridgeToken": {
15
+ "label": "Bridge token",
16
+ "placeholder": "${OPENCLAW_COWTAIL_BRIDGE_TOKEN}",
17
+ "sensitive": true
18
+ }
19
+ },
20
+ "configSchema": {
21
+ "type": "object",
22
+ "additionalProperties": true,
23
+ "properties": {
24
+ "enabled": { "type": "boolean" },
25
+ "url": { "type": "string" },
26
+ "bridgeToken": {
27
+ "oneOf": [
28
+ { "type": "string" },
29
+ {
30
+ "type": "object",
31
+ "additionalProperties": false,
32
+ "required": ["source", "provider", "id"],
33
+ "properties": {
34
+ "source": { "enum": ["env", "file", "exec"] },
35
+ "provider": { "type": "string" },
36
+ "id": { "type": "string" }
37
+ }
38
+ }
39
+ ]
40
+ },
41
+ "agentId": { "type": "string" },
42
+ "connectTimeoutMs": { "type": "number" },
43
+ "reconnectMinDelayMs": { "type": "number" },
44
+ "reconnectMaxDelayMs": { "type": "number" }
45
+ }
46
+ }
47
+ }
package/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "@maudecode/openclaw-cowtail",
3
+ "version": "0.1.0",
4
+ "description": "Cowtail channel plugin for OpenClaw",
5
+ "type": "module",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/MaudeCode/cowtail.git",
9
+ "directory": "openclaw-plugin"
10
+ },
11
+ "main": "./dist/index.js",
12
+ "exports": {
13
+ ".": "./dist/index.js",
14
+ "./setup-entry": "./dist/setup-entry.js",
15
+ "./openclaw.plugin.json": "./openclaw.plugin.json"
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "README.md",
20
+ "openclaw.plugin.json"
21
+ ],
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "openclaw": {
26
+ "extensions": [
27
+ "./dist/index.js"
28
+ ],
29
+ "setupEntry": "./dist/setup-entry.js",
30
+ "channel": {
31
+ "id": "cowtail",
32
+ "label": "Cowtail",
33
+ "selectionLabel": "Cowtail",
34
+ "detailLabel": "Cowtail",
35
+ "docsLabel": "cowtail",
36
+ "docsPath": "/channels/cowtail",
37
+ "blurb": "Send OpenClaw threads through Cowtail mobile realtime.",
38
+ "systemImage": "message",
39
+ "order": 95
40
+ }
41
+ },
42
+ "scripts": {
43
+ "build": "bun run check && rm -rf dist && bun build ./src/index.ts ./src/setup-entry.ts --outdir dist --target=node --format=esm --external openclaw --external 'openclaw/*'",
44
+ "check": "tsc -p tsconfig.json --noEmit",
45
+ "test": "bun test src/*.test.ts"
46
+ },
47
+ "peerDependencies": {
48
+ "openclaw": ">=2026.4.21"
49
+ },
50
+ "peerDependenciesMeta": {
51
+ "openclaw": {
52
+ "optional": true
53
+ }
54
+ },
55
+ "devDependencies": {
56
+ "@maudecode/cowtail-protocol": "file:../protocol",
57
+ "@types/bun": "^1.3.1",
58
+ "openclaw": "2026.4.21",
59
+ "typescript": "^5.9.3"
60
+ }
61
+ }