Install
$ agentstack add skill-burakdmir-abp-skills-abp-ui ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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
- MVC/Razor Pages as the default choice
- Use Blazor Web App (.NET 10)
- Use the
--modernflag for React - 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.
- Author: burakdmir
- Source: burakdmir/abp-skills
- License: MIT
- Homepage: https://abp.io/docs/latest
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.