Skip to content

Stebu21/abp-blazor-architect

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ABP Blazor Architect

A specialized Claude Code agent for ABP.IO framework and Blazor Web App architectural analysis and implementation guidance.

What it does

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.

Installation

Windows (PowerShell)

# 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!"

Windows (Command Prompt)

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!

Linux / macOS (Bash)

Option 1: Automated install script

curl -fsSL https://raw.githubusercontent.com/Stebu21/abp-blazor-architect/main/install.sh | bash

Option 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!"

PowerShell One-Liner (Windows)

irm raw.githubusercontent.com/Stebu21/abp-blazor-architect/main/install.ps1 | iex

Usage

Inside Claude Code, simply use:

use the abp-blazor-architect agent to...

Then describe your ABP.IO architecture question or task.

Uninstallation

Windows (PowerShell)

Remove-Item -Force "$env:USERPROFILE\.claude\agents\abp-blazor-architect.md"
Write-Host "Agent abp-blazor-architect uninstalled!"

Windows (Command Prompt)

del "%USERPROFILE%\.claude\agents\abp-blazor-architect.md"
echo Agent abp-blazor-architect uninstalled!

Linux / macOS (Bash)

rm ~/.claude/agents/abp-blazor-architect.md
echo "Agent abp-blazor-architect uninstalled!"

PowerShell One-Liner (Windows)

irm raw.githubusercontent.com/Stebu21/abp-blazor-architect/main/uninstall.ps1 | iex

Requirements

  • Claude Code
  • ABP.IO framework knowledge (optional — the agent guides you)

License

MIT

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors