The AI console — try it
This is the real console, running in your browser. Every AI feature I built is in here: pick one, read what it promises to return, change which service answers it or rewrite its instructions, and run it. No AI service is contacted — the replies come from a stand-in that runs in the page — so what you are checking is the machinery, not the model.
Nothing here leaves your device. It all runs in the browser — no sign-in, nothing saved, no request sent anywhere. There is no key to install and no server to install it on: a built-in stand-in answers every run, returning the right shape with placeholder content, and it says so on each result. The entry points, their schemas and their instructions are the real ones, and the same configuration is what runs on the signed-in console, where a provider does the answering; the call counts, the run log and the version history beside them are sample data, because there is no server here to have counted anything.
Catalog
3audit.digest
Override · prompt v2Audit
Summarize recent audit and change-log activity into a digest with highlights and anomalies.
Input contract — read-only, declared in code
{
"type": "object",
"properties": {
"entries": {
"type": "array",
"items": {
"type": "object",
"properties": {
"when": {
"type": "string"
},
"actor": {
"type": "string"
},
"action": {
"type": "string"
},
"target": {
"type": [
"string",
"null"
]
},
"detail": {
"type": [
"string",
"null"
]
}
}
}
}
}
}Output schema (enforced) — read-only, declared in code
{
"type": "object",
"properties": {
"summary": {
"type": "string"
},
"highlights": {
"type": "array",
"items": {
"type": "string"
}
},
"anomalies": {
"type": "array",
"items": {
"type": "string"
}
}
}
}Key configured
Reasoning effort
On Fake this maps to
—Temperature0.3
Access
No restriction — anyone signed in can run this entry point.
Active prompt v2 · by Junior Fortunato · Jul 18, 2026, 22:10 UTC
Test & preview
Runs the configuration above through the built-in stand-in: the same output every time, the right shape, no cost, nothing saved.