AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Abp Ui

skill-burakdmir-abp-skills-abp-ui · by burakdmir

ABP Framework v10.4 UI: MVC/Razor Pages (AbpPageModel), Blazor (AbpComponentBase), Angular, React (--modern), theming (LeptonX), menu contributor, dynamic proxy. Use when developing frontend, UI, pages, or components in ABP.

No reviews yet
0 installs
36 views
0.0% view→install

Install

$ agentstack add skill-burakdmir-abp-skills-abp-ui

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-burakdmir-abp-skills-abp-ui)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Abp Ui? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

ABP Framework — UI & Frontend

ABP Framework v10.4 UI framework integrations. MVC, Blazor, Angular, React, theming.

Trigger

  • "ABP UI"
  • "ABP MVC"
  • "ABP Blazor"
  • "ABP Angular"
  • "ABP React"
  • "ABP theme"

UI Frameworks

| Framework | Type | Note | |---|---|---| | MVC/Razor Pages | Server-side | Default | | Blazor Web App | Server-side (.NET 10) | Modern Blazor | | Blazor WASM | Client-side | SPA | | Angular | Client-side | TypeScript | | React | Client-side | Modern template |

MVC Controller

[Area("App")]
[Route("api/app/book")]
public class BookController : AbpController
{
    private readonly IBookAppService _bookAppService;
    public BookController(IBookAppService bookAppService) => _bookAppService = bookAppService;
    
    [HttpGet]
    public Task> GetListAsync(PagedAndSortedResultRequestDto input) =>
        _bookAppService.GetListAsync(input);
}

Razor Page

public class IndexModel : AbpPageModel
{
    public List Books { get; set; }
    public IndexModel(IBookAppService bookAppService) => _bookAppService = bookAppService;
    
    public async Task OnGetAsync()
    {
        var result = await _bookAppService.GetListAsync(new());
        Books = result.Items;
    }
}

Blazor Component

@page "/books"
@inject IBookAppService BookAppService

@if (books == null) { Loading... }
else {
    @foreach (var book in books.Items)
    {
        @book.Name - @book.Price
    }
}

@code {
    private PagedResultDto books;
    protected override async Task OnInitializedAsync() =>
        books = await BookAppService.GetListAsync(new());
}

React (Modern)

abp new Acme.BookStore --template app --modern
abp new Acme.BookStore --modern --shadcn-theme blue

Theme: slate, pink, blue, turquoise, orange, purple

Theming

abp new Acme.BookStore --theme leptonx-lite
abp new Acme.BookStore --theme basic

Permission

public static class BookStorePermissions
{
    public const string GroupName = "BookStore";
    public const string Books = GroupName + ".Books";
    public const string BooksCreate = Books + ".Create";
}

Best Practices

  1. MVC/Razor Pages as the default choice
  2. Use Blazor Web App (.NET 10)
  3. Use the --modern flag for React
  4. Define permissions in a constant class

Related

[API](../abp-api/SKILL.md) · [Authorization](../abp-authorization/SKILL.md) · [Localization](../abp-localization/SKILL.md) · [Framework](../abp-framework/SKILL.md) · Docs: https://abp.io/docs/latest/framework/ui

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.