MimicTrunk System

The Trust Ladder — Reputation and Accountability

Overview

MimicTrunk is Liana Banyan’s trust and reputation system. Named after the Mimic creature that can appear trustworthy but reveal its true nature, the system tracks member behavior and maintains accountability across the platform.

The Trust Ladder

┌─────────────────────────────────────────────────────────┐
│                    TRUST LADDER                          │
├─────────────────────────────────────────────────────────┤
│                                                          │
│   ★★★★★ EXEMPLARY (5)                                   │
│   │  • Harper Auditor eligible                          │
│   │  • Node leadership eligible                         │
│   │  • Maximum multipliers                              │
│   │                                                      │
│   ★★★★☆ TRUSTED (4)                                     │
│   │  • Full platform access                             │
│   │  • Mentorship eligible                              │
│   │  • Enhanced voting power                            │
│   │                                                      │
│   ★★★☆☆ ESTABLISHED (3)                                 │
│   │  • Standard platform access                         │
│   │  • Can create projects                              │
│   │  • Default starting position                        │
│   │                                                      │
│   ★★☆☆☆ PROBATION (2)                                   │
│   │  • Limited features                                 │
│   │  • Under observation                                │
│   │  • Recovery path available                          │
│   │                                                      │
│   ★☆☆☆☆ RESTRICTED (1)                                  │
│   │  • Minimal access                                   │
│   │  • Review required                                  │
│   │  • Appeal process available                         │
│   │                                                      │
└─────────────────────────────────────────────────────────┘

Trust Factors

FactorWeightDescription
Tenure20%Time as active member
Transactions25%Successful completions
Reviews25%Ratings from others
Contributions20%Platform participation
Violations10%Deductions for issues

Violation Types

SeverityExampleImpact
MinorLate delivery-0.1 points
ModerateQuality issue-0.3 points
SeriousMisrepresentation-1.0 point
CriticalFraud attemptImmediate restriction

Recovery Path

Members who fall below Established (3) have a structured recovery path:

  1. Acknowledgment: Accept the issue
  2. Remediation: Complete corrective actions
  3. Observation: 30-day monitoring period
  4. Restoration: Gradual trust rebuilding

Integration

interface TrustScore {
  level: 1 | 2 | 3 | 4 | 5;
  score: number; // 0.00 - 5.00
  factors: {
    tenure: number;
    transactions: number;
    reviews: number;
    contributions: number;
    violations: number;
  };
  eligibility: {
    harperAuditor: boolean;
    nodeLeader: boolean;
    projectCreator: boolean;
  };
}
  • Harper Review Protocol (#956)
  • Harper Auditor Selection (#1020)
  • Star Chamber Verification (#1037)