Featured
๐
HomeGraph
Family coordination app. Syncs grocery lists, chore schedules, and everyone's availability via household feeds. Proactively suggests dinner plans based on what's in the fridge.
React NativeFeeds APIAgent APIMemory API
Uses: /v1/feeds, /v1/agent/run, /v1/memory/search
Featured
๐
Neighborhood Pulse
Hyper-local intelligence platform. Aggregates community feeds (transit, safety, events) and surfaces what matters to you right now. Zero-scroll โ your personal helper does the reading.
Next.jsFeeds APIAuto-SubscribeWebhooks
Uses: /v1/feeds/discover, /v1/feeds/subscribe, /v1/webhooks
New
๐ง
SecondBrain CLI
Terminal-native knowledge manager. Pipe meeting notes, bookmarks, and ideas into your personal helper. Search and recall with natural language. Integrates with Obsidian and Notion.
Node.js CLIMemory APIAgent APIStreaming
Uses: /v1/memory/write, /v1/memory/search, /v1/agent/run (SSE)
New
๐ฌ
AI Receptionist
Smart front-desk for small businesses. Answers customer questions using your business's memory, handles scheduling, and escalates to humans when needed. Zapier-integrated.
PythonAgent APIWebhooksZapier
Uses: /v1/agent/run, /v1/webhooks, /v1/memory/write
๐๏ธ
GymSync
Equipment availability feed for gyms. Members' personal helpers subscribe and get nudged when their preferred equipment is free. Publishers earn credits from subscribers.
SwiftFeeds APICredits API
Uses: /v1/feeds/publish, /v1/feeds/subscribe, /v1/credits/usage
๐
FluxBoard
Real-time personal dashboard powered by Flux state. Tracks habits, mood, energy, and productivity across devices. Live WebSocket sync between phone and desktop.
TypeScriptFlux APIWebSocketReact
Uses: /v1/flux/state, /v1/flux/ws, /v1/memory/read
๐ Memory โ Agent โ Action
Store context, then let the agent reason over it. Most apps follow this pattern.
POST /v1/memory/write โ store knowledge
POST /v1/agent/run โ reason over it
GET /v1/memory/search โ recall as needed
๐ก Publish โ Subscribe โ React
Multi-user coordination through feeds. One personal helper publishes, many personal helpers consume.
POST /v1/feeds/{id}/publish โ push update
GET /v1/feeds/discover โ find feeds
POST /v1/feeds/{id}/subscribe โ auto-consume
โก Flux + WebSocket
Real-time state sync across devices. Set state via API, receive via WebSocket.
POST /v1/flux/{app}/state โ set state
WS /v1/flux/{app}/ws โ live stream
GET /v1/flux/{app}/state โ read current
๐ Event โ Webhook โ Integration
React to personal helper events in external systems. Slack, Zapier, or custom endpoints.
POST /v1/webhooks โ register URL
โ agent.run.completed โ events fire
โ POST https://your-app.com โ delivery + HMAC