by ahaodev
An Enterprise-Grade Full-Stack RBAC Permission Management System Built with Go + React
# Add to your Claude Code skills
git clone https://github.com/ahaodev/shadminLast scanned: 7/26/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-07-26T06:35:30.392Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}shadmin is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by ahaodev. An Enterprise-Grade Full-Stack RBAC Permission Management System Built with Go + React. It has 164 GitHub stars.
Yes. shadmin passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/ahaodev/shadmin" and add it to your Claude Code skills directory (see the Installation section above).
shadmin is primarily written in TypeScript. It is open-source under ahaodev on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh shadmin against similar tools.
No comments yet. Be the first to share your thoughts!
An Enterprise-Grade Full-Stack RBAC Permission Management System Built with Go + React
简体中文 · English

Gin · Ent ORM · Casbin · Shadcn UI · TanStack Router · Tailwind CSS
# Clone the repository
git clone https://github.com/ahaodev/shadmin.git
cd shadmin
# Install & build frontend
cd frontend && pnpm install && pnpm build
# Start backend (from project root)
# Generates Ent code, embeds frontend/dist/, listens on :55667
# .env auto‑generated on first run
cd ..
go generate ./ent
go run .
Default login:
admin/123
Authorization: Bearer <token>(userID, path, method) on protected routesPermissionButton, PermissionGuard)/api/v1/resources, auto‑adapted to user permissionsshadmin/
├── api/ # Controllers & routes (Gin)
├── bootstarp/ # App bootstrap, DB, Casbin, seed
├── domain/ # Entities, DTOs, interfaces
├── ent/schema/ # Ent ORM schemas
├── repository/ # Data access layer
├── usecase/ # Business logic
├── internal/ # Internal utilities
├── pkg/ # Shared packages
├── frontend/ # React frontend (Vite + shadcn/ui)
│ └── src/
│ ├── routes/ # TanStack file‑based routing
│ ├── features/ # Feature modules
│ ├── services/ # API wrappers (Axios)
│ └── stores/ # Zustand state management
├── docs/ # Documentation & images
└── main.go # Entry point