admin-workflows

Automate secure admin CRUD operations in Next.js 16 apps.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Admin workflows in Next.js systems require robust security, tenant isolation, and auditable changes to scale enterprise operations.

Core Features & Use Cases

  • Standardized admin API patterns (adminRead/adminMutation)
  • Tenant-scoped data access and RBAC, CSRF protection, and audit logging
  • Form handling, multi-step workflows, and UI gating for dangerous operations
  • Use Case: Build admin portals with secure CRUD APIs and compliant logging.

Quick Start

Create a basic admin CRUD workflow by implementing a secure GET/POST API using adminRead/adminMutation, wiring it to an admin page and a simple 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 implement secure admin CRUD operations in Next.js?▼

Secure admin CRUD operations in Next.js use standardized adminRead and adminMutation patterns to enforce server-side RBAC, CSRF protection, and structured audit logging automatically.

What is tenant isolation and how does it secure admin portal data access?▼

Tenant isolation secures admin portal data access by applying a tenantWhere filter to database queries, ensuring multi-tenant applications strictly scope data retrieval and prevent cross-tenant data leakage.

How do I add RBAC and audit logging to a Next.js Prisma application?▼

Add RBAC and audit logging to a Next.js Prisma application by wrapping server-side API routes in adminMutation patterns, which validate role permissions and record structured audit logs for enterprise compliance.

Does this admin workflow approach support multi-step form handling and UI gating?▼

Yes, this admin workflow approach supports multi-step form handling and UI gating, specifically providing confirmation gates for dangerous operations while validating inputs with Zod schemas on the server.

Can I use Zod validation and CSRF protection for enterprise admin APIs in Next.js 16?▼

Yes, you can use Zod validation and CSRF protection for enterprise admin APIs in Next.js 16 by applying the adminRead and adminMutation security patterns to standardize secure server-side enforcement.