skills$openclaw/basecred
callmedas695.5k

by callmedas69

basecred – OpenClaw Skill

basecred is an OpenClaw Skills integration for coding workflows. Fetch onchain reputation profiles via BaseCred SDK (Ethos, Talent Protocol, Farcaster/Neynar). Use when the user wants to check wallet reputation, builder score, creator score, Ethos credibility, or Farcaster account quality for any 0x address. Supports multi-source unified profiles with level derivation and recency tracking.

5.5k stars3.5k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namebasecred
descriptionFetch onchain reputation profiles via BaseCred SDK (Ethos, Talent Protocol, Farcaster/Neynar). Use when the user wants to check wallet reputation, builder score, creator score, Ethos credibility, or Farcaster account quality for any 0x address. Supports multi-source unified profiles with level derivation and recency tracking. OpenClaw Skills integration.
ownercallmedas69
repositorycallmedas69/basecred
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @callmedas69/basecred
last updatedFeb 7, 2026

Maintainer

callmedas69

callmedas69

Maintains basecred in the OpenClaw Skills directory.

View GitHub profile
File Explorer
6 files
.
references
output-schema.md
1.8 KB
scripts
query.mjs
2.5 KB
_meta.json
273 B
SKILL.md
1.8 KB
SKILL.md

name: basecred description: Fetch onchain reputation profiles via BaseCred SDK (Ethos, Talent Protocol, Farcaster/Neynar). Use when the user wants to check wallet reputation, builder score, creator score, Ethos credibility, or Farcaster account quality for any 0x address. Supports multi-source unified profiles with level derivation and recency tracking.

BaseCred — Onchain Reputation Queries

Prerequisites

  1. Package installed in workspace: npm i basecred-sdk
  2. API keys in workspace .env:
    TALENT_PROTOCOL_API_KEY=<key>
    NEYNAR_API_KEY=<key>          # optional — enables Farcaster scoring
    
    Ethos Network requires no key.

Quick workflow

  1. Run the query script from the workspace:

    node /path/to/skills/basecred/scripts/query.mjs <0x-address>
    

    The script auto-locates node_modules/basecred-sdk and .env by walking up from cwd. Run it with cwd set to the workspace.

  2. Parse the JSON output and present results to the user. Use the level tables in references/output-schema.md to translate raw scores into human-readable levels.

Presenting results

Summarize the three facets clearly:

  • Ethos — score + credibility level + review sentiment + vouches. Flag hasNegativeReviews if true.
  • Talent Protocol — builder score/level + creator score/level. Note verified status.
  • Farcaster — quality score (0–1) and whether it passes threshold.
  • Recencyrecent / stale / dormant. Mention if stale or dormant as a caveat.

Highlight actionable signals: e.g. zero vouches on Ethos is an easy win, or a dormant Talent score that needs activity.

Reference

  • Output schema + all level tables: references/output-schema.md — read when you need to map scores → levels or explain the shape of a response.
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

1. **Package installed** in workspace: `npm i basecred-sdk` 2. **API keys** in workspace `.env`: ``` TALENT_PROTOCOL_API_KEY=<key> NEYNAR_API_KEY=<key> # optional — enables Farcaster scoring ``` Ethos Network requires no key.

FAQ

How do I install basecred?

Run openclaw add @callmedas69/basecred in your terminal. This installs basecred into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/callmedas69/basecred. Review commits and README documentation before installing.