{
  "schemaVersion": "1.0",
  "item": {
    "slug": "devrev",
    "name": "DevRev",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/nimit2801/devrev",
    "canonicalUrl": "https://clawhub.ai/nimit2801/devrev",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/devrev",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=devrev",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/api.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. 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. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "devrev",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T11:58:49.698Z",
      "expiresAt": "2026-05-09T11:58:49.698Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=devrev",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=devrev",
        "contentDisposition": "attachment; filename=\"devrev-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "devrev"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/devrev"
    },
    "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/devrev",
    "agentPageUrl": "https://openagent3.xyz/skills/devrev/agent",
    "manifestUrl": "https://openagent3.xyz/skills/devrev/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/devrev/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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "DevRev Skill",
        "body": "Interact with DevRev via its REST API to manage issues, tickets, and parts."
      },
      {
        "title": "Setup",
        "body": "Requires a DevRev PAT token. Read from env var DEVREV_TOKEN or ask the user to provide it.\n\nexport DEVREV_TOKEN=<your-pat-token>\n\nBase URL: https://api.devrev.ai\nAuth header: Authorization: <token> (no \"Bearer\" prefix needed)"
      },
      {
        "title": "List Works (issues + tickets)",
        "body": "curl -s \"https://api.devrev.ai/works.list\" \\\n  -H \"Authorization: $DEVREV_TOKEN\" | python3 -m json.tool\n\nFilter by type:\n\n# Only issues\ncurl -s \"https://api.devrev.ai/works.list?type[]=issue\" \\\n  -H \"Authorization: $DEVREV_TOKEN\"\n\n# Only tickets  \ncurl -s \"https://api.devrev.ai/works.list?type[]=ticket\" \\\n  -H \"Authorization: $DEVREV_TOKEN\""
      },
      {
        "title": "Get a Specific Work Item",
        "body": "# Get by DON ID\ncurl -s -X POST \"https://api.devrev.ai/works.get\" \\\n  -H \"Authorization: $DEVREV_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"id\": \"don:core:dvrv-us-1:devo/XXXX:issue/72\"}'"
      },
      {
        "title": "Create an Issue",
        "body": "curl -s -X POST \"https://api.devrev.ai/works.create\" \\\n  -H \"Authorization: $DEVREV_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"type\": \"issue\",\n    \"title\": \"Issue title\",\n    \"body\": \"Description here\",\n    \"applies_to_part\": \"don:core:...:product/X\",\n    \"owned_by\": [\"don:identity:...:devu/1\"]\n  }'"
      },
      {
        "title": "Create a Ticket",
        "body": "curl -s -X POST \"https://api.devrev.ai/works.create\" \\\n  -H \"Authorization: $DEVREV_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"type\": \"ticket\",\n    \"title\": \"Ticket title\",\n    \"body\": \"Description here\",\n    \"applies_to_part\": \"don:core:...:product/X\",\n    \"severity\": \"medium\"\n  }'\n\nSeverity options: blocker, high, medium, low"
      },
      {
        "title": "Update a Work Item",
        "body": "curl -s -X POST \"https://api.devrev.ai/works.update\" \\\n  -H \"Authorization: $DEVREV_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"id\": \"don:core:...:issue/72\",\n    \"title\": \"Updated title\",\n    \"body\": \"Updated description\"\n  }'"
      },
      {
        "title": "Search Works",
        "body": "curl -s -X POST \"https://api.devrev.ai/works.list\" \\\n  -H \"Authorization: $DEVREV_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"type\": [\"issue\"],\n    \"stage\": {\"name\": [\"triage\", \"in_development\"]}\n  }'"
      },
      {
        "title": "List Parts (products, features, enhancements)",
        "body": "curl -s \"https://api.devrev.ai/parts.list\" \\\n  -H \"Authorization: $DEVREV_TOKEN\""
      },
      {
        "title": "Key Data Structures",
        "body": "See references/api.md for full field details and DON ID format."
      },
      {
        "title": "Tips",
        "body": "DON IDs are the full don:core:... identifiers used for all references\ndisplay_id (e.g. ISS-72, TKT-29) is human-readable but use the DON ID for API calls\nTo get parts (products) for creating works, call parts.list first\nPriority for issues: p0 (critical) → p1 → p2 → p3\nStage names for issues: triage, in_development, completed\nStage names for tickets: queued, work_in_progress, resolved"
      }
    ],
    "body": "DevRev Skill\n\nInteract with DevRev via its REST API to manage issues, tickets, and parts.\n\nSetup\n\nRequires a DevRev PAT token. Read from env var DEVREV_TOKEN or ask the user to provide it.\n\nexport DEVREV_TOKEN=<your-pat-token>\n\n\nBase URL: https://api.devrev.ai Auth header: Authorization: <token> (no \"Bearer\" prefix needed)\n\nCommon Operations\nList Works (issues + tickets)\ncurl -s \"https://api.devrev.ai/works.list\" \\\n  -H \"Authorization: $DEVREV_TOKEN\" | python3 -m json.tool\n\n\nFilter by type:\n\n# Only issues\ncurl -s \"https://api.devrev.ai/works.list?type[]=issue\" \\\n  -H \"Authorization: $DEVREV_TOKEN\"\n\n# Only tickets  \ncurl -s \"https://api.devrev.ai/works.list?type[]=ticket\" \\\n  -H \"Authorization: $DEVREV_TOKEN\"\n\nGet a Specific Work Item\n# Get by DON ID\ncurl -s -X POST \"https://api.devrev.ai/works.get\" \\\n  -H \"Authorization: $DEVREV_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"id\": \"don:core:dvrv-us-1:devo/XXXX:issue/72\"}'\n\nCreate an Issue\ncurl -s -X POST \"https://api.devrev.ai/works.create\" \\\n  -H \"Authorization: $DEVREV_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"type\": \"issue\",\n    \"title\": \"Issue title\",\n    \"body\": \"Description here\",\n    \"applies_to_part\": \"don:core:...:product/X\",\n    \"owned_by\": [\"don:identity:...:devu/1\"]\n  }'\n\nCreate a Ticket\ncurl -s -X POST \"https://api.devrev.ai/works.create\" \\\n  -H \"Authorization: $DEVREV_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"type\": \"ticket\",\n    \"title\": \"Ticket title\",\n    \"body\": \"Description here\",\n    \"applies_to_part\": \"don:core:...:product/X\",\n    \"severity\": \"medium\"\n  }'\n\n\nSeverity options: blocker, high, medium, low\n\nUpdate a Work Item\ncurl -s -X POST \"https://api.devrev.ai/works.update\" \\\n  -H \"Authorization: $DEVREV_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"id\": \"don:core:...:issue/72\",\n    \"title\": \"Updated title\",\n    \"body\": \"Updated description\"\n  }'\n\nSearch Works\ncurl -s -X POST \"https://api.devrev.ai/works.list\" \\\n  -H \"Authorization: $DEVREV_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"type\": [\"issue\"],\n    \"stage\": {\"name\": [\"triage\", \"in_development\"]}\n  }'\n\nList Parts (products, features, enhancements)\ncurl -s \"https://api.devrev.ai/parts.list\" \\\n  -H \"Authorization: $DEVREV_TOKEN\"\n\nKey Data Structures\n\nSee references/api.md for full field details and DON ID format.\n\nTips\nDON IDs are the full don:core:... identifiers used for all references\ndisplay_id (e.g. ISS-72, TKT-29) is human-readable but use the DON ID for API calls\nTo get parts (products) for creating works, call parts.list first\nPriority for issues: p0 (critical) → p1 → p2 → p3\nStage names for issues: triage, in_development, completed\nStage names for tickets: queued, work_in_progress, resolved"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/nimit2801/devrev",
    "publisherUrl": "https://clawhub.ai/nimit2801/devrev",
    "owner": "nimit2801",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/devrev",
    "downloadUrl": "https://openagent3.xyz/downloads/devrev",
    "agentUrl": "https://openagent3.xyz/skills/devrev/agent",
    "manifestUrl": "https://openagent3.xyz/skills/devrev/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/devrev/agent.md"
  }
}