Build an AI-Powered Developer Portal with Backstage and .NET
The article outlines a guide for building an AI-powered Internal Developer Portal (IDP) using Backstage and .NET to solve the problem of outdated documentation. A .NET CLI tool scans source code and uses local AI via Ollama to generate service summaries without sending data over the internet. The solution automates catalog updates, ensuring accurate, real-time visibility into an organization's software landscape.
- ▪The guide targets platform engineers and .NET developers aiming to automate developer portal content.
- ▪The system uses Ollama for local AI inference, ensuring source code remains on-premises.
- ▪A .NET CLI tool extracts metadata and generates Backstage-compatible YAML files.
- ▪Backstage serves as the UI layer for browsing services, APIs, and ownership details.
- ▪The complete demo code is available in a public GitHub repository.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 1369409) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Borys Generalov Posted on May 1 • Originally published at blog.bgener.nl Build an AI-Powered Developer Portal with Backstage and .NET #ai #devex #idp #dotnet Build an AI-Powered Developer Portal with Backstage and .NET Want to apply AI, not just read about it? Most tutorials stop at a "Hello World" chatbot. We are going to build something that actually solves a common engineering headache: stale documentation.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV Community.