vv-agent 0.6.2

VectorVein agent runtime, SDK, CLI, tools, and workspace backends
Documentation
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ApprovalResolveParams",
  "type": "object",
  "properties": {
    "decision": {
      "$ref": "#/$defs/ApprovalDecision"
    },
    "requestId": {
      "type": "string"
    },
    "threadId": {
      "type": "string"
    },
    "turnId": {
      "type": "string"
    }
  },
  "required": [
    "threadId",
    "turnId",
    "requestId",
    "decision"
  ],
  "$defs": {
    "ApprovalDecision": {
      "type": "string",
      "enum": [
        "allow",
        "deny"
      ]
    }
  }
}