Skip to Content
ONE T.E.E.M. GmbH Website
  • Home
  • Services
  • Content Hub
    • TEEM360 Newsletter
    • Blogs
    • Webinars
  • About us
  • Contact us
  • 0
  • 0
  • Let's talk
ONE T.E.E.M. GmbH Website
  • 0
  • 0
    • Home
    • Services
    • Content Hub
      • TEEM360 Newsletter
      • Blogs
      • Webinars
    • About us
    • Contact us
  • Let's talk

Atlassian is rebuilding Forge around AI and the data never leaves the platform

June 11, 2026 by
TEEM

We went through the latest Forge releases as a team. This is what's worth your time.



Most "we added AI" announcements are noise. You squint, and underneath the launch copy it's the same chatbot bolted onto a sidebar, quietly shipping your data to someone else's model. This stretch of Forge releases is different, and the reason it matters isn't the AI itself. Everyone has good models now. The interesting part is where the work happens and where the data goes: agents that live inside Jira's  permissions and audit trail, model calls that never leave Atlassian's security boundary, and tooling that lets you build all of it without standing up your own infrastructure. That's the difference between a feature you can demo and one your security team will actually approve. We went through the releases as a team and pulled out what's worth your time. Here's what we found.


In short: 

    • Assign a Jira work item to an AI agent like you'd assign a teammate. It works inside your existing permissions and audit trail. (GA:Generally available)

    • Rovo MCP Gallery: Agents from Box, Canva, Figma, GitHub and more can now act inside your workflows over MCP, not just chat.

    • Forge LLMs API → Preview: Call Claude models from your app with no external keys and no data leaving Atlassian.

    • Forge MCP Server → GA: Point your coding agent at authoritative Forge docs so it writes real Forge code instead of guessing.

    • Forge custom fields: Now available as columns in Jira's new List View.

    • Teamwork Graph: Stitches Jira, Confluence and third-party tools into one queryable graph, now open to agents.

    • Assign a work item to an AI agent and get a pull request back


This is the one that got the most reaction from us. Announced at Team '26 and now generally available, you can assign an AI agent to a Jira work item the same way you'd assign it to a teammate, straight from the Assignee field. The agents Atlassian highlights include its own Rovo Dev, the GitHub Copilot coding agent, and third-party tools like Cursor.

The flow is simple. The agent reads the ticket, pulls context from the linked work, writes the code, comments as it goes and opens a pull request for review. In the background, at any hour, without someone babysitting it.

Here's the part that actually matters and the reason it leads this post. The agent works inside Jira's existing structures. It respects your permissions, your workflows, your approval flows and its updates land in the work-item history like anyone else's. This isn't an autonomous bot operating in a side tool with its own credentials. It's a governed contributor on the board, with a full audit trail. That's the design choice that makes "let AI touch the backlog" something an enterprise can say yes to.

Why it matters: a chunk of backlog work is well-defined but boring, the kind of ticket that sits untouched for weeks. Handing that to an agent and getting a reviewable PR back changes the math on what's worth doing. The agent feature is the one we're most interested in putting through its paces ourselves.


The Rovo MCP Gallery: agents that act, not just answer


Assigning an agent to a ticket is half the story. The other half is what those agents can reach. With the Rovo MCP Gallery, Rovo agents can now connect to third-party apps over the Model Context Protocol, with no custom code and no integration project. Launch partners include Amplitude, Box, Canva, Figma, Gamma, GitHub, Intercom, New Relic, and Replit, with more coming.

The shift here is from "answer questions" to "take action." Once an admin enables an MCP server from the gallery in Admin Hub, agents can pull live data  the latest chart, dashboard, or file instead of a stale export  and act on it: create a task, update a record, draft an asset. A marketer can ask an agent to take a launch brief from a Confluence page and produce a Canva deck; a developer can pull live GitHub context into a Jira workflow. All of it runs through Jira's existing permissions and guardrails.

It's worth noting how Atlassian is positioning this: governance over sprawl. By routing third-party agents through one permission-aware layer instead of a dozen disconnected copilots, you keep agents accountable. Atlassian's own usage data backs the "action, not chat" framing  a meaningful share of agentic MCP operations are writes, not reads, and the overwhelming majority of usage comes from paid and enterprise tiers.

(Related: third-party agents have also reached Confluence in open bet you can @mention agents from tools like Lovable, Replit, Databricks and Gamma directly on a page and have them act on its context.)



