Generator
LockscreenTodo
Agent-to-lockscreen primitive

Describe your task. Get a lockscreen wallpaper.

LockscreenTodo turns the things you cannot miss into a calm phone wallpaper. In this demo, an AI agent prepares the structured payload behind the scenes.

Agent filters tasks
MCP payload is sent
Lockscreen is rendered

Agent conversation

User

Tomorrow is busy. Help me put the things I personally cannot miss onto my lock screen.

Agent

I found three human-only tasks worth persistent lockscreen visibility: medication, passport, and package pickup.

MCP payload

{
  "jsonrpc": "2.0",
  "id": "demo-lockscreen-push",
  "method": "tools/call",
  "params": {
    "name": "push_lockscreen_reminders",
    "arguments": {
      "reminders": [
        {
          "id": "demo-medication",
          "source": "agent-demo",
          "title": "8:00 PM - take blood pressure medicine",
          "kind": "medication",
          "priority": "high",
          "dueAt": "2026-04-28T20:00:00+08:00",
          "requiresHuman": true,
          "note": "After dinner"
        },
        {
          "id": "demo-passport",
          "source": "agent-demo",
          "title": "Before leaving - bring passport",
          "kind": "document",
          "priority": "high",
          "dueAt": "2026-04-29T08:30:00+08:00",
          "requiresHuman": true
        },
        {
          "id": "demo-package",
          "source": "agent-demo",
          "title": "After work - pick up package",
          "kind": "errand",
          "priority": "normal",
          "dueAt": "2026-04-28T18:30:00+08:00",
          "requiresHuman": true
        }
      ]
    }
  }
}