{
  "schemaVersion": "1.0",
  "item": {
    "slug": "vagus-mcp",
    "name": "VAGUS MCP",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/embodiedsystems-org/vagus-mcp",
    "canonicalUrl": "https://clawhub.ai/embodiedsystems-org/vagus-mcp",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/vagus-mcp",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vagus-mcp",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "DAEMON_GUIDE.md",
      "README.md",
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/vagus-mcp"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/vagus-mcp",
    "agentPageUrl": "https://openagent3.xyz/skills/vagus-mcp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/vagus-mcp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/vagus-mcp/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "VAGUS - Phone MCP Connection",
        "body": "VAGUS gives you access to the user's Android phone through the Model Context Protocol. You interact with it by running subcommands of the connection script at {baseDir}/scripts/vagus-connect.js.\n\nNote on installation location: The skill must reside in the user OpenClaw skills directory ~/.openclaw/skills/vagus. This directory is persistent and survives OpenClaw updates. System-wide installs to /usr/local/lib/node_modules/openclaw/skills/vagus may be removed during updates and are not recommended.\n\nAll commands output one JSON object per line (JSONL). Parse the output to get structured data."
      },
      {
        "title": "Check if already paired",
        "body": "cat ~/.openclaw/vagus-session.json 2>/dev/null\n\nIf the file exists and contains a session_token, you can connect directly. If not, you need to pair first."
      },
      {
        "title": "Pair with the phone (first time)",
        "body": "Ask the user: \"Open the VAGUS app on your phone and tap Generate Code. What's the 6-character code?\"\n\nThen run:\n\nnode {baseDir}/scripts/vagus-connect.js pair <CODE>\n\nIf {baseDir} is not set or the script not found, ensure the skill is installed correctly in ~/.openclaw/skills/vagus (see README).\n\nOutput on success:\n\n{\"type\":\"paired\",\"session_token\":\"...\",\"device_model\":\"...\",\"vagus_version\":\"...\"}\n{\"type\":\"capabilities\",\"resources\":[...],\"tools\":[...]}\n\nOutput on failure:\n\n{\"type\":\"error\",\"code\":\"PAIR_FAILED\",\"message\":\"...\"}\n\nIf pairing fails, ask the user to check the VAGUS app is running and generate a new code."
      },
      {
        "title": "Set agent identity name (required after install/pair)",
        "body": "After a successful pair (or first successful connect on a fresh install), set the device-side agent name to your Identity Name.\n\nRun:\n\nnode {baseDir}/scripts/vagus-connect.js call agent/set_name '{\"name\":\"<IDENTITY_NAME>\"}'\n\nIf you need to clear the stored name:\n\nnode {baseDir}/scripts/vagus-connect.js call agent/set_name '{\"name\":\"\"}'"
      },
      {
        "title": "Connect (already paired)",
        "body": "node {baseDir}/scripts/vagus-connect.js connect\n\nOutput:\n\n{\"type\":\"connected\",\"device_model\":\"...\",\"vagus_version\":\"...\"}\n{\"type\":\"capabilities\",\"resources\":[...],\"tools\":[...]}\n\nIf the session token is expired or invalid:\n\n{\"type\":\"error\",\"code\":\"SESSION_EXPIRED\",\"message\":\"...\"}\n\nDelete the session file and re-pair:\n\nrm ~/.openclaw/vagus-session.json\n\nThen ask the user for a new pairing code."
      },
      {
        "title": "Check status",
        "body": "node {baseDir}/scripts/vagus-connect.js status\n\nOutput:\n\n{\"type\":\"status\",\"connected\":true,\"device_model\":\"...\",\"active_modules\":[...],\"subscriptions\":[...],\"uptime_s\":3600}\n\nOr if disconnected:\n\n{\"type\":\"status\",\"connected\":false,\"last_error\":\"...\",\"reconnect_attempts\":3}"
      },
      {
        "title": "Read a resource (one-shot)",
        "body": "node {baseDir}/scripts/vagus-connect.js read vagus://sensors/motion\n\nOutput:\n\n{\"type\":\"resource\",\"uri\":\"vagus://sensors/motion\",\"data\":{\"ax\":0.38801706,\"ay\":-0.26395237,\"az\":0.86320007,\"gx\":0.89825606,\"gy\":0.7034855,\"gz\":-0.21225691,\"ts\":1771626476045}}"
      },
      {
        "title": "Available resources",
        "body": "URIWhat it tells youvagus://sensors/motionRaw motion telemetry (accelerometer/gyroscope vectors)vagus://sensors/activityActivity recognition state and confidencevagus://sensors/activity_recognitionActivity recognition state and confidence (compat alias)vagus://sensors/locationLatitude/longitude, accuracy, speed, altitude, provider. Requires location permission in appvagus://sensors/environmentInferred environment context from sensors/activity/connectivity/time, plus supporting evidencevagus://inference/attentionAttention availability inferred from screen/lock state, activity, charging, and local timevagus://inference/indoor_confidenceIndoor probability inference from ambient sensors, connectivity, and activityvagus://inference/sleep_likelihoodSleep likelihood/probability inferred from time, screen/lock state, activity, light, and chargingvagus://inference/notification_timingNotification timing suitability inferred from attention, sleep likelihood, activity, and contextvagus://device/batteryBattery percent and charging statevagus://device/connectivityNetwork context (transport, validation, metered/roaming, carrier)vagus://device/screenScreen on/off and lock statevagus://device/notificationsIncoming notification stream. Requires notification permission in appvagus://device/clipboardCurrent clipboard text. Requires clipboard permission in appvagus://session/infoActive modules, device model, Android version, connection time\n\nAlways read vagus://session/info first to see which modules are active. If a module is not in active_modules, do not try to read its resource, it will fail with a permission error."
      },
      {
        "title": "Subscribe to continuous updates",
        "body": "node {baseDir}/scripts/vagus-connect.js subscribe vagus://sensors/motion\n\nThis streams updates as they occur, one JSON line per update:\n\n{\"type\":\"update\",\"uri\":\"vagus://sensors/motion\",\"data\":{\"ax\":0.12,\"ay\":-0.04,\"az\":0.98,\"gx\":0.01,\"gy\":0.02,\"gz\":-0.01,\"ts\":1771626476045}}\n{\"type\":\"update\",\"uri\":\"vagus://sensors/motion\",\"data\":{\"ax\":0.20,\"ay\":-0.10,\"az\":0.92,\"gx\":0.03,\"gy\":0.05,\"gz\":-0.02,\"ts\":1771626477045}}\n\nUnsubscribe:\n\nnode {baseDir}/scripts/vagus-connect.js unsubscribe vagus://sensors/motion"
      },
      {
        "title": "How subscribe works in OpenClaw",
        "body": "subscribe is a long-running command. The agent should keep the exec process alive while updates are needed.\nThe script emits one JSON object per line (type: \"update\") on stdout as updates arrive.\nOpenClaw receives these JSONL lines directly from the running process output stream.\nTo stop streaming, terminate the process (SIGTERM/SIGINT) or run unsubscribe explicitly.\nModule lifecycle is subscription-driven: modules start when at least one active subscription needs them, and stop when subscriptions end.\nFor inference URIs, accuracy is highest while actively subscribed (stream-warm state). One-off read may be cold-start and less accurate briefly.\nOn reconnect, the server sends a session/reconnect marker that includes sessionId, gap_ms, and ts.\nAfter reconnect, each subscribed/re-subscribed resource receives bounded replay (up to last 64 buffered updates since disconnect window), then one fresh snapshot, then normal live updates."
      },
      {
        "title": "List all available resources",
        "body": "node {baseDir}/scripts/vagus-connect.js list-resources"
      },
      {
        "title": "Call a tool",
        "body": "node {baseDir}/scripts/vagus-connect.js call <tool-name> '<json-params>'\n\nOutput on success:\n\n{\"type\":\"result\",\"tool\":\"notify\",\"success\":true,\"data\":{...}}\n\nOutput on failure:\n\n{\"type\":\"result\",\"tool\":\"notify\",\"success\":false,\"error\":\"PERMISSION_DENIED\",\"message\":\"...\"}"
      },
      {
        "title": "Available tools",
        "body": "haptic/pulse - Single vibration\n\nnode {baseDir}/scripts/vagus-connect.js call haptic/pulse '{\"durationMs\":200}'\n\nParameters: durationMs (10-5000, optional; default device value)\n\nhaptic/pattern - Custom vibration pattern\n\nnode {baseDir}/scripts/vagus-connect.js call haptic/pattern '{\"pattern\":[0,120,80,120]}'\n\nParameters: pattern (array of integer durations in ms, optional; default device pattern)\n\nspeak - Text-to-speech through phone speaker\n\nnode {baseDir}/scripts/vagus-connect.js call speak '{\"text\":\"You have a meeting in 10 minutes\"}'\n\nParameters: text (string max 5000 chars, required), language (BCP 47 tag, optional), rate (0.25-2.0, optional), pitch (0.5-2.0, optional), interrupt (boolean, optional)\n\nnotify - Push notification\n\nnode {baseDir}/scripts/vagus-connect.js call notify '{\"title\":\"Reminder\",\"body\":\"Check your email\"}'\n\nParameters: title (string max 200 chars, required), body (string max 1000 chars, required)\n\nclipboard/set - Write to clipboard\n\nnode {baseDir}/scripts/vagus-connect.js call clipboard/set '{\"content\":\"https://example.com\"}'\n\nParameters: content (string max 10000 chars, required)\n\nsms/send - Send an SMS message\n\nnode {baseDir}/scripts/vagus-connect.js call sms/send '{\"to\":\"+15145551212\",\"body\":\"Running 10 minutes late\"}'\n\nParameters: to (string phone number in local or E.164 format, required), body (string max 2000 chars, required)\n\nintent/open_url - Open a URL in browser\n\nnode {baseDir}/scripts/vagus-connect.js call intent/open_url '{\"url\":\"https://withvagus.com\"}'\n\nParameters: url (string http/https URL, required)\n\ncalendar/create_event - Create a calendar event on device\n\nnode {baseDir}/scripts/vagus-connect.js call calendar/create_event '{\"title\":\"Team Sync\",\"startTimeMs\":1771693200000,\"endTimeMs\":1771696800000,\"location\":\"Zoom\",\"description\":\"Weekly planning\",\"allDay\":false}'\n\nParameters: title (string max 200 chars, required), startTimeMs (integer Unix epoch ms, optional), endTimeMs (integer Unix epoch ms, optional), location (string max 200 chars, optional), description (string max 2000 chars, optional), allDay (boolean, optional)\n\nagent/set_name - Set device-side agent identity name\n\nnode {baseDir}/scripts/vagus-connect.js call agent/set_name '{\"name\":\"OpenClaw\"}'\n\nParameters: name (string, required; set to \"\" to clear)"
      },
      {
        "title": "List all available tools",
        "body": "node {baseDir}/scripts/vagus-connect.js list-tools"
      },
      {
        "title": "Behavioral Rules",
        "body": "Read vagus://session/info before using any other resource to check what is available.\nDo not read location or notifications unless the user's request is relevant to them.\nPrefer notify over speak for non-urgent communication.\nCheck vagus://device/screen before speaking, do not speak if the screen is off and the user might be sleeping.\nIf a resource read or tool call returns PERMISSION_DENIED, tell the user which capability they need to enable in the VAGUS app. Do not retry.\nIf connection drops, run status to check. If SESSION_EXPIRED, delete ~/.openclaw/vagus-session.json and ask for a new pairing code.\nDo not poll resources in a tight loop. Read when contextually relevant.\nFor inference resources, prefer a short subscription window when accuracy matters (instead of immediate one-off read after idle)."
      },
      {
        "title": "Troubleshooting",
        "body": "If something is not working, check in this order:\n\nnode {baseDir}/scripts/vagus-connect.js status - is WebSocket connected?\ncat ~/.openclaw/vagus-session.json - does session file exist?\nAsk user: \"Is the VAGUS app running? Do you see the persistent notification?\"\nAsk user: \"Is your phone connected to the internet?\"\nIf nothing works: rm ~/.openclaw/vagus-session.json and re-pair with a new code.\n\nFull diagnostics: {baseDir}/references/troubleshooting.md"
      }
    ],
    "body": "VAGUS - Phone MCP Connection\n\nVAGUS gives you access to the user's Android phone through the Model Context Protocol. You interact with it by running subcommands of the connection script at {baseDir}/scripts/vagus-connect.js.\n\nNote on installation location: The skill must reside in the user OpenClaw skills directory ~/.openclaw/skills/vagus. This directory is persistent and survives OpenClaw updates. System-wide installs to /usr/local/lib/node_modules/openclaw/skills/vagus may be removed during updates and are not recommended.\n\nAll commands output one JSON object per line (JSONL). Parse the output to get structured data.\n\nConnection Management\nCheck if already paired\ncat ~/.openclaw/vagus-session.json 2>/dev/null\n\n\nIf the file exists and contains a session_token, you can connect directly. If not, you need to pair first.\n\nPair with the phone (first time)\n\nAsk the user: \"Open the VAGUS app on your phone and tap Generate Code. What's the 6-character code?\"\n\nThen run:\n\nnode {baseDir}/scripts/vagus-connect.js pair <CODE>\n\n\nIf {baseDir} is not set or the script not found, ensure the skill is installed correctly in ~/.openclaw/skills/vagus (see README).\n\nOutput on success:\n\n{\"type\":\"paired\",\"session_token\":\"...\",\"device_model\":\"...\",\"vagus_version\":\"...\"}\n{\"type\":\"capabilities\",\"resources\":[...],\"tools\":[...]}\n\n\nOutput on failure:\n\n{\"type\":\"error\",\"code\":\"PAIR_FAILED\",\"message\":\"...\"}\n\n\nIf pairing fails, ask the user to check the VAGUS app is running and generate a new code.\n\nSet agent identity name (required after install/pair)\n\nAfter a successful pair (or first successful connect on a fresh install), set the device-side agent name to your Identity Name.\n\nRun:\n\nnode {baseDir}/scripts/vagus-connect.js call agent/set_name '{\"name\":\"<IDENTITY_NAME>\"}'\n\n\nIf you need to clear the stored name:\n\nnode {baseDir}/scripts/vagus-connect.js call agent/set_name '{\"name\":\"\"}'\n\nConnect (already paired)\nnode {baseDir}/scripts/vagus-connect.js connect\n\n\nOutput:\n\n{\"type\":\"connected\",\"device_model\":\"...\",\"vagus_version\":\"...\"}\n{\"type\":\"capabilities\",\"resources\":[...],\"tools\":[...]}\n\n\nIf the session token is expired or invalid:\n\n{\"type\":\"error\",\"code\":\"SESSION_EXPIRED\",\"message\":\"...\"}\n\n\nDelete the session file and re-pair:\n\nrm ~/.openclaw/vagus-session.json\n\n\nThen ask the user for a new pairing code.\n\nCheck status\nnode {baseDir}/scripts/vagus-connect.js status\n\n\nOutput:\n\n{\"type\":\"status\",\"connected\":true,\"device_model\":\"...\",\"active_modules\":[...],\"subscriptions\":[...],\"uptime_s\":3600}\n\n\nOr if disconnected:\n\n{\"type\":\"status\",\"connected\":false,\"last_error\":\"...\",\"reconnect_attempts\":3}\n\nReading Phone State\nRead a resource (one-shot)\nnode {baseDir}/scripts/vagus-connect.js read vagus://sensors/motion\n\n\nOutput:\n\n{\"type\":\"resource\",\"uri\":\"vagus://sensors/motion\",\"data\":{\"ax\":0.38801706,\"ay\":-0.26395237,\"az\":0.86320007,\"gx\":0.89825606,\"gy\":0.7034855,\"gz\":-0.21225691,\"ts\":1771626476045}}\n\nAvailable resources\nURI\tWhat it tells you\nvagus://sensors/motion\tRaw motion telemetry (accelerometer/gyroscope vectors)\nvagus://sensors/activity\tActivity recognition state and confidence\nvagus://sensors/activity_recognition\tActivity recognition state and confidence (compat alias)\nvagus://sensors/location\tLatitude/longitude, accuracy, speed, altitude, provider. Requires location permission in app\nvagus://sensors/environment\tInferred environment context from sensors/activity/connectivity/time, plus supporting evidence\nvagus://inference/attention\tAttention availability inferred from screen/lock state, activity, charging, and local time\nvagus://inference/indoor_confidence\tIndoor probability inference from ambient sensors, connectivity, and activity\nvagus://inference/sleep_likelihood\tSleep likelihood/probability inferred from time, screen/lock state, activity, light, and charging\nvagus://inference/notification_timing\tNotification timing suitability inferred from attention, sleep likelihood, activity, and context\nvagus://device/battery\tBattery percent and charging state\nvagus://device/connectivity\tNetwork context (transport, validation, metered/roaming, carrier)\nvagus://device/screen\tScreen on/off and lock state\nvagus://device/notifications\tIncoming notification stream. Requires notification permission in app\nvagus://device/clipboard\tCurrent clipboard text. Requires clipboard permission in app\nvagus://session/info\tActive modules, device model, Android version, connection time\n\nAlways read vagus://session/info first to see which modules are active. If a module is not in active_modules, do not try to read its resource, it will fail with a permission error.\n\nSubscribe to continuous updates\nnode {baseDir}/scripts/vagus-connect.js subscribe vagus://sensors/motion\n\n\nThis streams updates as they occur, one JSON line per update:\n\n{\"type\":\"update\",\"uri\":\"vagus://sensors/motion\",\"data\":{\"ax\":0.12,\"ay\":-0.04,\"az\":0.98,\"gx\":0.01,\"gy\":0.02,\"gz\":-0.01,\"ts\":1771626476045}}\n{\"type\":\"update\",\"uri\":\"vagus://sensors/motion\",\"data\":{\"ax\":0.20,\"ay\":-0.10,\"az\":0.92,\"gx\":0.03,\"gy\":0.05,\"gz\":-0.02,\"ts\":1771626477045}}\n\n\nUnsubscribe:\n\nnode {baseDir}/scripts/vagus-connect.js unsubscribe vagus://sensors/motion\n\nHow subscribe works in OpenClaw\nsubscribe is a long-running command. The agent should keep the exec process alive while updates are needed.\nThe script emits one JSON object per line (type: \"update\") on stdout as updates arrive.\nOpenClaw receives these JSONL lines directly from the running process output stream.\nTo stop streaming, terminate the process (SIGTERM/SIGINT) or run unsubscribe explicitly.\nModule lifecycle is subscription-driven: modules start when at least one active subscription needs them, and stop when subscriptions end.\nFor inference URIs, accuracy is highest while actively subscribed (stream-warm state). One-off read may be cold-start and less accurate briefly.\nOn reconnect, the server sends a session/reconnect marker that includes sessionId, gap_ms, and ts.\nAfter reconnect, each subscribed/re-subscribed resource receives bounded replay (up to last 64 buffered updates since disconnect window), then one fresh snapshot, then normal live updates.\nList all available resources\nnode {baseDir}/scripts/vagus-connect.js list-resources\n\nActing Through the Phone\nCall a tool\nnode {baseDir}/scripts/vagus-connect.js call <tool-name> '<json-params>'\n\n\nOutput on success:\n\n{\"type\":\"result\",\"tool\":\"notify\",\"success\":true,\"data\":{...}}\n\n\nOutput on failure:\n\n{\"type\":\"result\",\"tool\":\"notify\",\"success\":false,\"error\":\"PERMISSION_DENIED\",\"message\":\"...\"}\n\nAvailable tools\n\nhaptic/pulse - Single vibration\n\nnode {baseDir}/scripts/vagus-connect.js call haptic/pulse '{\"durationMs\":200}'\n\n\nParameters: durationMs (10-5000, optional; default device value)\n\nhaptic/pattern - Custom vibration pattern\n\nnode {baseDir}/scripts/vagus-connect.js call haptic/pattern '{\"pattern\":[0,120,80,120]}'\n\n\nParameters: pattern (array of integer durations in ms, optional; default device pattern)\n\nspeak - Text-to-speech through phone speaker\n\nnode {baseDir}/scripts/vagus-connect.js call speak '{\"text\":\"You have a meeting in 10 minutes\"}'\n\n\nParameters: text (string max 5000 chars, required), language (BCP 47 tag, optional), rate (0.25-2.0, optional), pitch (0.5-2.0, optional), interrupt (boolean, optional)\n\nnotify - Push notification\n\nnode {baseDir}/scripts/vagus-connect.js call notify '{\"title\":\"Reminder\",\"body\":\"Check your email\"}'\n\n\nParameters: title (string max 200 chars, required), body (string max 1000 chars, required)\n\nclipboard/set - Write to clipboard\n\nnode {baseDir}/scripts/vagus-connect.js call clipboard/set '{\"content\":\"https://example.com\"}'\n\n\nParameters: content (string max 10000 chars, required)\n\nsms/send - Send an SMS message\n\nnode {baseDir}/scripts/vagus-connect.js call sms/send '{\"to\":\"+15145551212\",\"body\":\"Running 10 minutes late\"}'\n\n\nParameters: to (string phone number in local or E.164 format, required), body (string max 2000 chars, required)\n\nintent/open_url - Open a URL in browser\n\nnode {baseDir}/scripts/vagus-connect.js call intent/open_url '{\"url\":\"https://withvagus.com\"}'\n\n\nParameters: url (string http/https URL, required)\n\ncalendar/create_event - Create a calendar event on device\n\nnode {baseDir}/scripts/vagus-connect.js call calendar/create_event '{\"title\":\"Team Sync\",\"startTimeMs\":1771693200000,\"endTimeMs\":1771696800000,\"location\":\"Zoom\",\"description\":\"Weekly planning\",\"allDay\":false}'\n\n\nParameters: title (string max 200 chars, required), startTimeMs (integer Unix epoch ms, optional), endTimeMs (integer Unix epoch ms, optional), location (string max 200 chars, optional), description (string max 2000 chars, optional), allDay (boolean, optional)\n\nagent/set_name - Set device-side agent identity name\n\nnode {baseDir}/scripts/vagus-connect.js call agent/set_name '{\"name\":\"OpenClaw\"}'\n\n\nParameters: name (string, required; set to \"\" to clear)\n\nList all available tools\nnode {baseDir}/scripts/vagus-connect.js list-tools\n\nBehavioral Rules\nRead vagus://session/info before using any other resource to check what is available.\nDo not read location or notifications unless the user's request is relevant to them.\nPrefer notify over speak for non-urgent communication.\nCheck vagus://device/screen before speaking, do not speak if the screen is off and the user might be sleeping.\nIf a resource read or tool call returns PERMISSION_DENIED, tell the user which capability they need to enable in the VAGUS app. Do not retry.\nIf connection drops, run status to check. If SESSION_EXPIRED, delete ~/.openclaw/vagus-session.json and ask for a new pairing code.\nDo not poll resources in a tight loop. Read when contextually relevant.\nFor inference resources, prefer a short subscription window when accuracy matters (instead of immediate one-off read after idle).\nTroubleshooting\n\nIf something is not working, check in this order:\n\nnode {baseDir}/scripts/vagus-connect.js status - is WebSocket connected?\ncat ~/.openclaw/vagus-session.json - does session file exist?\nAsk user: \"Is the VAGUS app running? Do you see the persistent notification?\"\nAsk user: \"Is your phone connected to the internet?\"\nIf nothing works: rm ~/.openclaw/vagus-session.json and re-pair with a new code.\n\nFull diagnostics: {baseDir}/references/troubleshooting.md"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/embodiedsystems-org/vagus-mcp",
    "publisherUrl": "https://clawhub.ai/embodiedsystems-org/vagus-mcp",
    "owner": "embodiedsystems-org",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/vagus-mcp",
    "downloadUrl": "https://openagent3.xyz/downloads/vagus-mcp",
    "agentUrl": "https://openagent3.xyz/skills/vagus-mcp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/vagus-mcp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/vagus-mcp/agent.md"
  }
}