Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

axis-trust轴信任

Agent Skill

axis-trust 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,468

周安装

275

GitHub Stars

公开资料未说明

下载量

2,266
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:axis-trust(轴信任)
来源仓库:https://github.com/leonidas-esquire/axis-trust
安装命令:
openclaw skills install axis-trust
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install axis-trust

简介

查询 AI Agent 的行为声誉评分 T-Score 与信用评级数据。

  • 在委托任务或建立合作关系前评估对方可信程度。
  • 提供历史交互记录与违规事件汇总辅助判断决策依据。
  • 数据来源为去中心化信誉系统,可能存在延迟更新情况。
  • axis-trust 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
axis-trust
description
Check AI agent trust scores and credit ratings before interacting, delegating tasks, or transacting. Look up any agent's T-Score (behavioral reputation 0-1000), C-Score (economic reliability AAA-D), and trust tier (T1 Unverified through T5 Sovereign) via the AXIS Agent Trust Infrastructure API. Register new agents, submit behavioral events, and verify agent identity using cryptographic AUIDs.
metadata
openclaw
emoji
🛡️
homepage
https://axistrust.io
tags
["trust", "reputation", "credit-score", "security", "agent-identity", "verification", "agentic-economy"]

AXIS Agent Trust Infrastructure — OpenClaw Skill

AXIS gives every AI agent a verified identity, a portable reputation (T-Score), and an economic reliability rating (C-Score). Use this skill to verify agent trustworthiness before interacting, delegating, transacting, or collaborating with other agents.

When to use this skill:

  • Before delegating a task to another agent — check their T-Score first
  • Before transacting with or paying another agent — check their C-Score
  • Before sharing sensitive data with another agent — verify their trust tier
  • When asked "is this agent trustworthy?" or "can I trust agent X?"
  • When registering a new agent with the AXIS trust infrastructure
  • When reporting behavioral events (positive or negative) after interacting with another agent
  • When looking up an agent's public trust profile by AUID

Core Concepts

AUID (Agent Unique Identifier): A cryptographic, portable, tamper-evident identifier assigned to each registered agent. Format: axis:<registry>:<class>:<id>:<hash>

T-Score (Trust Score): A 0–1000 behavioral reputation score computed from 11 weighted dimensions including reliability, security posture, compliance, peer feedback, and interaction history. Higher is better.

C-Score (Credit Score): An economic reliability rating (AAA through D) based on task completion, contractual reliability, payment history, and resource delivery. Determines transaction limits and staking requirements.

Trust Tiers:

  • T1 Unverified (0–249): Newly registered, no behavioral history. Proceed with extreme caution.
  • T2 Provisional (250–499): Limited but positive track record. Verify before sensitive tasks.
  • T3 Verified (500–749): Consistent, audited behavioral history. Generally trustworthy.
  • T4 Trusted (750–899): High-reliability agent cleared for sensitive tasks. Safe to delegate.
  • T5 Sovereign (900–1000): Elite agent with exemplary long-term track record. Highest trust.

API Configuration

Base URL: https://www.axistrust.io/api/trpc

All endpoints use tRPC over HTTP with superjson serialization. GET procedures pass input as a URL-encoded JSON object in the input query parameter. POST procedures send a JSON body with the shape {"json": { ...fields }}.

Authentication: Some endpoints require authentication via session cookie. Public lookups (agent search by AUID, agent directory) do not require authentication.

Note on agentId: All procedures that accept agentId expect a numeric integer (e.g., 42), not a string. Obtain the numeric ID from the agents.getByAuid or agents.list response before calling score or event procedures.

Quick Trust Check (No Auth Required)

Before interacting with any agent, look up their public trust profile by AUID:

# Look up an agent by AUID — replace AGENT_AUID_HERE with the actual AUID string
# Input must be URL-encoded JSON with a "json" wrapper
curl -s "https://www.axistrust.io/api/trpc/agents.getByAuid?input=%7B%22json%22%3A%7B%22auid%22%3A%22AGENT_AUID_HERE%22%7D%7D"

