# DEB-125: Integrate with connected enterprise collaborative documentation applications

> **Jira:** [DEB-125](https://divami.atlassian.net/browse/DEB-125)  
> **Source Report:** [20260315.md](../../reports/jira/20260315.md)

- **Status:** Start
- **Assignee:** Unassigned
- **Priority:** Medium
- **Created:** 2026-01-20T16:53:49.500+0530
- **Updated:** 2026-02-09T15:06:28.401+0530

**Description:**

As a user I should be able to query for information, using natural language prompts, within the configured collaborative documentation applications (Eg. Notion, Google Docs, Confluence, etc.), and that the application should be able to fetch the relevant information from these sources and present it in  the response in natural language. Along with the response, it should also be able to provide a link to the source of information (Eg. title of the document)

**Architecture Diagram:**

```mermaid
sequenceDiagram
    participant User
    participant RT as RT Decision Agent
    participant DSA as Docs Agent
    participant DocAPI as Docs API<br/>(Notion/Confluence/GDocs)

    User->>RT: Query about documentation
    RT->>DSA: A2A: search_docs(query, user_token)
    DSA->>DocAPI: Search pages / docs by keyword
    DocAPI-->>DSA: Documents + metadata
    DSA->>DSA: Chunk & rank by relevance
    DSA-->>RT: Relevant excerpts + doc title links
    RT-->>User: Answer with source document links
```
