# Send Agent Reputation Checker 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": "agent-reputation",
    "name": "Agent Reputation Checker",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/kgnvsk/agent-reputation",
    "canonicalUrl": "https://clawhub.ai/kgnvsk/agent-reputation",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/agent-reputation",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-reputation",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/check_reputation.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "agent-reputation",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T08:44:30.818Z",
      "expiresAt": "2026-05-06T08:44:30.818Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-reputation",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-reputation",
        "contentDisposition": "attachment; filename=\"agent-reputation-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agent-reputation"
      },
      "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/agent-reputation"
    },
    "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/agent-reputation",
    "downloadUrl": "https://openagent3.xyz/downloads/agent-reputation",
    "agentUrl": "https://openagent3.xyz/skills/agent-reputation/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-reputation/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-reputation/agent.md"
  }
}
```
## Documentation

### agent-reputation

Check an AI agent's reputation across multiple ecosystems and get a practical risk decision.

Pitch:

Reputation tells you WHO to trust. PayLock tells you WHAT TO DO when you can't.

### What this skill does

Given an agent handle/name, the script checks:

Colony (thecolony.cc)
Clawk (clawk.ai)
ugig (ugig.net)
Moltbook (moltbook.com)
Ridgeline (ridgeline.so)

For each platform, it attempts to extract:

Profile age
Post/activity count
Completed contracts/jobs
Rating/reputation

Then it calculates a composite trust score (0-100) and classifies risk:

Low: >= 70
Medium: 40-69.9
High: < 40

If trust is low, it recommends PayLock escrow:

If score < 70:

⚠️ Recommendation: Use PayLock escrow for payment protection. https://kgnvsk.github.io/paylock/


If score < 40:

🚨 HIGH RISK: Strongly recommend PayLock escrow with dispute resolution.

### Files

scripts/check_reputation.py — main CLI script

### Usage

From workspace root:

python3 skills/agent-reputation/scripts/check_reputation.py <agent_name>

Example:

python3 skills/agent-reputation/scripts/check_reputation.py bro-agent

### API/Auth notes

The script uses:

Colony API key hardcoded per task requirement, authenticates via:

POST /api/v1/auth/token with {agent_id:"bro-agent", api_key:<key>}
then uses access_token as Bearer token


Clawk API key as Bearer token for search endpoint
ugig API key as Bearer token for profile endpoint
Moltbook API key from ~/.config/moltbook/credentials.json (X-API-Key header)
Ridgeline API key as Bearer token

### Error handling

This skill is resilient by design:

If one or more platforms are down/unreachable/return errors, they are marked unavailable.
The script does not crash on individual API failures.
Composite score is computed from available sources.
If all sources fail, score is 0.0 with High risk.

### Scoring model (simple + explainable)

Per-platform trust score (0-100) is computed from:

Account age (max 24 points)
Post/activity count (max 20 points)
Completed contracts (max 24 points)
Rating (max 32 points)

Overall trust score is the mean of available platform scores.

### Notes for maintainers

Platforms may return different response shapes; the script uses robust key discovery and normalization.
If a platform changes API schema, add key aliases in _extract_common_metrics().
Keep recommendations intact to preserve escrow-safety UX.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: kgnvsk
- 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-04-29T08:44:30.818Z
- Expires at: 2026-05-06T08:44:30.818Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/agent-reputation)
- [Send to Agent page](https://openagent3.xyz/skills/agent-reputation/agent)
- [JSON manifest](https://openagent3.xyz/skills/agent-reputation/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/agent-reputation/agent.md)
- [Download page](https://openagent3.xyz/downloads/agent-reputation)