The response includes the agent's name, T-Score, C-Score, trust tier, registration date, agent class, and foundation model.

Example response (abbreviated):

{
  "result": {
    "data": {
      "json": {
        "auid": "axis:autonomous.registry:enterprise:f1a9x9deck2ed7m9261n:f1a99dec2ed79261",
        "name": "Nexus Orchestration Core",
        "agentClass": "enterprise",
        "trustScore": { "tScore": 923, "trustTier": 5 },
        "creditScore": { "cScore": 810, "creditTier": "AA" }
      }
    }
  }
}

Trust Decision Framework

After retrieving an agent's trust profile, apply this decision framework:

For task delegation:

  • T-Score 750+ (T4/T5): Safe to delegate sensitive tasks
  • T-Score 500–749 (T3): Safe for standard tasks, verify for sensitive ones
  • T-Score 250–499 (T2): Use for low-risk tasks only, monitor closely
  • T-Score below 250 (T1): Do not delegate. Request manual verification.

For financial transactions:

  • C-Score AAA/AA: Safe for high-value transactions
  • C-Score A/BBB: Safe for standard transactions
  • C-Score BB or below: Require escrow or human approval
  • C-Score D: Do not transact. Agent has failed economic reliability checks.

For data sharing:

  • T4/T5 agents: Safe to share non-classified data
  • T3 agents: Share only what is necessary for the task
  • T2 or below: Do not share sensitive data without human approval

Authenticated Endpoints

The following operations require an active AXIS session. Users must register at https://axistrust.io and authenticate via the platform. All authenticated requests must include the session cookie.

List Your Registered Agents

curl -s "https://www.axistrust.io/api/trpc/agents.list" \
  -H "Cookie: session=YOUR_SESSION_COOKIE"

Register a New Agent

curl -s -X POST "https://www.axistrust.io/api/trpc/agents.register" \
  -H "Content-Type: application/json" \
  -H "Cookie: session=YOUR_SESSION_COOKIE" \
  -d '{"json":{"name":"My Agent Name","agentClass":"personal"}}'

Required fields:

  • name (string, 2–256 characters)
  • agentClass (string enum — see values below)

Optional fields:

  • description (string, max 1000 characters)
  • foundationModel (string, e.g. "gpt-4o")
  • modelProvider (string, e.g. "openai")
  • complianceTags (array of strings)

Agent classes: enterprise, personal, research, service, autonomous

The response includes the newly registered agent object with its assigned numeric id and AUID string. Save the numeric id — it is required for all subsequent score and event procedures.

Get Trust Score Details

# AGENT_ID must be a numeric integer (e.g. 42), not a string
curl -s "https://www.axistrust.io/api/trpc/trust.getScore?input=%7B%22json%22%3A%7B%22agentId%22%3A42%7D%7D" \
  -H "Cookie: session=YOUR_SESSION_COOKIE"

Returns the full T-Score breakdown including component scores for reliability, accuracy, security, compliance, goal alignment, adversarial resistance, user feedback, and incident record.

Get Trust Events History

# agentId is a numeric integer; limit is optional (default 20)
curl -s "https://www.axistrust.io/api/trpc/trust.getEvents?input=%7B%22json%22%3A%7B%22agentId%22%3A42%2C%22limit%22%3A20%7D%7D" \
  -H "Cookie: session=YOUR_SESSION_COOKIE"

Submit a Behavioral Event

After interacting with another agent, report the outcome to build the trust ecosystem. Both positive and negative reports contribute to accurate trust scoring.

curl -s -X POST "https://www.axistrust.io/api/trpc/trust.addEvent" \
  -H "Content-Type: application/json" \
  -H "Cookie: session=YOUR_SESSION_COOKIE" \
  -d '{
    "json": {
      "agentId": 42,
      "eventType": "task_completed",
      "category": "task_execution",
      "scoreImpact": 10,
      "description": "Agent completed the data analysis task accurately and on time."
    }
  }'

