development

A set of development instructions for starting backend services with hot reload using containers. The setup includes a FastAPI server, background worker, PostgreSQL database, Redis cache, and an orchestrator loop.

In plain words
What is it for?
Use it to run the development stack, follow all or individual service logs, filter structured heartbeat logs, and troubleshoot common database connection issues.
Why use it?
It gives developers one documented way to start the local environment and inspect service logs while working on the backend.

Cursor rule for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/kivo360/omoios/development
Clone the repo
git clone --depth 1 https://github.com/kivo360/OmoiOS

Made for: Cursor.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 466 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.00466
Opus 5 $0.00000 $0.00233
Sonnet 5 $0.00000 $0.00093
Haiku 4.5 $0.00000 $0.00047

Measured yesterday against content hash cc75dbe291bf, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

development scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/development.mdc · 71 lines

What it actually says

Backend Development Mode

Starting the Development Environment

To run the backend services with hot-reload during development:

# From the project root directory
just watch

This command:

  • Starts PostgreSQL and Redis containers
  • Builds and runs the API, Worker, and Orchestrator services
  • Enables hot-reload via docker compose watch - changes to Python files automatically restart services

Service Architecture

The just watch command runs these services:

  • backend: FastAPI server (port 8000)
  • worker: Background task worker
  • postgres: PostgreSQL database (port 15432)
  • redis: Redis cache (port 16379)

The orchestrator loop runs inside the backend service and:

  • Polls for pending tasks every 10 seconds
  • Spawns Daytona sandboxes (when DAYTONA_SANDBOX_EXECUTION=true)
  • Logs heartbeats every 30 seconds (JSON format via structlog)

Viewing Logs

# All services
docker compose logs -f

# Specific service
docker compose logs -f backend

# Filter orchestrator JSON logs with jq
docker compose logs backend 2>&1 | grep -E '^\{' | jq 'select(.event == "heartbeat")'

Common Issues

"too many clients already" (PostgreSQL)

Connection pool exhaustion. Restart services:

docker compose restart postgres
# or full restart
docker compose down && just watch

Multiple Alembic Heads

cd backend
uv run alembic heads  # Check for multiple heads
uv run alembic merge <head1> <head2> -m "merge_heads"

Important Paths

  • Justfile: /senior_sandbox/Justfile (main commands)
  • Docker Compose: /senior_sandbox/backend/docker-compose.yml
  • Orchestrator Worker: /senior_sandbox/backend/omoi_os/workers/orchestrator_worker.py
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 71 lines · 0 tokens per session scan A cc75dbe291bf

Subscribe to this mod's changes

development is a cursor rule published in the GitHub repository kivo360/OmoiOS (75 stars, last pushed 2mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 466 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.