The Forge LLMs API is now in Preview: AI in your app, data stays inside Atlassian


If the agent features are the headline, this is the one that changes how you build. The Forge LLMs API graduated from Early Access into Preview, through a new llm module and can now be enabled in production.

It gives you Atlassian-hosted inference: Claude models (Haiku, Sonnet, Opus) called directly from a Forge app. No external API keys. No third-party provider. And the line worth tattooing on the release notes: no data leaving the Atlassian platform. Because the calls run inside Atlassian's security and compliance boundary, apps that use it can carry the Runs on Atlassian badge.

That's the whole pitch in one sentence: AI features without the data-egress conversation that normally stalls them in review.

What caught our eye is less the AI and more the platform mechanics around it, because they tell you Atlassian is treating this as production infrastructure, not a toy:

It's billable, with no free tier. Every token is metered in credits and counts toward your Forge monthly bill. Usage has been billed since June 1, 2026.

Adding the llm module triggers a major version bump, which means admin approval on install or upgrade. Plan it into a release rather than sneaking it in.

Requests go through the same moderation as Rovo and Atlassian's first-party AI, with high-risk prompts blocked per the Acceptable Use Policy.

Governed, billable, and admin-visible by design. For anything you ship to customers, that's the right trade-off.

The manifest side is small. Declare the module:

modules:
llm:
- key: my-llm
name: App LLM