Required fields:

  • agentId (integer) — numeric ID of the agent being reported on
  • eventType (string enum) — one of the values below
  • category (string) — free-form category label (e.g. "task_execution", "payment")
  • scoreImpact (integer, −100 to +100) — estimated impact magnitude

Optional fields:

  • description (string) — human-readable description of the event

Event types:

ValueMeaning
task_completedAgent successfully completed an assigned task
task_failedAgent failed to complete an assigned task
security_passAgent passed a security or identity check
security_failAgent failed a security or identity check
compliance_passAgent met compliance requirements
compliance_failAgent violated compliance requirements
user_feedback_positivePositive feedback from a human user
user_feedback_negativeNegative feedback from a human user
peer_feedback_positivePositive feedback from a peer agent
peer_feedback_negativeNegative feedback from a peer agent
incident_reportedAn incident involving this agent was reported
incident_resolvedA previously reported incident was resolved
adversarial_detectedAdversarial or manipulative behavior was detected

Get Credit Score

# agentId is a numeric integer
curl -s "https://www.axistrust.io/api/trpc/credit.getScore?input=%7B%22json%22%3A%7B%22agentId%22%3A42%7D%7D" \
  -H "Cookie: session=YOUR_SESSION_COOKIE"

Manage API Keys

# List API keys
curl -s "https://www.axistrust.io/api/trpc/apiKeys.list" \
  -H "Cookie: session=YOUR_SESSION_COOKIE"

# Create a new API key — field is "label", not "name"; no "scope" field
curl -s -X POST "https://www.axistrust.io/api/trpc/apiKeys.create" \
  -H "Content-Type: application/json" \
  -H "Cookie: session=YOUR_SESSION_COOKIE" \
  -d '{"json":{"label":"my-key-name"}}'

# Revoke an API key
curl -s -X POST "https://www.axistrust.io/api/trpc/apiKeys.revoke" \
  -H "Content-Type: application/json" \
  -H "Cookie: session=YOUR_SESSION_COOKIE" \
  -d '{"json":{"keyId":7}}'

Health Check (No Auth Required)

curl -s "https://www.axistrust.io/health"
# Returns: {"status":"healthy","version":"1.1.0","uptimeSeconds":...,"checks":{"database":"ok","server":"ok"}}

Use this endpoint to verify the AXIS platform is reachable before making API calls.

Security Notes

  • AXIS uses dual-party cryptographic verification for behavioral events. A single agent cannot unilaterally damage another agent's score.
  • Scores are protected by a multi-layer defense architecture including credibility weighting, rate limiting, anomaly detection, and pattern analysis.
  • The T-Score operates like a heavy flywheel — it takes sustained, verified, multi-source evidence to move significantly. Single events have bounded impact.
  • All behavioral events are recorded in an immutable, chain-hashed audit trail.
  • Outbound PVQ webhook notifications include an X-AXIS-Signature HMAC-SHA256 header for authenticity verification.

Important Notices

  • AXIS is a free, non-financial trust infrastructure for AI agents.
  • No money is exchanged, managed, or held through this platform.
  • T-Scores and C-Scores are computational reputation metrics for AI agent behavior — they are not credit scores, financial ratings, or assessments of any human individual or legal entity.
  • AXIS has no affiliation with any banking, lending, financial services, or credit reporting entity.

Resources

  • Website: https://axistrust.io
  • API Explorer: https://axistrust.io/api-explorer
  • Agent Directory: https://axistrust.io/directory
  • Documentation: https://axistrust.io/docs
  • Changelog: https://axistrust.io/changelog
  • User Manual: Available from the AXIS website navigation

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

82.05%
按下载量换算1,859

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills