Build loop
First Pod
The recommended order for turning a blank workspace into a useful pod.
Recommended sequence
- Define the operating job: one team or process, one domain, one primary unit of work.
- Create the pod and inspect what the starter gave you.
- Create or refine collaborative tables for shared business records.
- Add one function only if a write needs validation, coordinated records, or an external operation.
- Add an agent for one judgment-heavy step, with explicit input and output schemas.
- Create a workflow only when there is real orchestration: branching, waits, schedules, or handoffs.
- Build the app last, against verified resources, while keeping the first screen focused on real work.
CLI rhythm
lemma pod create support-triage --with-starter --description "Triage and route inbound support work"
lemma pods select support-triage --save-default
lemma pod describe
lemma table create --pod-id <pod-id> --payload-file ./payloads/tickets-table.json
lemma function create --pod-id <pod-id> --payload-file ./payloads/escalate-ticket-function.json
lemma agent create --pod-id <pod-id> --payload-file ./payloads/ticket-triage-agent.json
lemma workflow create --pod-id <pod-id> --payload-file ./payloads/ticket-triage-workflow.json
lemma pod describe <pod-id>