Documentation Index
Fetch the complete documentation index at: https://docs.vh3.ai/llms.txt
Use this file to discover all available pages before exploring further.
Building on the layer
For years, people said every business is a technology business. Now every business is a software business. The shift in field service is not “add a chatbot to the FMS.” It is own an operational model that every team, agent, and application can trust, then extend it with workflows and software your organisation controls. VH3 AI is designed as 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.
Operational discovery
How search, customer knowledge sections, and entity resolution work on the layer.
What integrating AI should mean in field service
| Maturity | What the business has |
|---|---|
| Level 1: Access | Exports and dashboards; questions wait for manual analysis |
| Level 2: Ask | Chat over files; answers are not durable or shared |
| Level 3: Model | Persistent graph, enriched jobs, fast discovery, sentinels |
| Level 4: Operate | Agents, automations, cases, custom apps on the same substrate |
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.
Connected tools and programmatic access
Field service runs across more than one system. VH3 AI treats third-party tools as extensions of the same brain, not another silo.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:| Category | Examples | What flows into the layer |
|---|---|---|
| Field management | BigChange (live), others on roadmap | Jobs, engineers, customers, worksheets |
| Communication | Gmail, Outlook, Slack, Teams, WhatsApp | Threads, alerts, context for briefings |
| Scheduling | Google Calendar | Per-user availability and planning context |
| CRM / finance | Pipedrive, Zoho, Xero, Stripe, Salesforce, HubSpot | Commercial context alongside operational history |
| Storage / docs | Drive, OneDrive, Dropbox, PandaDoc | Documents linked to accounts and work |
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
| Application | Discovery / data | Synthesis / action |
|---|---|---|
| Dispatch assist panel | search/outcomes, autocomplete | Optional Connie summary |
| Customer 360 internal app | Jobs feed, customer summary by contact | Reports, investigate |
| Slack ops bot | sentinels/run | Connie with citations (observability) |
| Partner portal | Scoped search by contact_id | Branded report export |
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:| Concept | Role |
|---|---|
| Sentinels | Continuous pattern detection on the graph (no LLM at detection) |
| Discovery | Fast precedent, entity, and knowledge-section lookup |
| Connie / investigate | Cited synthesis and diagnostic narrative |
| Cases | Multi-step operational work (escalation, complaint, follow-up) with status and participants |
| Teams | Scoped groups for who owns which customers or regions |
- 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
Without a prepared layer, every agent session must re-parse messy worksheets, guess which account record is meant, and re-derive relationships that should already exist. That is slow, expensive, and fragile. VH3 AI front-loads enrichment, multi-entity resolution, and graph linking 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 does not replace your field system or your IDE. It is the layer your agents and applications sit on.
Security and governance (builder-relevant)
Builders should assume:- Tenant isolation on every call (
company_id+ validatedapi_key). - Dedicated infrastructure per customer (no shared operational data between tenants).
- 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
| You are | Start here |
|---|---|
| Ops lead, no code | Claude Projects, n8n node |
| Technical ops / PM with Cursor | AGENTS.md + Cursor rules |
| Engineer building a product | API overview + Operational discovery |
| Agent in Claude Desktop | MCP setup |
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.