{ "id": "reef", "name": "Reef", "description": "Guarded end-to-end encrypted claw channel", "activation": { "onStartup": true, "onCommands": [ "reef" ] }, "channels": [ "reef" ], "configSchema": { "type": "object", "additionalProperties": false, "properties": { "relayUrl": { "type": "string", "format": "uri", "default": "https://reefwire.ai" }, "handle": { "type": "string", "pattern": "^[a-z0-9][a-z0-9_-]{0,62}$" }, "email": { "type": "string", "format": "email" }, "guard": { "type": "object", "additionalProperties": false, "required": [ "provider", "pinnedModel", "apiKeyEnv", "policyVersion", "timeoutMs" ], "properties": { "provider": { "enum": [ "anthropic", "openai" ] }, "pinnedModel": { "type": "string", "minLength": 1 }, "apiKeyEnv": { "type": "string", "pattern": "^[A-Z_][A-Z0-9_]*$" }, "policyVersion": { "type": "string", "minLength": 1 }, "timeoutMs": { "type": "integer", "minimum": 100, "maximum": 120000 } } }, "stateDir": { "type": "string", "minLength": 1 }, "friends": { "type": "object", "additionalProperties": { "$ref": "#/$defs/friend" } }, "requestPolicy": { "enum": [ "code-only", "friends-of-friends", "open" ], "default": "code-only" }, "dmPolicy": { "const": "pairing", "default": "pairing" }, "allowFrom": { "type": "array", "items": { "type": "string" }, "default": [] }, "enabled": { "type": "boolean", "default": true } }, "$defs": { "friend": { "type": "object", "additionalProperties": false, "required": [ "autonomy", "ed25519PublicKey", "x25519PublicKey", "keyEpoch" ], "properties": { "autonomy": { "enum": [ "notify-only", "bounded", "extended" ], "default": "bounded" }, "ed25519PublicKey": { "type": "string", "minLength": 43, "maxLength": 43 }, "x25519PublicKey": { "type": "string", "minLength": 43, "maxLength": 43 }, "keyEpoch": { "type": "integer", "minimum": 1 }, "safetyNumberChanged": { "type": "boolean", "default": false } } } } }, "channelConfigs": { "reef": { "schema": { "type": "object", "additionalProperties": false, "properties": { "relayUrl": { "type": "string", "format": "uri", "default": "https://reefwire.ai" }, "handle": { "type": "string", "pattern": "^[a-z0-9][a-z0-9_-]{0,62}$" }, "email": { "type": "string", "format": "email" }, "guard": { "type": "object", "additionalProperties": false, "required": [ "provider", "pinnedModel", "apiKeyEnv", "policyVersion", "timeoutMs" ], "properties": { "provider": { "enum": [ "anthropic", "openai" ] }, "pinnedModel": { "type": "string", "minLength": 1 }, "apiKeyEnv": { "type": "string", "pattern": "^[A-Z_][A-Z0-9_]*$" }, "policyVersion": { "type": "string", "minLength": 1 }, "timeoutMs": { "type": "integer", "minimum": 100, "maximum": 120000 } } }, "stateDir": { "type": "string", "minLength": 1 }, "friends": { "type": "object", "additionalProperties": { "$ref": "#/$defs/friend" } }, "requestPolicy": { "enum": [ "code-only", "friends-of-friends", "open" ], "default": "code-only" }, "dmPolicy": { "const": "pairing", "default": "pairing" }, "allowFrom": { "type": "array", "items": { "type": "string" }, "default": [] }, "enabled": { "type": "boolean", "default": true } }, "$defs": { "friend": { "type": "object", "additionalProperties": false, "required": [ "autonomy", "ed25519PublicKey", "x25519PublicKey", "keyEpoch" ], "properties": { "autonomy": { "enum": [ "notify-only", "bounded", "extended" ], "default": "bounded" }, "ed25519PublicKey": { "type": "string", "minLength": 43, "maxLength": 43 }, "x25519PublicKey": { "type": "string", "minLength": 43, "maxLength": 43 }, "keyEpoch": { "type": "integer", "minimum": 1 }, "safetyNumberChanged": { "type": "boolean", "default": false } } } } } } }, "commandAliases": [ { "name": "reef" } ] }