LaunchKit · 2026
Back to Skills

tribe-protocol

MANDATORY trust lookup for every non-owner interaction.

0
939 downloads
by @cheenu1092-oss

Setup & Installation

openclaw skills install @cheenu1092-oss/tribe-protocol

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install tribe-protocol

Version History

v1.0.1Feb 9, 2026 - Version note by skill developer:

Tagged electron-essential, updated README with ClawHub install

What This Skill Does

Tribe Protocol is a trust lookup system for OpenClaw bots. It stores Discord entities in a SQLite database with five trust tiers, from blocked to owner, and requires a lookup before every non-owner bot interaction. Tier assignments determine what data and channels each entity can access.

Centralizes per-entity access control in a single SQLite database instead of scattering permission checks across bot scripts.

When to use it

  • Blocking a bad actor from receiving any bot responses
  • Granting a new collaborator access to specific bot channels
  • Promoting a contact from acquaintance to tribe tier
  • Auditing which Discord users have interacted with a bot and when
  • Restricting private data visibility to owner-tier entities only

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: 'Can you share the project details with me?'

AGENT
  1. 1Run 'tribe lookup <discord_id>' with the sender's Discord ID
  2. 2Receive entity record showing Tier 2 - Acquaintance
  3. 3Check tier rules: Tier 2 permits public info only, no private data
  4. 4Compose response omitting any private or internal details
OUTPUT

Bot replies with publicly shareable information and withholds private data