Enhance your Azure DevOps Library experience with hierarchical variable group organization and improved navigation.
- Automatically groups Variable Groups by name using
-delimiter - Example:
myapp-api-prod,myapp-api-test→ grouped undermyapp>api - Collapsible/Expandable folders for better organization
- Left Click: Navigate to variable group details
- Right Click or Ctrl+Click: Open in new tab
- Middle Click: Open in new tab
- Maintains native Azure DevOps look and feel
Yes, revolutionary features like "open in new tab" - because apparently Microsoft forgot to implement this in 2025. 🎉
- Copy Variable Group Names: Hover over any variable group and click the copy icon
- Dual View Modes: Switch between hierarchical tree view and flat list view
- Search and Filter: Easily find variable groups across your organization
- Real-time Updates: Displays modification dates and user information
After installing the extension from the Visual Studio Marketplace, simply navigate to Pipelines → Library in your Azure DevOps project. The enhanced library view will automatically replace the default one.
The extension:
- Loads all Variable Groups via Azure DevOps REST API
- Parses names by
-character to build hierarchy - Renders an interactive tree view with expand/collapse
- Enables multiple click actions for flexible navigation
- Provides quick copy functionality for variable group names
Your Variable Groups:
frontend-web-prodfrontend-web-devfrontend-api-prodbackend-services-prodbackend-database-prod
Organized as:
📁 frontend
📁 web
📦 prod (5 variables)
📦 dev (3 variables)
📁 api
📦 prod (8 variables)
📁 backend
📁 services
📦 prod (12 variables)
📁 database
📦 prod (6 variables)
- Clone the repository:
git clone https://github.com/Milvasoft/azuredevops-library-enhancer.git
cd azuredevops-library-enhancer- Install dependencies:
npm install- Development mode:
npm run dev- Build for production:
npm run build- Create extension package:
npm run package├── src/
│ ├── components/ # React components
│ │ ├── LibraryHub.tsx # Main component (production)
│ │ ├── LibraryHubTest.tsx # Test component
│ │ └── HierarchicalTree.tsx # Tree view component
│ ├── services/ # Business logic
│ │ └── VariableGroupService.ts
│ ├── styles/ # CSS files
│ ├── types/ # TypeScript types
│ └── library-hub.tsx # Entry point
├── dist/ # Build output
├── images/ # Extension assets
└── vss-extension.json # Extension manifest
- Build and package the extension
- Upload to your test marketplace publisher
- Install to a test Azure DevOps organization
- Navigate to Library to see changes
For detailed development guidelines, see DEVELOPER.md
Update vss-extension.json to customize:
- Extension name and description
- Publisher ID
- Version number
- Permissions and scopes
Extension not appearing?
- Verify it's enabled in your organization settings
- Clear browser cache and reload
- Check that you have the correct permissions
Groups not forming correctly?
- Ensure variable group names use
-as delimiter - Check browser console for errors
- Verify API permissions
Copy button not working?
- Check browser clipboard permissions
- Try using keyboard shortcuts as fallback
We welcome contributions! Here's how:
- Fork the repository
- Create feature branch (
git checkout -b feature/amazing-feature) - Commit changes (
git commit -m 'Add amazing feature') - Push to branch (
git push origin feature/amazing-feature) - Open Pull Request
Please ensure:
- Code follows existing style
- All tests pass
- Documentation is updated
MIT License - feel free to use and modify.
- Issues: GitHub Issues
- Documentation: Developer Guide
- Email: info@milvasoft.com
Your data is safe. This is a critical concern for variable groups that often contain sensitive information like API keys, connection strings, and secrets.
- ✅ 100% Open Source: All code is publicly available on GitHub for audit
- ✅ No External Servers: Extension runs entirely in your browser, no backend services
- ✅ No Data Transmission: Zero external API calls or data uploads
- ✅ Read-Only Access: Uses
vso.variablegroups_readscope - cannot modify or delete anything - ✅ No Analytics or Tracking: No telemetry, no usage statistics, no cookies
- ✅ Local Processing Only: All grouping and rendering happens client-side in your browser
- ✅ Microsoft Security Model: Inherits Azure DevOps' security and permission system
- Review the source code yourself
- Check the extension's permissions in Azure DevOps organization settings
- Use browser DevTools to verify no external network requests
- Build and package from source if you prefer
- Variable group values are never accessed - only names, descriptions, and metadata
- The extension only displays what you already have permission to see
- No clipboard or localStorage usage for sensitive data
- Works within Azure DevOps' existing security context
Bottom line: If you can see it in the standard Library view, you can trust it in the enhanced view. If you don't trust it, audit the code.
- Azure DevOps Services: ✅ Fully supported
- Azure DevOps Server 2019+: ✅ Supported
- Browsers: Chrome, Edge, Firefox, Safari
Made with ❤️ by Milvasoft
