Atlassian’s Forge framework now supports AI integration to automate content summarization and thematic page organization in Confluence Cloud. An example app walks developers through practical implementation steps using OpenAI's API.
- AI app generates Confluence page summaries via OpenAI
- Thematic indexing groups pages for easier navigation
- Open-source app available with setup guidance
What happened
Atlassian published a detailed guide and an open-source example app demonstrating how to build an AI-powered application using their Forge development framework. The app connects Confluence Cloud content with OpenAI’s chat completions API to create page summaries and thematic indexes within a Confluence space.
The example app fetches page content using the Confluence REST API, sends it to OpenAI for summarization, and inserts the summary back into the page. It also analyzes page titles to group links by themes, helping users find related content faster. The code is written in Typescript and assumes users have a working Forge environment.
Why it matters
Confluence is widely used for content creation and collaboration but lacks automated content organization and easy summarization features. Incorporating AI reduces manual effort and improves user engagement by giving quick overviews and better thematic navigation.
Data privacy considerations are essential since user-generated content is sent to OpenAI’s API, which retains data for 30 days but excludes data retention for model training. The example app highlights the importance of understanding the implications of egressing content outside the Confluence environment.
What to watch next
Developers interested in AI app development with Forge should explore the GitHub repository hosting the example app, follow the setup instructions including environment variable configuration for OpenAI API keys, and test extending functionality based on their needs.
As Forge evolves, further enhancements to AI data privacy, caching mechanisms, and handling long-running AI requests will be critical areas to improve. Users should also monitor Atlassian’s updates for expanded AI feature support and compliance guidance.