# Send DevRev to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/devrev",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=devrev",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/api.md"
    ],
    "downloadMode": "redirect",
    "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### DevRev Skill

Interact with DevRev via its REST API to manage issues, tickets, and parts.

### Setup

Requires a DevRev PAT token. Read from env var DEVREV_TOKEN or ask the user to provide it.

export DEVREV_TOKEN=<your-pat-token>

Base URL: https://api.devrev.ai
Auth header: Authorization: <token> (no "Bearer" prefix needed)

### List Works (issues + tickets)

curl -s "https://api.devrev.ai/works.list" \\
  -H "Authorization: $DEVREV_TOKEN" | python3 -m json.tool

Filter by type:

# Only issues
curl -s "https://api.devrev.ai/works.list?type[]=issue" \\
  -H "Authorization: $DEVREV_TOKEN"

# Only tickets  
curl -s "https://api.devrev.ai/works.list?type[]=ticket" \\
  -H "Authorization: $DEVREV_TOKEN"

### Get a Specific Work Item

# Get by DON ID
curl -s -X POST "https://api.devrev.ai/works.get" \\
  -H "Authorization: $DEVREV_TOKEN" \\
  -H "Content-Type: application/json" \\
  -d '{"id": "don:core:dvrv-us-1:devo/XXXX:issue/72"}'

### Create an Issue

curl -s -X POST "https://api.devrev.ai/works.create" \\
  -H "Authorization: $DEVREV_TOKEN" \\
  -H "Content-Type: application/json" \\
  -d '{
    "type": "issue",
    "title": "Issue title",
    "body": "Description here",
    "applies_to_part": "don:core:...:product/X",
    "owned_by": ["don:identity:...:devu/1"]
  }'

### Create a Ticket

curl -s -X POST "https://api.devrev.ai/works.create" \\
  -H "Authorization: $DEVREV_TOKEN" \\
  -H "Content-Type: application/json" \\
  -d '{
    "type": "ticket",
    "title": "Ticket title",
    "body": "Description here",
    "applies_to_part": "don:core:...:product/X",
    "severity": "medium"
  }'

Severity options: blocker, high, medium, low

### Update a Work Item

curl -s -X POST "https://api.devrev.ai/works.update" \\
  -H "Authorization: $DEVREV_TOKEN" \\
  -H "Content-Type: application/json" \\
  -d '{
    "id": "don:core:...:issue/72",
    "title": "Updated title",
    "body": "Updated description"
  }'

### Search Works

curl -s -X POST "https://api.devrev.ai/works.list" \\
  -H "Authorization: $DEVREV_TOKEN" \\
  -H "Content-Type: application/json" \\
  -d '{
    "type": ["issue"],
    "stage": {"name": ["triage", "in_development"]}
  }'

### List Parts (products, features, enhancements)

curl -s "https://api.devrev.ai/parts.list" \\
  -H "Authorization: $DEVREV_TOKEN"

### Key Data Structures

See references/api.md for full field details and DON ID format.

### Tips

DON IDs are the full don:core:... identifiers used for all references
display_id (e.g. ISS-72, TKT-29) is human-readable but use the DON ID for API calls
To get parts (products) for creating works, call parts.list first
Priority for issues: p0 (critical) → p1 → p2 → p3
Stage names for issues: triage, in_development, completed
Stage names for tickets: queued, work_in_progress, resolved
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nimit2801
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T11:58:49.698Z
- Expires at: 2026-05-09T11:58:49.698Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/devrev)
- [Send to Agent page](https://openagent3.xyz/skills/devrev/agent)
- [JSON manifest](https://openagent3.xyz/skills/devrev/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/devrev/agent.md)
- [Download page](https://openagent3.xyz/downloads/devrev)