โ† All skills
Tencent SkillHub ยท Developer Tools

DevRev

Interact with DevRev to create/update issues and tickets, and search/query works and parts. Use when asked to create a DevRev issue or ticket, update an exis...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Interact with DevRev to create/update issues and tickets, and search/query works and parts. Use when asked to create a DevRev issue or ticket, update an exis...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/api.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs
  • SKILL.md Primary doc
  • references/api.md Docs