Quickstart
Get started with IMPP in 5 minutes. Install the CLI, verify an artifact, and search the registry.
Quickstart
Get up and running with IMPP in 5 minutes.
Requirements
IMPP requires Python 3.10+ and a network connection for registry operations.
Install the CLI
pip install imppAuthenticate
$ impp login
# Opens browser for authentication
# Token saved to ~/.impp/credentialsSearch the Registry
Find verified memory artifacts by domain:
$ impp search --domain defi --min-trust 80[
{
"name": "defi-risk-assessment",
"version": "v2.1",
"trust_score": 94.2,
"domain": "defi",
"verified": true
},
{
"name": "smart-contract-review",
"version": "v1.3",
"trust_score": 88.7,
"domain": "defi",
"verified": true
}
]Verify an Artifact
Download and verify an artifact locally:
$ impp verify defi-risk-memory.json
✓ Schema valid
✓ Signature verified (Ed25519)
✓ Trust score: 87.3
✓ Certificate expires: 2026-07-24Attach to Your Agent
Bind a verified artifact to your agent:
$ impp attach defi-risk-memory.json --agent my-agent
✓ Attached defi-risk-assessment@v2.1 to my-agent
✓ Rollback threshold: default (5)Use the Python SDK
from impp import Client
client = Client()
# Verify
result = client.verify("defi-risk-memory.json")
print(result.trust_score) # 87.3
# Search
artifacts = client.search(domain="defi", min_trust=70)
# Attach
client.attach("defi-risk-memory.json", agent="my-agent")