Your context
learn_guitar · beginnerYour preferences, constraints, and current state.
Open Standard
Set your preferences once. Compatible AI services can adapt — in real time where integrations support live updates.
One profile, compatible platforms — your preferences can travel with you
Your context can stay current — change once, participating services adapt
AI that knows your situation — and responds accordingly
Define your context once. A compact token carries it to compatible services.
Your preferences, constraints, and current state.
One compact token, every compatible service.
Each service reads what it needs and adjusts.
Your preferences, constraints, values, and state — encoded once for compatible services.
Every VCP token carries three layers of context, each serving a distinct purpose.
Rules, boundaries, and constitutions that govern AI behavior. Hard constraints set by you that AI platforms should respect.
Your current role, environment, and platform context. Are you at work or home? Learning or creating? Context switches accordingly.
Your preferences, mood, energy, and state right now. A living snapshot of who you are in this moment — updated in real time.
Trust, End to End
Every VCP token is cryptographically signed, verified before it touches a model, and loaded with a full audit trail.
Use Cases · Where It Matters
Wherever values need to travel with the agent and adapt to context — personal AI, multi-agent systems, enterprise, healthcare.
VCP/M carries context_share, constitution_announce and escalation between agents, with severity levels and version negotiation.
See Relay demoPreferences set once. Your context travels across platforms — communication style, constraints, personal state, all intact.
See Gentian demoCampion's personal constraints (single parent, health appointments) shape advice without ever reaching HR or the platform.
See Campion demoMarta weighs a family loan request. The Mediator persona uses her private context to distinguish genuine duty from guilt.
See Marta demoIllustrative scenarios, contextual signals, and protocol-mediated adaptation.
v3|usr:gentian|key:abc123
con:guitar-learning
per:visual-learner
goal:fingerpicking
flags:dyslexia-friendly
priv:medical=noneVCP tokens pack your entire context into a compact, portable format. Preferences, constraints, current state — all traveling in a few hundred bytes.
Your context can follow you across participating AI services. No more re-entering preferences, re-explaining constraints, or starting from scratch.
Create, inspect, and experiment with VCP tokens in real-time. Toggle constraints, change preferences, and watch the compact token update instantly.
Open PlaygroundBuilt for Developers
Drop the governance layer into your stack in Python, TypeScript, or Rust. Authorize tool calls with cryptographic proof, negotiate capabilities, and carry context — all tracking VCP v3.1.
from creed_sdk import create_client
client = create_client(api_key="crd_live_...")
# Authorize a tool call through the governance layer
result = await client.decide(
tool_name="send_email",
arguments={"to": "user@example.com", "subject": "Hello"},
on_allow=lambda d: print(d.decision_token),
on_deny=lambda d: print(d.reasons),
)