SYSTEM Cited by 1 source
Rovo Dev¶
Rovo Dev is Atlassian's AI development agent — a coding-agent surface that integrates directly with Atlassian's developer products (Bitbucket, Bitbucket Pipelines, Jira). It is the agent that "built Fireworks in four weeks, entirely by LLMs" per the source post.
(Source: sources/2026-04-24-atlassian-rovo-dev-driven-development)
What it does¶
Rovo Dev is used in the canonical agentic coding loop shape: an agent that writes, tests, deploys, and iterates on code in a real environment. The source post emphasises two distinguishing properties:
- Product-integrated end-to-end SDLC coverage. "It needs to be involved in all parts of the SDLC, not just code generation. [...] Raising PRs, spawning independent agents for self-review, addressing feedback, reading pipeline output, updating tickets."
- Bitbucket + Pipelines built in. "The all-in-one access to Atlassian products is genuinely great. Having Bitbucket and Pipelines integration in the agent has been a game changer. The agent can raise PRs, read diffs, and monitor builds without leaving the conversation. It makes it a seriously compelling daily driver."
Features surfaced in the source¶
- Skills — "Skills are useful for specific domains or common actions within your repo. Internally we've built lots of skills! Skills for PRs, using CLI, specific domains like Raft, gRPC." Skills are the Rovo Dev unit of codified workflow knowledge. See concepts/agent-orchestration-skill.
- Meta-workflow / orchestration skills — a broader skill type that "gives the agent a set of 'golden path' loops for how to work on [a codebase] end-to-end." Not a single-tool binding; a multi-step runbook. Canonicalised as patterns/agent-orchestration-meta-skill.
- Sub-agents / personas — "for review, have an adversarial persona subagent that spins up and reviews what the main agent has written." See concepts/adversarial-review-persona.
- Prompt shortcuts — e.g.
!review-prfires an independent sub-agent with an adversarial review prompt. - PR-bot comments — the source post mentions "comments on PR from Rovo Dev PR bot" — Rovo Dev has a first-party reviewer role on the PR itself, not just the in-agent conversation.
Typical workflow¶
Per the source post, the developer's day-to-day pattern:
- Three parallel git workspaces, one agent per workspace on its own branch (patterns/three-workspace-parallel-agent-workflow).
- Each agent writes e2e tests, deploys to a dev shard, iterates on failures (patterns/ai-writes-own-e2e-tests).
- Before human review, the developer runs
!review-prto spin up an adversarial sub-agent (patterns/adversarial-review-subagent). - The agent reads Bitbucket Pipelines output and addresses issues before human review is requested (patterns/ci-as-agent-quality-gate).
- The human focuses on "architecture, design intent, risk" rather than detail.
Seen in¶
- sources/2026-04-24-atlassian-rovo-dev-driven-development — the production agent used to build Fireworks; full SDLC coverage with Bitbucket + Pipelines integration.
Related¶
- systems/atlassian-fireworks — the platform Rovo Dev built
- systems/bitbucket-pipelines — the CI surface Rovo Dev reads
- concepts/agentic-development-loop
- concepts/agent-orchestration-skill
- concepts/adversarial-review-persona
- companies/atlassian