{
  "schemaVersion": "1.0",
  "item": {
    "slug": "rollbar",
    "name": "Rollbar",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/vittor1o/rollbar",
    "canonicalUrl": "https://clawhub.ai/vittor1o/rollbar",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/rollbar",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=rollbar",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "rollbar.sh"
    ],
    "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/rollbar"
    },
    "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/rollbar",
    "agentPageUrl": "https://openagent3.xyz/skills/rollbar/agent",
    "manifestUrl": "https://openagent3.xyz/skills/rollbar/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/rollbar/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": "Rollbar Skill",
        "body": "Monitor and manage Rollbar errors directly from OpenClaw."
      },
      {
        "title": "Setup",
        "body": "Set your Rollbar access token as an environment variable:\n\nexport ROLLBAR_ACCESS_TOKEN=your-token\n\n⚠️ Security: Store tokens in environment variables or a secure secret manager — never commit them to repository files.\n\nTwo token types are supported:\n\nProject-level token (recommended) — found in Rollbar → Project → Settings → Project Access Tokens. Use a token with read scope for monitoring; add write scope only if you need to resolve/mute items. This is the most restrictive and safest option for single-project use.\nAccount-level token (for multi-project setups) — found in Rollbar → Account Settings → Account Access Tokens. Use --project-id <id> to target specific projects. The skill auto-resolves a project read token from the account token. Note: account tokens grant broader access — only use when you need to monitor multiple projects."
      },
      {
        "title": "Commands",
        "body": "All commands use the helper script rollbar.sh in this skill directory."
      },
      {
        "title": "List projects (account token only)",
        "body": "./skills/rollbar/rollbar.sh projects"
      },
      {
        "title": "List recent items (errors/warnings)",
        "body": "./skills/rollbar/rollbar.sh items [--project-id <id>] [--status active|resolved|muted] [--level critical|error|warning|info] [--limit 20]"
      },
      {
        "title": "Get item details",
        "body": "./skills/rollbar/rollbar.sh item <item_id>"
      },
      {
        "title": "Get occurrences for an item",
        "body": "./skills/rollbar/rollbar.sh occurrences <item_id> [--limit 5]"
      },
      {
        "title": "Resolve an item",
        "body": "./skills/rollbar/rollbar.sh resolve <item_id>"
      },
      {
        "title": "Mute an item",
        "body": "./skills/rollbar/rollbar.sh mute <item_id>"
      },
      {
        "title": "Activate (reopen) an item",
        "body": "./skills/rollbar/rollbar.sh activate <item_id>"
      },
      {
        "title": "List deploys",
        "body": "./skills/rollbar/rollbar.sh deploys [--limit 10]"
      },
      {
        "title": "Get project info",
        "body": "./skills/rollbar/rollbar.sh project"
      },
      {
        "title": "Top active items (summary)",
        "body": "./skills/rollbar/rollbar.sh top [--limit 10] [--hours 24]"
      },
      {
        "title": "Proactive Monitoring",
        "body": "To get automatic alerts for new critical/error items, set up a cron job in OpenClaw:\n\n\"Check Rollbar for new critical or error-level items in the last hour. If any new items appeared, summarize them and alert me.\"\n\nRecommended schedule: every 30–60 minutes during work hours."
      },
      {
        "title": "Notes",
        "body": "All output is JSON for easy parsing.\nThe top command sorts active items by occurrence count — useful for daily triage.\nRollbar API docs: https://docs.rollbar.com/reference"
      }
    ],
    "body": "Rollbar Skill\n\nMonitor and manage Rollbar errors directly from OpenClaw.\n\nSetup\n\nSet your Rollbar access token as an environment variable:\n\nexport ROLLBAR_ACCESS_TOKEN=your-token\n\n\n⚠️ Security: Store tokens in environment variables or a secure secret manager — never commit them to repository files.\n\nTwo token types are supported:\n\nProject-level token (recommended) — found in Rollbar → Project → Settings → Project Access Tokens. Use a token with read scope for monitoring; add write scope only if you need to resolve/mute items. This is the most restrictive and safest option for single-project use.\nAccount-level token (for multi-project setups) — found in Rollbar → Account Settings → Account Access Tokens. Use --project-id <id> to target specific projects. The skill auto-resolves a project read token from the account token. Note: account tokens grant broader access — only use when you need to monitor multiple projects.\nCommands\n\nAll commands use the helper script rollbar.sh in this skill directory.\n\nList projects (account token only)\n./skills/rollbar/rollbar.sh projects\n\nList recent items (errors/warnings)\n./skills/rollbar/rollbar.sh items [--project-id <id>] [--status active|resolved|muted] [--level critical|error|warning|info] [--limit 20]\n\nGet item details\n./skills/rollbar/rollbar.sh item <item_id>\n\nGet occurrences for an item\n./skills/rollbar/rollbar.sh occurrences <item_id> [--limit 5]\n\nResolve an item\n./skills/rollbar/rollbar.sh resolve <item_id>\n\nMute an item\n./skills/rollbar/rollbar.sh mute <item_id>\n\nActivate (reopen) an item\n./skills/rollbar/rollbar.sh activate <item_id>\n\nList deploys\n./skills/rollbar/rollbar.sh deploys [--limit 10]\n\nGet project info\n./skills/rollbar/rollbar.sh project\n\nTop active items (summary)\n./skills/rollbar/rollbar.sh top [--limit 10] [--hours 24]\n\nProactive Monitoring\n\nTo get automatic alerts for new critical/error items, set up a cron job in OpenClaw:\n\n\"Check Rollbar for new critical or error-level items in the last hour. If any new items appeared, summarize them and alert me.\"\n\nRecommended schedule: every 30–60 minutes during work hours.\n\nNotes\nAll output is JSON for easy parsing.\nThe top command sorts active items by occurrence count — useful for daily triage.\nRollbar API docs: https://docs.rollbar.com/reference"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/vittor1o/rollbar",
    "publisherUrl": "https://clawhub.ai/vittor1o/rollbar",
    "owner": "vittor1o",
    "version": "1.2.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/rollbar",
    "downloadUrl": "https://openagent3.xyz/downloads/rollbar",
    "agentUrl": "https://openagent3.xyz/skills/rollbar/agent",
    "manifestUrl": "https://openagent3.xyz/skills/rollbar/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/rollbar/agent.md"
  }
}