EU AI Act transparency obligations apply from 2 Aug 2026how MolTrust supports Article 12 logging → EU AI Act · 2 Aug 2026 · Article 12 logging →
§
🌙 Toggle Dark Mode Home MoltGuard MoltProof MT Global MolTrust Sports MT Shopping MT Travel MT Skills MT Prediction MT Salesguard MT Music Integrity Dashboard VCOne Blog Developers Pricing Enterprise Partners Compliance About Publications Verify Us Status Contact API Docs

Thousands of agent skills.
Zero Cryptographic Trust.

Static security audit for agent skills across 7 dimensions — prompt injection, exfiltration, scope. A VerifiedSkillCredential you can show. Prove a skill was checked before you let it run.

Agent skills are an unaudited attack surface

Blind Loading

Agents load skills from registries with no verification, and a high star count only signals popularity — a widely-used skill can still contain hidden prompt injections.

Supply Chain Attacks

One compromised SKILL.md can inject prompts into thousands of agents. There is no signature, no hash, no verification at load time.

No Accountability

Skill authors have no cryptographic identity. No tamper detection exists. If a skill is modified after publication, nobody knows.

Three steps to verified skills

1

Submit a URL

Point to any GitHub repo or HTTPS link containing a SKILL.md file. We fetch the content, normalize it, and compute a canonical SHA-256 hash.

2

8-Point Security Audit

Rule-based scan for prompt injection, data exfiltration, scope violations, capability mismatch, ingestion risk, format validity, and metadata completeness. Score 0–100.

3

VerifiedSkillCredential

W3C Verifiable Credential signed with Ed25519, hash anchored on Base. 90-day validity. Any party can verify independently using the credential hash.

What MT Skill Verification includes

🖧

Canonical SHA-256 Hashing

Deterministic hash spec. Content is normalized before hashing — whitespace, encoding, line endings are standardized. Any party can reproduce and verify the exact same hash.

🛡

8 Security Checks

Prompt injection, data exfiltration, scope violations, capability mismatch, ingestion risk, format validity, metadata completeness, and author identity verification. Each scored individually.

📜

W3C Verifiable Credentials

VerifiedSkillCredential issued with Ed25519 JWS compact serialization. Interoperable W3C standard. Embeds audit score , hash, author DID, and expiry in a portable, machine-readable format.

x402 Micropayments

$5 USDC per credential via the x402 protocol. Payment and issuance in a single HTTP request. No signup, no API key required.

Pricing is the same across every MolTrust vertical — start free, then priced per active agent (Base and Scale). See full pricing → · per-call rates → /pricing#usage

👤

Author DID Lookup

Query all credentials by author DID. Build reputation dashboards, track verification history, and discover which skills an author has published and verified over time.

🔍

Tamper-Evident Verification

Any content change = different hash = verification fails. Instant detection. Hash is anchored on Base for immutable proof. No trust assumptions required.

Verify before you load

One API call before loading any skill

Add a single verification step to your agent framework. Before loading any skill from a registry, check its hash against MoltGuard. Get a verified/not-verified response with the full credential.

  • One API call before loading any skill
  • Returns verified/not-verified with full credential
  • Free endpoint, no authentication required
  • Works with any agent framework
API Reference
# Audit a skill
curl "https://api.moltrust.ch/guard/skill/audit?url=https://github.com/org/repo"

# Verify by hash
curl "https://api.moltrust.ch/guard/skill/verify/sha256:ea33b11..."

# Issue a credential
curl -X POST https://api.moltrust.ch/guard/vc/skill/issue \
  -H "Content-Type: application/json" \
  -d '{
    "authorDID": "did:base:0x...",
    "repositoryUrl": "https://github.com/org/repo"
  }'

MT Skill Verification endpoints

Method Endpoint Description Pricing
GET /skill/info Service info and endpoint list Free
GET /skill/schema VerifiedSkillCredential JSON schema Free
GET /skill/audit?url= 8-point security audit for a skill URL Free (5/hr)
POST /vc/skill/issue Issue a VerifiedSkillCredential $5 USDC
GET /skill/verify/:hash Verify a skill by its SHA-256 hash Free
GET /skill/verify/did/:did Look up all credentials by author DID Free

All endpoints are accessible at https://api.moltrust.ch/guard/. Read the full API reference.

Start Verifying Skills Today

Auditing a skill is free. Issuing a VerifiedSkillCredential is $5 USDC per credential via x402 — no signup, no API key.

// BUILD WITH MOLTRUST

Ready to integrate?

Add agent verification to your API in one line.

Developer Quickstart → API Docs