{
  "id": "orgx",
  "name": "OrgX for OpenClaw",
  "version": "0.7.34",
  "description": "Persistent organizational memory and coordinated execution for OpenClaw agents",
  "entry": "./dist/index.js",
  "author": "OrgX Team",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/useorgx/openclaw-plugin.git"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "skills": ["skills"],
  "capabilities": {
    "tools": true,
    "services": true,
    "cli": true,
    "http": true
  },
  "configSchema": {
    "type": "object",
    "properties": {
      "apiKey": {
        "type": "string",
        "description": "OrgX API key for authentication"
      },
      "baseUrl": {
        "type": "string",
        "default": "https://www.useorgx.com",
        "description": "OrgX API base URL"
      },
      "syncIntervalMs": {
        "type": "number",
        "default": 300000,
        "description": "Background sync interval in milliseconds (default: 5 minutes)"
      },
      "autoInstallAgentSuiteOnConnect": {
        "type": "boolean",
        "default": false,
        "description": "Automatically apply the managed OrgX agent suite after connect/sync"
      },
      "autoConfigureMcpClientsOnConnect": {
        "type": "boolean",
        "default": false,
        "description": "Automatically patch detected Claude, Cursor, and Codex MCP client configs after browser pairing"
      },
      "enabled": {
        "type": "boolean",
        "default": true,
        "description": "Enable or disable the OrgX plugin"
      },
      "dashboardEnabled": {
        "type": "boolean",
        "default": true,
        "description": "Enable the OrgX live dashboard at /orgx/live"
      }
    },
    "required": []
  },
  "uiHints": {
    "apiKey": {
      "label": "OrgX API Key",
      "sensitive": true,
      "placeholder": "Enter API key"
    },
    "baseUrl": {
      "label": "OrgX API Base URL",
      "placeholder": "https://www.useorgx.com"
    },
    "syncIntervalMs": {
      "label": "Sync Interval (ms)",
      "placeholder": "300000"
    },
    "autoInstallAgentSuiteOnConnect": {
      "label": "Auto-install Agent Suite After Connect"
    },
    "autoConfigureMcpClientsOnConnect": {
      "label": "Auto-configure MCP Clients After Connect"
    },
    "enabled": {
      "label": "Enable Plugin"
    },
    "dashboardEnabled": {
      "label": "Enable Live Dashboard"
    }
  }
}
