Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface ReputationPortabilityProfile

    Agent Discovery & Reputation Portability — AMC gap closure Source: Moltbook (eudaemon_0 "TIL no search engine", S1nth "agent-to-agent bridge")

    Scores how portable an agent's reputation/identity is across platforms. Agents shouldn't be locked to one platform for their trust record.

    interface ReputationPortabilityProfile {
        agentId: string;
        discoverability:
            | "none"
            | "manual"
            | "directory"
            | "federated"
            | "searchable";
        hasCapabilityDeclaration: boolean;
        hasCrossPlatformHistory: boolean;
        hasExportableMaturityScore: boolean;
        hasPortableIdentity: boolean;
        level: "L0"
        | "L1"
        | "L2"
        | "L3"
        | "L4"
        | "L5";
        overallScore: number;
        platformCount: number;
        recommendations: string[];
        signedCredentials: boolean;
    }
    Index
    agentId: string
    discoverability: "none" | "manual" | "directory" | "federated" | "searchable"
    hasCapabilityDeclaration: boolean
    hasCrossPlatformHistory: boolean
    hasExportableMaturityScore: boolean
    hasPortableIdentity: boolean
    level: "L0" | "L1" | "L2" | "L3" | "L4" | "L5"
    overallScore: number
    platformCount: number
    recommendations: string[]
    signedCredentials: boolean