A specialized Claude Code agent for designing and implementing UX/UI components, pages, sections, and workflows for ABP.IO applications built with Blazor Web App.
This agent provides expert UX/UI design and implementation for ABP.IO Blazor solutions — including Razor components, forms with validation, data tables, modals, dashboards, permission-aware views, and any frontend feature following ABP.IO conventions and the project's design language.
# Create the agents directory
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.claude\agents" | Out-Null
# Download the agent
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/Stebu21/abp-blazor-ux-engineer/main/AGENT.md" `
-OutFile "$env:USERPROFILE\.claude\agents\abp-blazor-ux-engineer.md"
Write-Host "Agent abp-blazor-ux-engineer installed!"REM Create the agents directory
if not exist "%USERPROFILE%\.claude\agents" mkdir "%USERPROFILE%\.claude\agents"
REM Download the agent using PowerShell (one-liner)
powershell -Command "Invoke-WebRequest -Uri 'https://raw.githubusercontent.com/Stebu21/abp-blazor-ux-engineer/main/AGENT.md' -OutFile '%USERPROFILE%\.claude\agents\abp-blazor-ux-engineer.md'" && echo Agent installed!Option 1: Automated install script
curl -fsSL https://raw.githubusercontent.com/Stebu21/abp-blazor-ux-engineer/main/install.sh | bashOption 2: Manual installation
mkdir -p ~/.claude/agents
curl -o ~/.claude/agents/abp-blazor-ux-engineer.md \
https://raw.githubusercontent.com/Stebu21/abp-blazor-ux-engineer/main/AGENT.md
echo "Agent abp-blazor-ux-engineer installed!"irm raw.githubusercontent.com/Stebu21/abp-blazor-ux-engineer/main/install.ps1 | iexInside Claude Code, simply use:
use the abp-blazor-ux-engineer agent to...
Then describe your UX/UI task or feature request.
Remove-Item -Force "$env:USERPROFILE\.claude\agents\abp-blazor-ux-engineer.md"
Write-Host "Agent abp-blazor-ux-engineer uninstalled!"del "%USERPROFILE%\.claude\agents\abp-blazor-ux-engineer.md"
echo Agent abp-blazor-ux-engineer uninstalled!rm ~/.claude/agents/abp-blazor-ux-engineer.md
echo "Agent abp-blazor-ux-engineer uninstalled!"irm raw.githubusercontent.com/Stebu21/abp-blazor-ux-engineer/main/uninstall.ps1 | iex- Claude Code
- ABP.IO framework knowledge (optional — the agent guides you)
MIT