Agentic Development Workflow
This category covers the AI-driven development pipeline built on top of Claude Code and the devops-plugin plugin. It documents the agent roster, skill catalogue, workflow conventions, and the end-to-end lifecycle from a YouTrack issue to a merged pull request.
What this category covers
- The agent pipeline architecture and how agents communicate via YouTrack and Gitea
- The full agent roster: every agent's role, inputs, and outputs
- The skill catalogue: atomic operations each agent can invoke
- Key workflow conventions: branch naming, PR label flow, issue routing, and commit style
The agent pipeline at a glance
flowchart TD
%% AI Development Pipeline overview
User([User / Planner])
FD[feature-designer]
TL[tech-leader]
IC[issue-creater]
D[dispatcher]
PL[pipeline]
IR[issue-resolver]
PRv[pr-reviewer]
PRr[pr-resolver]
YT[(YouTrack)]
GT[(Gitea)]
User -->|brief| FD
FD -->|module epics| TL
TL -->|lane sub-issues| IC
IC -->|creates issues| YT
User -->|run issues| D
D -->|spawns| PL
PL -->|calls| IR
IR -->|opens PR| GT
PL -->|calls| PRv
PRv -->|approves or requests changes| GT
PRv -->|merges| GT
PL -->|calls if changes requested| PRr
PRr -->|fixes and re-submits| GT
GT -->|Stage=Done| YT