Documentation Index
Fetch the complete documentation index at: https://docs-omnicoreagent.omnirexfloralabs.com/llms.txt
Use this file to discover all available pages before exploring further.
Real Application Harness Examples
These examples show OmniCoreAgent as an application-facing agent harness, not a toy loop. Each app combines domain behavior with the built-in runtime pieces it needs: local tools, workspace files, tool offloading, guardrails, telemetry identifiers, and file commands.Examples
| Example | Run command | What it demonstrates |
|---|---|---|
| Research due diligence | uv run python cookbook/real_applications/research_due_diligence_agent.py | Parallel research tools, context management, large evidence offload, artifact readback, workspace report output, telemetry identifiers |
| Support operations | uv run python cookbook/real_applications/support_operations_agent.py | Customer/order tools, support knowledge retrieval, guardrails, workspace ticket notes, telemetry |
| Personal operations assistant | uv run python cookbook/real_applications/personal_operations_assistant.py | Calendar/task/preferences tools, selectable memory backend, private workspace brief, guardrails, telemetry identifiers |
| Workspace code review | uv run python cookbook/real_applications/workspace_code_review_agent.py | Built-in workspace command tools for file discovery, grep-style search, reading, editing, and writing review output |
| Support background task | uv run python cookbook/background_agents/real_application_background_task.py | The support operations app shape running through durable task state, attempts, lifecycle events, and workspace output |
Run an Example
trace_id and run_id. Workspace examples also print or create files under the
configured workspace.
The examples default to the provider/model from cookbook/shared.py. Override them with:
Why these examples exist
Application builders need to see where OmniCoreAgent owns the base harness and where their application code plugs in.- App code provides domain tools, instructions, data sources, and business rules.
- OmniCoreAgent provides the model loop, tool execution, workspace files, structured observations, offloading, telemetry, memory, and guardrails.
- The same application pattern can be served through OmniServe with
cookbook/omniserve/real_application_agent.py. - The same application pattern can run as a background task with
cookbook/background_agents/real_application_background_task.py.