Service Guides
Bridge Conversations to the Agent Team (Builders)
Bridge Microsoft Teams to the Agent Team
Stand up the msbridge service so a Teams mention dispatches an agent session and the verdict posts back to the same thread.
Dispatch an Agent Session From a Teams Mention
Trace what happens between a bot mention in Teams and the verdict reply posted back to the same thread.
Bridge GitHub Discussions to the Agent Team
Stand up the ghbridge service so a new discussion or comment dispatches an agent session and the lead's replies post back to the same thread.
Resume a Recessed RFC When a Trigger Fires
Trace the suspend/resume contract. A `recessed` verdict persists a trigger, accumulates replies, and re-dispatches with `resume_context` when the trigger fires.
Ground Agents in Context (Builders)
Traverse Knowledge and Search Semantically
Query relationships and search content through shared graph and vector gRPC services, with no per-product stores.
Answer Relationship Questions from a Product
Answer relationship questions from any product. Send triple patterns to the shared graph service and write no join logic.
Search for Related Content from a Product
Find related content by meaning from any product. The shared vector service manages the embeddings, so your product stores none.
Embed Text Using a Shared Service
Fetch embeddings from one shared gRPC service that runs Text Embeddings Inference, and do not manage inference infrastructure.
Embed a Batch of Strings in One Call
Send a batch of input strings to the embedding service and read back vectors in order with one gRPC call and no per-input HTTP overhead.
Integrate with the Engineering Standard (Builders)
Query the Engineering Standard from Any Product
Products access derived roles and profiles through the shared pathway gRPC service and do not embed derivation logic.
Fetch a Derived Role or Agent Profile
Get a derived role or agent profile and do not reimplement the derivation. Pass coordinates to the pathway service and receive Turtle RDF.
Enable Agents on Every Surface (Builders)
Expose Backend Services as Agent Tools
Every gRPC endpoint becomes an agent tool from a single configuration file, with no per-endpoint integration code.
Add a Service to the MCP Surface
A new gRPC service becomes agent-accessible with one registration and no integration code.
Collect Telemetry from Every Product (Builders)
Collect Spans from Any Product
Products emit spans and do not manage storage. One shared span gRPC service collects them.
Send Spans from a Product
Emit spans and query them immediately, with no storage infrastructure to manage.
For library-level utilities, see Library Guides. For product workflows, see Product Guides.