Built with Continua AI

Real apps shipping on the Continua API. From smart home coordinators to neighborhood intelligence โ€” see what's possible.

Featured Projects

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
Community
๐Ÿ‹๏ธ

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
Community
๐Ÿ“Š

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

Common Patterns

๐Ÿ”„ 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

Build Something

The API is simple: bearer auth, JSON in/out, ~10 endpoints. Get an API key and start building in minutes.

API Reference โ†’ Try the Demo โ†’