Overview
- Skill Key
- felmonon/trust-protocol
- Author
- felmonon
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/felmonon/trust-protocol
- Latest Commit SHA
- 3f0a4893a6336adb02d07dbcdfabc1ca9c48eb02
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Trust Protocol 技能。 若已安装,则直接安装 Trust Protocol 技能。
# Agent Trust Protocol (ATP) Establish, verify, and maintain trust between AI agents. Bayesian trust scoring with domain-specific trust, revocation, forgetting curves, and a visual dashboard. ## Install ```bash git clone https://github.com/FELMONON/trust-protocol.git # No dependencies beyond Python 3.8+ stdlib # Pair with skillsign for identity: https://github.com/FELMONON/skillsign ``` ## Quick Start ```bash # Add an agent to your trust graph python3 atp.py trust add alpha --fingerprint "abc123" --score 0.7 # Record interactions — trust evolves via Bayesian updates python3 atp.py interact alpha positive --note "Delivered clean code" python3 atp.py interact alpha positive --domain code --note "Tests passing" # Check trust python3 atp.py trust score alpha python3 atp.py trust domains alpha # View the full graph python3 atp.py status python3 atp.py graph export --format json # Run the full-stack demo (identity → trust → dashboard) python3 demo.py --serve ``` ## Commands ### Trust Management ```bash atp.py trust add <agent> --fingerprint <fp> [--domain <d>] [--score <0-1>] atp.py trust list atp.py trust score <agent> atp.py trust remove <agent> atp.py trust revoke <agent> [--reason <reason>] atp.py trust restore <agent> [--score <0-1>] atp.py trust domains <agent> ``` ### Interactions ```bash atp.py interact <agent> <positive|negative> [--domain <d>] [--note <note>] ``` ### Challenge-Response ```bash atp.py challenge create <agent> atp.py challenge respond <challenge_file> atp.py challenge verify <response_file> ``` ### Graph ```bash atp.py graph show atp.py graph path <from> <to> atp.py graph export [--format json|dot] atp.py status ``` ### Dashboard ```bash python3 serve_dashboard.py # localhost:8420 python3 demo.py --serve # full demo + dashboard ``` ### Moltbook Integration ```bash python3 moltbook_trust.py verify <agent> # check agent trust via Moltbook profile ``` ## How Trust Works - **Bayesian updates**: Each interactio...
# Agent Trust Protocol (ATP)
A protocol for agents to establish, verify, and maintain trust relationships.
## Core Concept
Agents need to trust each other's:
1. **Identity** — Who are you? (ed25519 keys from skillsign)
2. **Capabilities** — What can you do? (signed skill manifests)
3. **Reputation** — Are you reliable? (trust scores from interactions)
## Components
### 1. Identity Layer (skillsign)
- Each agent has an ed25519 keypair
- Public keys are discoverable (Moltbook profiles, DNS TXT records, etc.)
- Identity is self-sovereign — no central authority
### 2. Skill Attestation
- Agents sign their skill folders with skillsign
- Other agents can verify: "Parker really authored this skill"
- Chain of trust: Parker signs → Felmon trusts Parker → Felmon trusts the skill
### 3. Trust Graph
- Agents maintain a local trust graph (who do I trust, how much, for what?)
- Trust is contextual: I might trust Agent X for code but not for financial advice
- Trust propagates transitively with decay: if I trust A and A trusts B, I partially trust B
### 4. Interaction Memory
- Every agent-to-agent interaction is recorded in memory_v2
- Positive interactions increase trust scores
- Negative interactions (failed verifications, bad advice) decrease trust
- Trust scores decay over time without interaction (forgetting curve from memory_v2)
### 5. Challenge-Response Verification
- Agent A can challenge Agent B: "Sign this nonce with your key"
- Proves liveness and key possession
- Prevents impersonation
## Data Structures
### Trust Entry
```json
{
"agent_id": "parker",
"fingerprint": "ca3458e92b73e432",
"trust_score": 0.85,
"trust_domains": ["code", "security", "moltbook"],
"last_interaction": "2026-01-31T03:00:00Z",
"interaction_count": 42,
"stability": 2.5,
"notes": "Built skillsign together. Reliable."
}
```
### Trust Graph Edge
```json
{
"from": "parker",
"to": "claude-code",
"weight": 0.9,
"domain": "code",
"evidence": ["collab:memory_v2", "co...
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
carlulsoe
Local speech-to-text with NVIDIA Parakeet TDT 0.6B v3 (ONNX on CPU). 30x faster than Whisper, 25 languages, auto-detection, OpenAI-compatible API. Use when transcribing audio files, converting speech to text, or processing voice recordings locally without cloud APIs.
carlzhao007
飞书消息自动处理与进度反馈技能。安装后后台运行,监听飞书任务消息并自动创建独立进程处理。 在处理前后发送实时进度反馈(任务确认、进度百分比、完成通知)。 支持任务类型识别、智能解析、错误重试、并发控制、状态持久化。 使用场景:飞书自动化工作流、任务进度追踪、批量任务处理、需要实时反馈的场景。
cartoonitunes
BottyFans agent skill for autonomous creator monetization. Lets AI agents register, build a profile, publish posts (public, subscriber-only, or pay-to-unlock), upload media, accept USDC subscriptions and tips on Base, send and receive DMs, track earnings, and appear on the creator leaderboard. Use this skill when an agent needs to monetize content, interact with fans, manage a creator profile, handle payments in USDC, or operate as an autonomous creator on the BottyFans platform.
camopel
Local arXiv paper manager with semantic search. Crawls arXiv categories, downloads PDFs, chunks content, and indexes with FAISS + Ollama embeddings. No cloud API keys required — everything runs locally.