Design Custom Circuits with Juno
Meet Juno
Juno is Minerva's AI oracle — powered by Claude. She helps you design ZK-STARK circuits from natural language descriptions. No cryptography expertise required.
How It Works
Example Conversation
You: "I need to prove that my employee count is between 50 and 500 for a government contract bid, without revealing the exact headcount."
Juno: "Here's a range-check circuit for your employee count..."
{
"name": "Employee Count Range",
"inputs": {
"public": ["min_count", "max_count"],
"private": ["employee_count"]
},
"gates": [
{ "type": "range", "inputs": ["employee_count", "min_count", "max_count"], "output": "in_range" }
],
"outputs": ["in_range"]
}Juno then explains:
Tips for Good Prompts
What Juno Can't Do (Yet)
These limitations are temporary — the Winterfell integration is under active development.