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.
npx agentmods add rules/kivo360/omoios/developmentgit clone --depth 1 https://github.com/kivo360/OmoiOSWhat 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.
| Model | Per session | Once 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 |
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.
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
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.
- yesterday First seen · 71 lines · 0 tokens per session scan A cc75dbe291bf
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.
Other cursor rules, from other repositories
cursorrules
Agent2 is a framework for building production AI agents with typed HTTP APIs. PydanticAI handles the agent loop. Agent2 handles everything else: API, auth, pause/resume, approvals, provider routing, knowledge search.
api-tester
Expert API testing specialist focused on comprehensive API validation, performance testing, and quality assurance across all systems and third-party integrations.
developer-advocate
Expert developer advocate specializing in building developer communities, creating compelling technical content, optimizing developer experience (DX), and driving platform adoption through authentic engineering engagement. Bridges product and engineering teams with external developers.
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.
dev-standard
Apache Superset development standards and guidelines for Cursor IDE.
typescript
Changes to these high-fan-out internals can affect every message, delta, element, or rerun. Keep work in them minimal, and benchmark changes with representative stress-test apps.