admin-workflows

Build secure admin workflows with RBAC, CSRF protection, and audit logging in Next.js 16 apps.

Updated Dec 26, 2025
One-click install
npx skills add https://github.com/ArtisanClarinets/crispy-fishstick --skill admin-workflows
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: admin-workflows
Source: https://github.com/ArtisanClarinets/crispy-fishstick/tree/main/.agent/skills/admin-workflows
Command: npx skills add https://github.com/ArtisanClarinets/crispy-fishstick --skill admin-workflows

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

The Skill enables teams to architect secure, scalable admin workflows for Next.js 16 + React 19 apps, reducing security gaps and operational toil in admin portals.

Core Features & Use Cases

  • Admin API patterns (adminRead/adminMutation) with RBAC and tenant isolation to protect data.
  • Form handling and validation using React Hook Form + Zod, with CSRF-aware client calls.
  • Multi-step forms, audit logging, and safe data exposure for enterprise admin tasks.
  • Use Case: Build an internal admin portal with user management, resource CRUD, and approval workflows.

Quick Start

Use the admin workflows skill to scaffold a basic admin portal with authenticated routes, RBAC checks, and audit logs. This will include creating an API route using adminRead/adminMutation, a simple admin page, and a reusable admin form component.

Frequently Asked Questions about admin-workflows

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build secure admin workflows in Next.js with RBAC and audit logging?

You can build secure admin workflows by applying adminRead and adminMutation API patterns that enforce server-side RBAC, tenant isolation, and integrated audit logging for CRUD operations in Next.js 16 and React 19 environments.

What is the best way to implement enterprise RBAC and tenant isolation for an internal admin portal?

Enterprise RBAC and tenant isolation are implemented via server-side adminRead and adminMutation patterns that restrict data access and mutations based on user roles, securing multi-tenant admin portals.

How do I add CSRF protection and Zod validation to admin forms in a React 19 application?

Admin forms in React 19 use React Hook Form with Zod for validation and CSRF-aware client calls to prevent cross-site request forgery, ensuring data integrity during server-side mutations.

Does this admin workflow approach support multi-step forms and approval workflows for internal tooling?

Yes, the admin workflow approach supports multi-step forms and approval workflows for internal tooling by combining React Hook Form, Zod validation, and integrated audit logging to manage complex enterprise admin tasks.

Can I use adminRead and adminMutation patterns in my existing Next.js 16 application?

Yes, you can use adminRead and adminMutation patterns in Next.js 16 applications to enforce server-side security, RBAC, and tenant isolation for admin portals without requiring external dependencies.