Skip to main content

Deterministic Security for AI Agent Skills โ€” 104 verified skills with Ed25519 signature chain

Project description

๐Ÿ’  JadeGate

Deterministic Security for AI Agent Skills

"Code is fluid. Jade is solid."

็މๅฐๆ—ขๅฎš๏ผŒไธ‡ๆณ•ไธไพตใ€‚

PyPI Skills [English | ไธญๆ–‡]

License Zero Dependencies


What is JadeGate?

JADE (JSON-based Agent Deterministic Execution) is a zero-trust security protocol for AI agent skills.

Every skill is a pure JSON file โ€” non-Turing-complete, structurally verifiable, mathematically provable safe.

No eval(). No exec(). No import. No escape.

็พŒ็ฌ›ไฝ•้กปๆ€จๆจๆŸณ๏ผŒๆ˜ฅ้ฃŽไธๅบฆ็މ้—จๅ…ณใ€‚
Malicious code shall not pass the JadeGate.

Why?

MCP is powerful but permissive. Any MCP server can run arbitrary code. JadeGate adds a security layer:

MCP JadeGate
Format Arbitrary code Pure JSON
Verification Trust the server 5-layer deterministic proof
Signatures None Ed25519 chain of trust
Sandbox Server-dependent Enforced by protocol
Dependencies Runtime-dependent Zero

Quick Start

pip install jadegate
# Browse all verified skills
jade list

# Search for what you need
jade search "github"

# Check skill details
jade info mcp_brave_search

# Verify any skill file
jade verify my_skill.json

# System status
jade status

5-Layer Verification

Every skill passes through 5 deterministic security layers:

Layer 1: Schema Validation     โ€” Structure must be valid JADE JSON
Layer 2: DAG Integrity         โ€” Execution graph must be acyclic, no loops
Layer 3: Security Policy       โ€” Sandbox, network whitelist, permissions
Layer 4: Injection Detection   โ€” No code injection, no template attacks
Layer 5: Cryptographic Seal    โ€” Ed25519 signature chain verification

All layers are deterministic. Same input โ†’ same result. Every time.

Trust Hierarchy

๐Ÿ’  Root Seal        โ€” Project authority, highest trust
๐Ÿ”ท Org Seal         โ€” Authorized organizations
๐Ÿ”น Community Seal   โ€” Anyone can sign; 5+ sigs = Community Verified
# Generate your community signing key
python jade_community_sign.py keygen

# Sign a skill you've reviewed
python jade_community_sign.py sign jade_skills/mcp/mcp_brave_search.json

# Check all signatures on a skill
python jade_community_sign.py check jade_skills/mcp/mcp_brave_search.json

101 Verified Skills

JadeGate ships with 101 pre-verified skills across two categories:

MCP Skills (61)

GitHub, Slack, Discord, OpenAI, Anthropic, AWS, GCP, Firebase, MongoDB, Redis, Elasticsearch, Stripe, Twilio, SendGrid, Jira, Confluence, Vercel, Shopify, and more.

Tool Skills (40)

CSV analysis, DNS lookup, QR code, image resize, JWT decode, regex tester, password generator, UUID, YAML/JSON converter, and more.

โ†’ Full list: CATALOG.md

For AI Agents

All commands support --json for machine-readable output:

jade search --json "web search"
jade list --json --type mcp
jade info --json mcp_brave_search
from jade_core.validator import JadeValidator

v = JadeValidator()
result = v.validate_file("my_skill.json")
print(result.valid)  # True/False
print(result.issues) # Detailed security findings

Skill Format

A JadeGate skill is a single JSON file:

{
  "jade_version": "1.0.0",
  "skill_id": "my_skill",
  "metadata": {
    "name": "My Skill",
    "description": "What it does",
    "version": "1.0.0",
    "tags": ["example"]
  },
  "input_schema": { ... },
  "output_schema": { ... },
  "execution_dag": {
    "nodes": [ ... ],
    "edges": [ ... ]
  },
  "security": {
    "sandbox": "strict",
    "network_whitelist": ["api.example.com"],
    "max_execution_time_ms": 10000
  }
}

No code. Just structure. Verifiable by anyone.

Contributing

  1. Create a skill JSON file
  2. Run jade verify your_skill.json
  3. Submit a PR โ€” CI auto-verifies
  4. Community signs โ†’ merged

Architecture

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚              AI Agent                    โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚         JadeGate Protocol               โ”‚
โ”‚  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚
โ”‚  โ”‚ Verify  โ”‚ โ”‚ Search   โ”‚ โ”‚ Execute  โ”‚ โ”‚
โ”‚  โ”‚ 5-Layer โ”‚ โ”‚ Catalog  โ”‚ โ”‚ Sandbox  โ”‚ โ”‚
โ”‚  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚  ๐Ÿ’  Ed25519 Signature Chain             โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚  Skills (Pure JSON, no code)            โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

License

Apache 2.0


๐Ÿ’  JadeGate โ€” Trust is not assumed. Trust is proven.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jadegate-1.1.1.tar.gz (136.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jadegate-1.1.1-py3-none-any.whl (289.8 kB view details)

Uploaded Python 3

File details

Details for the file jadegate-1.1.1.tar.gz.

File metadata

  • Download URL: jadegate-1.1.1.tar.gz
  • Upload date:
  • Size: 136.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.2

File hashes

Hashes for jadegate-1.1.1.tar.gz
Algorithm Hash digest
SHA256 06995dfa44301ae783a1c3bc69ab85fdfb404bd3dc425a92874fa8ba013c7a02
MD5 4a2525f2f7c25e18128efd04bc949869
BLAKE2b-256 c345171659e7a2ca59800e570d0f13720182b9bd956e4895b992f466b4ca99a8

See more details on using hashes here.

File details

Details for the file jadegate-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: jadegate-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 289.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.2

File hashes

Hashes for jadegate-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3a6d6bd78dec3f4538271d58d0f4bbbd71d0acc0e563eec55cb6d8d9ab863f71
MD5 a3c1bda9e06335fbcb808963585b77fa
BLAKE2b-256 4085eb26397b92f66202a93c287bd0c133841e00d1e942ed5f1b3dad55093b7b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page