A specialized Claude Code agent for ABP.IO framework and Blazor Web App architectural analysis and implementation guidance.
This agent provides expert guidance for building ABP.IO solutions with Blazor Web App — including feature design, refactoring, domain services, application services, repositories, DTOs, authorization, localization, multi-tenancy, and database schema design. It follows Clean Architecture, Clean Code, and SOLID principles.
# 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-architect/main/AGENT.md" `
-OutFile "$env:USERPROFILE\.claude\agents\abp-blazor-architect.md"
Write-Host "Agent abp-blazor-architect 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-architect/main/AGENT.md' -OutFile '%USERPROFILE%\.claude\agents\abp-blazor-architect.md'" && echo Agent installed!Option 1: Automated install script
curl -fsSL https://raw.githubusercontent.com/Stebu21/abp-blazor-architect/main/install.sh | bashOption 2: Manual installation
mkdir -p ~/.claude/agents
curl -o ~/.claude/agents/abp-blazor-architect.md \
https://raw.githubusercontent.com/Stebu21/abp-blazor-architect/main/AGENT.md
echo "Agent abp-blazor-architect installed!"irm raw.githubusercontent.com/Stebu21/abp-blazor-architect/main/install.ps1 | iexInside Claude Code, simply use:
use the abp-blazor-architect agent to...
Then describe your ABP.IO architecture question or task.
Remove-Item -Force "$env:USERPROFILE\.claude\agents\abp-blazor-architect.md"
Write-Host "Agent abp-blazor-architect uninstalled!"del "%USERPROFILE%\.claude\agents\abp-blazor-architect.md"
echo Agent abp-blazor-architect uninstalled!rm ~/.claude/agents/abp-blazor-architect.md
echo "Agent abp-blazor-architect uninstalled!"irm raw.githubusercontent.com/Stebu21/abp-blazor-architect/main/uninstall.ps1 | iex- Claude Code
- ABP.IO framework knowledge (optional — the agent guides you)
MIT