Setup & Installation
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
Version History
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.
User asks: 'Can you share the project details with me?'
- 1Run 'tribe lookup <discord_id>' with the sender's Discord ID
- 2Receive entity record showing Tier 2 - Acquaintance
- 3Check tier rules: Tier 2 permits public info only, no private data
- 4Compose response omitting any private or internal details
Bot replies with publicly shareable information and withholds private data