Building on the layer
An operations manager routes a sentinel digest to Slack. A coordinator builds a workflow for engineer follow-ups. A developer opens Cursor and asks it to build an account review panel against the VH3 AI API. Each builder is working on the same prepared operational model. VH3 AI is designed as a secure operational substrate:- Jobs and relationships are enriched once and stored in infrastructure scoped to your organisation.
- Fast discovery (search, similarity, entity resolution, customer knowledge sections) reads that model without an LLM.
- Agents, reports, and automations read the same model when they need language and narrative.
- Connected tools (email, calendar, CRM, storage, field systems) feed entities back into the same graph through managed sync and resolution.
Are you an operator or an IT lead? Operators should start at Working with your operation; IT leads deploying internal apps should read Deploying secure apps for governance and auth patterns. This page focuses on builder workflows.
Operational discovery
How search, customer knowledge sections, and entity resolution work on the layer.
What integrating AI should mean in field service
VH3 AI targets levels 3 and 4. Level 2 is where cost and trust break down: every session re-interprets raw text, and nothing belongs to the organisation in a structured form.
Data sovereignty means your enriched operational intelligence is tenant-isolated, portable, and usable outside a single vendor UI. You can connect your own models (BYOK), your own automations, and your own applications. The platform fee covers the intelligence layer; agent token spend stays visible on your provider account.
Three builder paths (same foundation)
Operations builders
n8n, templates, Connie in Claude Projects. Solve local problems without a development queue.
Coding agents
Cursor, Claude Code, MCP. Generate apps and integrations against a documented API.
Product engineers
Direct API integration, custom UIs, partner solutions. Full control, full responsibility.
The tool surface (at a glance)
The substrate is only half the story. The other half is the tool surface that sits on top, the same tools Connie uses internally, also available to your agents, automations, and apps.
This is the surface a coding agent or n8n workflow calls. Sentinels are how the platform notices things; discovery and synthesis are how it answers; cases and teams are how it follows through. The full inventory, with patterns and evaluation notes for AI agents reading the docs, is on Platform tools.
Platform tools (full inventory)
Every tool, what it does, when to reach for it, and the patterns that get the most out of them. Use this page if you are evaluating VH3 AI for a build.
Connected tools and programmatic access
Field service runs across more than one system. VH3 AI brings third-party tools into the same operational model so mail, calendar, CRM, storage, and field systems add useful context to the graph.Native connections (in the platform)
Native integrations are activated inside VH3 AI: OAuth handled for you, sync managed by the platform, health visible to admins. Typical categories:
Per-user connections matter for agents tied to real people: an engineer’s inbox and calendar, scoped to what they authorised, can inform briefings without exposing everyone’s mail to the organisation.
Organisation-level connections matter for shared systems: one Xero or Slack workspace, one CRM, available to automations and reporting across the team.
Programmatic access (for your agents and apps)
Everything the platform does internally is also available programmatically:- REST API for search, jobs feed, sentinels, reports, Connie, cases, teams, and backfill tasks.
- MCP server so Claude Desktop, Cursor, and other MCP clients call the same tools Connie uses, with credentials handled server-side after JWT auth.
- n8n node (community and PRO) for workflow builders who want operations-friendly automation without writing a backend.
Operations builders (no-code and low-code)
The citizen-builder pattern is how strong field service teams already work when they are not waiting on IT:- An operations manager routes a sentinel digest to Slack when SLA performance slips.
- A contracts lead schedules an account monthly report to a client distribution list.
- A service coordinator creates a workflow when engineer-flagged follow-ups spike for one customer.
Coding agents on a secure substrate
Tools such as Claude Code and Cursor work best when they are not guessing your domain. They need:- A stable API contract (OpenAPI, consistent field names).
- Guardrails (which endpoint for which question, what never to expose to end users).
- A tenant boundary (
company_id,api_key, no cross-customer leakage).
Agent Starter Kits
Drop-in configuration so coding agents use VH3 endpoints correctly from day one.
What coding agents should build
Safe patterns
Contact-centric scoping. Build navigation around customers (contacts). Places are addresses under that customer. Engineers are resources. This matches how account managers and dispatchers think.
Timeouts. Discovery endpoints are typically sub-second.
investigate, report generation with narrative, and Connie tool loops need longer HTTP timeouts (often 20 to 25 seconds). Agent kits document recommended values.MCP: intelligence without middleware
The MCP server exposes tools such as search, investigate, sentinels, jobs feed, and reports. A coding agent can call operational discovery directly, then generate UI or workflow code around the responses. See MCP setup.Customer knowledge your agents can rely on
Builders should understand the Customer Summary knowledge object (see Operational discovery):- Seven modular sections, each independently searchable and rankable.
- Refreshed on a schedule or when job drift thresholds are met, so agents are not stuck with a one-off PDF.
- Injected into Connie sessions together with recent jobs since generation, so conversations start with current context.
POST /search/summary-sections for thematic queries across accounts, or fetch a full brief per contact before rendering a custom account page.
From signals to owned work
AI integration fails when insight has nowhere to go. VH3 AI pairs detection with ownership:
Example flow:
- Sentinel flags repeat attendance for a contact.
- Automation runs
search/outcomesfor similar faults on that account. - Case opened: “Third fire panel callout in six weeks” with jobs linked as items.
- Regional team notified; Connie drafts engineer briefing for the next visit.
Why the substrate makes coding agents viable
Prepared context is what makes coding agents useful in field service. Each session can start from enriched jobs, resolved accounts, and linked history. VH3 AI front-loads enrichment, multi-entity resolution, and linking of jobs, customers, sites, and history at ingest. Coding agents then generate thin applications that call well-shaped endpoints. You are not paying an LLM to rediscover your operation on every click.Built to be built on. Your people, solving their own problems, on their own terms.The platform is the layer your agents and applications sit on while your field system and IDE continue doing their jobs.
Security and governance (builder-relevant)
Builders should assume:- Data scoping on every call (
company_id+ validatedapi_key). No API call can cross organisation boundaries. - Built-in user management and auth: invite users, assign roles, issue JWTs. You do not need to build the auth layer yourself.
- PII handling aligned with your DPA: do not rebuild sensitive fields into public UIs.
- Read-only field integration by default; write-back only when explicitly agreed.
Choose your starting kit
Related
Intelligence layer
Architecture narrative for technical buyers.
Native integrations
Connect inboxes, calendars, CRM, and storage.
Introduction
Platform principles and sovereignty.
Authentication
Keys, tenancy, and access.