And a call looks roughly like this (check the @forge/llm reference for exact signatures, since it's still a Preview API):

import { LLM } from '@forge/llm';

const response = await LLM.chat.completions.create({
model: 'claude',
messages: [
{ role: 'user', content: 'Summarize this Jira issue in one sentence' }
],
});



The Forge MCP Server is GA:  

build with AI


Building on Forge means living in the docs: which module, which manifest shape, which scopes. The Forge MCP Server (now generally available) hands all of that to your coding agent directly. It's a remote Model Context Protocol server that exposes authoritative, up-to-date Forge and Atlassian Cloud documentation (how-to guides, module catalogs, manifest references, and searchable docs) to tools like Cursor, VS Code, and the Rovo Dev CLI.

The practical effect: your agent stops guessing. Prompt it with something like "Create a Confluence macro that shows a pie chart of Jira issues by status, using the Forge MCP tools so it's based on the latest docs," and the agent plans the task against real guides, looks up the right modules and scopes, and produces working Forge code instead of a plausible-looking hallucination. It only serves public documentation, so there's no auth to set up.

If you want the full kit, Atlassian also ships a Forge AI plugin that bundles the MCP server with skills for scaffolding, pre-deploy review, and debugging. For a team standardizing on AI-assisted development, this is the difference between an agent that knows Forge and one that pattern-matches from stale training data.



A small but useful win: custom fields in Jira's List View


Not everything in a release is a headline. Forge custom fields now render as columns in Jira's new List View. If you define a formatter expression in your manifest, the column shows the formatted value instead of the raw stored one:


modules:
jira:customField:
- key: progress-field
name: Progress
description: Shows task progress
type: number
formatter:
expression: "`${'='.repeat(value / 10).padEnd(10, '=')} (${value}%)`"


That turns a plain number into a little progress bar with a percentage, so scanning across issues gets much easier on the eyes. Without a formatter you just get the raw value, so defining one is the whole point. Two limits to know: it's read-only (open the issue to edit a value) and text-only (no Custom UI or UI Kit rendering in the column). The same behavior applies to both jira:customField and jira:customFieldType.



Where it's all heading: the Teamwork Graph


This is the architectural one and it's worth understanding even if you don't build on it tomorrow, because it's the layer the whole AI story quietly depends on. The Teamwork Graph is Atlassian's unified, graph-structured data layer. Jira issues, Confluence pages, and third-party objects used to live on isolated islands; the graph stitches them into one model, now reportedly past 150 billion connections.



If you've touched a graph database, the schema feels familiar. It rests on two primitives: objects, the nodes (a Jira issue, a Confluence page, a user, a project), each with a type and a property schema; and relationships, the edges between them like a page that supports an issue or a message that belongs to a project. Putting nodes and edges in one runtime lets you query across a project's whole lifecycle, the kind of query that would otherwise mean data pipelines or a pile of federated API calls.
Forge is the entry point and it runs in two directions:

Writing happens through connectors. You sync data from external systems (GitHub, Slack, Salesforce, Google Drive), and once ingested, those objects behave like native nodes: queryable, searchable, and exposed to surfaces like Search and Rovo Chat. Connectors are generally available.

Reading happens through the API. Instead of a dozen app-specific endpoints, you hit one GraphQL endpoint and traverse across the ecosystem. The pattern pairs a Cypher query (to walk the edges and find nodes) with a GraphQL wrapper (to pull back the fields you want).

What's new at Team '26 is that the graph is opening up to agents: a Teamwork Graph CLI with hundreds of commands, plus Teamwork Graph tools delivered through Rovo's MCP server, so coding agents and compliant assistants can query, and in some cases write back to, work and relationships across products through a single interface.

On the write side you declare a connector with the object types it owns:

modules:
graph:connector:
- key: gdrive-connector
name: Google Drive
objectTypes:
- atlassian:document


And a read starts from a node and follows an edge here, from a user to their teams:


import api from '@forge/api';

const cypher = `
MATCH (user:IdentityUser {ari: $id})-[:user_is_in_team]->(team:IdentityTeam)
RETURN collect(distinct team) as teams
`;

const res = await api.asUser().requestTeamworkGraph({
cypherQuery: cypher,
params: { id },
});

The obvious use case is onboarding. We've all spent week one hunting for the right repos, docs, and active boards. A Forge app can do that for you: take a user ID, find their team node, traverse to active Jira epics, pull the linked GitHub repos and surface the relevant Confluence docs. Atlassian is already dogfooding this exact pattern as a sample Rovo onboarding agent.

Our honest take: the graph tech itself isn't new, and plenty of platforms are building graphs to anchor their AI strategies. The real bet here is ecosystem scale and openness. The comparison people reach for is Microsoft Graph, which nailed the unified layer but keeps its gravity inside M365. Atlassian's bet is explicitly open: it wants your non-Atlassian tools in the graph too. And where enterprise search crawls everything so you can search your company, the Teamwork Graph leans on semantic relationships. Knowing that a PR closes an issue, which blocks an OKR, is high-fidelity context and that's what makes AI agents deterministic rather than just chatty.



Also worth knowing 


Two things that aren't new features but shape how you should plan:

Atlassian Connect is winding down. No new Connect apps in the Marketplace since September 2025, no updates to existing Connect apps after March 31, 2026, and full end of support in Q4 2026, after which Connect is "use at your own risk." The signal underneath the deadline is the real story: every new capability above  agents, the LLMs API, the Teamwork Graph is being built for Forge first. If you're still on Connect, this is the nudge to plan the move while there's runway. If you run a remote backend, Forge Remote can ease the transition without a full rewrite.

Forge Feature Flags let you ship code without releasing it to everyone, and without a redeploy. Wrap new code in a flag, keep it off by default, then enable it per user, site, environment, or rollout percentage from the Developer Console. It pairs neatly with the agent workflow above: let an agent's PR ship behind a flag and roll it out on your terms.



Where this leaves us


None of these on its own rewrites how you work. Together they point in one direction: AI moving into the actual workflow, the tooling to build it without leaving the platform, and a single graph of context underneath it all  with governance and data residency baked in rather than bolted on.

That's the throughline worth holding onto. In 2026 the model isn't your differentiator; everyone has great LLMs. Your context, and the boundary you keep it inside, is the moat. Permission-aware agents, audit trails, and model calls that never leave your platform are what turn "AI in the product" into something an enterprise will actually ship.

At ONETEEM, that's exactly what we build the Forge apps and connectors that put these capabilities to work without leaving your data, or your governance, behind.

in Atlassian Rovo and AI

Read Next
Unlock Deep Insights With Atlassian Rovo: How ONETEEM Can Help Your Team Move Faster and Smarter

Subscribe to our newsletter

Be the first to find out all the latest new, products and trends.

Thanks for registering!

Subscribe
Rovo
Explore
  • Home
  • About us
  • Blog
  • Career
Services
  • TEEMFORCE
  • TEEMLEARN
  • TEEMAPPS
  • TEEMDEV
  • TEEMDESK
Follow us
  • Facebook
  • Linkedin
  • TikTok
Get in touch
  • hello@oneteem.com
  • +498671 9287379
Legal
  • Legal Notice
  • Customer Agreement
  • Privacy Policy

Cookie Policy

ONETEEM Logo

Respecting your privacy is our priority.

Allow the use of cookies from this website on this browser?

We use cookies to provide improved experience on this website. You can learn more about our cookies and how we use them in our Cookie Policy.

Allow all cookiesOnly allow essential cookies