@2389research/coven-openclaw 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.
package/index.ts ADDED
@@ -0,0 +1,20 @@
1
+ // ABOUTME: Plugin entry point for the coven-gateway channel plugin.
2
+ // ABOUTME: Registers the coven channel with openclaw's plugin system.
3
+
4
+ import type { OpenClawPluginApi } from "openclaw/plugin-sdk";
5
+ import { emptyPluginConfigSchema } from "openclaw/plugin-sdk";
6
+ import { covenPlugin } from "./src/channel.js";
7
+ import { setCovenRuntime } from "./src/runtime.js";
8
+
9
+ const plugin = {
10
+ id: "coven-openclaw",
11
+ name: "Coven Gateway",
12
+ description: "Connect openclaw agents to coven-gateway via gRPC AgentStream",
13
+ configSchema: emptyPluginConfigSchema(),
14
+ register(api: OpenClawPluginApi) {
15
+ setCovenRuntime(api.runtime);
16
+ api.registerChannel({ plugin: covenPlugin });
17
+ },
18
+ };
19
+
20
+ export default plugin;
@@ -0,0 +1,11 @@
1
+ {
2
+ "id": "coven-openclaw",
3
+ "name": "Coven Gateway",
4
+ "description": "Connect openclaw agents to coven-gateway via gRPC AgentStream",
5
+ "channels": ["coven"],
6
+ "configSchema": {
7
+ "type": "object",
8
+ "additionalProperties": false,
9
+ "properties": {}
10
+ }
11
+ }
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@2389research/coven-openclaw",
3
+ "version": "0.1.0",
4
+ "description": "Coven Gateway channel plugin for OpenClaw",
5
+ "type": "module",
6
+ "files": [
7
+ "src/",
8
+ "proto/",
9
+ "index.ts",
10
+ "openclaw.plugin.json",
11
+ "tsconfig.json"
12
+ ],
13
+ "scripts": {
14
+ "test": "vitest run",
15
+ "test:watch": "vitest",
16
+ "typecheck": "tsc --noEmit"
17
+ },
18
+ "dependencies": {
19
+ "@grpc/grpc-js": "^1.12.0",
20
+ "@grpc/proto-loader": "^0.7.0"
21
+ },
22
+ "devDependencies": {
23
+ "typescript": "^5.7.0",
24
+ "vitest": "^3.0.0"
25
+ },
26
+ "openclaw": {
27
+ "extensions": ["./index.ts"],
28
+ "channel": {
29
+ "id": "coven",
30
+ "label": "Coven Gateway",
31
+ "selectionLabel": "Coven Gateway (gRPC)",
32
+ "docsPath": "/channels/coven",
33
+ "order": 90
34
+ },
35
+ "install": {
36
+ "npmSpec": "@2389research/coven-openclaw",
37
+ "defaultChoice": "npm"
38
+ }
39
+ }
40
+ }