Slack agents
Database latency is spiking again!
I’ll take it from here.
Handoff complete. Monitoring.
Open sourceMultiplayer AI and Apps
Your team, your agents, one context layer, scoped to each person.
What teams build on LemmaOpen a tile for the idea
Runson
Lemma.
Database latency is spiking again!
I’ll take it from here.
Handoff complete. Monitoring.
Hey! What can I help you with?
Status of deploy 2024-05-12?
> codex --skin release-operatorFrom a prompt to running team software
Five layers. All of it real.
01
Claude Code, Codex, Cursor, OpenCode, or inside Lemma itself. The agent authors the tables, agents, workflows, permissions, and the app, then verifies them through the same CLI.
02
One URL for the people who use it. The agents start working on schedules, webhooks, and table events, and keep working while everyone is logged off.
03
Teammates, clients, friends. They each get an invite link, the app, and their own account inside the pod.
04
The same permission model covers people and agents. Grant a table, hide a resource, or require an approval before a consequential action goes through.
05
Telegram, Slack, WhatsApp, and email. Or open it as an app. Every entry point reads and writes the same records and respects the same permissions.
Everything lives in a pod
Records first, then the functions over them, then the agents and workflows that move work, then the app people open. Permissions hold all of it.
What it remembers
| id | uuid | primary key |
| customer | relation | → customers |
| amount | money | indexed |
| status | enum | open · drafted · closed |
| created_at | timestamp | auto |
## Thresholds
Refunds above $250 require an approver.
Repeat requests inside 30 days escalate to a lead.
What it does the same way every time
fn check_policy(amount, customer) { policy = read("refund-policy.md") ifamount > policy.threshold return { requiresApproval: true }}What moves the work
Can readtickets · customers · refund-policy.md
Can writetickets.status
Cannot touchrefunds · api_keys · connectors
Toolscheck_policy · search · table.update
Where people meet it
tkt_418 Northwind · $420needs approval
tkt_417 Halden · $38sent
tkt_416 Ravel · $120sent
The boundary it all sits on
Stripebilling@northstar.coissue refunds
Gmailsupport@northstar.coread threads · create drafts
Surfaces
Every surface knows who is asking, and writes to the same records.
Build it
The app, the tables, the agents, the workflows and the permissions. All written as files and checked by the same agent that wrote them.
Examples
Whole working systems, open source and running. Open one, see how it was built, make it yours.
RoundtableA shared task board where people and agents can pick up work, leave a clear trail, and hand it back.Install and remix
PaniniA writing space where agents comment on the exact passage, suggest an edit, and wait for you to decide.Install and remix
FrontdeskA shared support inbox that sorts new messages, prepares an answer, and leaves the final send with a person.Install and remix
Smart InboxA personal inbox that follows the rules you choose and prepares replies without sending behind your back.Install and remix
SidekickA personal assistant that remembers how you work, handles recurring tasks, and asks before it acts outside the pod.Install and remix
Lemma DesignA place to turn a brief into several live prototypes, try them, and keep revising the direction that works.Install and remix
NachiketaA learning space that starts with your goal, researches the subject, and changes the path as you attempt the work.Install and remix
DropA Telegram capture box that cleans up what you send and makes it possible to find again.Install and remixA pod is files. Export it, share it, remix it.
$ lemma pod export ./support-ops# the whole system, as files$ lemma pod import ./support-ops# ship it back, or anywhere else