admin-system

Automate admin photo review, tag management, and moderation in Laravel.

132|42|Updated Aug 19, 2020
One-click install
npx skills add https://github.com/OpenLitterMap/openlittermap-web --skill admin-system
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: admin-system
Source: https://github.com/OpenLitterMap/openlittermap-web/tree/main/.ai/skills/admin-system
Command: npx skills add https://github.com/OpenLitterMap/openlittermap-web --skill admin-system

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Admin photo review, tag editing, and safe deletion are centralized to ensure consistent quality control between user submissions and public data.

Core Features & Use Cases

  • Backend controllers and middleware to enforce admin roles
  • Queue-based verification workflow for photos
  • Tag management and transactional tag updates with XP rewards
  • Metrics integration and safe delete flow (soft deletes)

Quick Start

Set up the admin routes, start the Laravel app, and begin reviewing, tagging, and moderating submitted photos.

Frequently Asked Questions about admin-system

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

FAQPage Schema
How do I automate user-submitted photo review and moderation workflows?

Admin photo review workflows use a queue-based verification system with backend controllers to enforce role-based access, allowing admins to approve, tag, or delete submitted content centrally. This ensures consistent quality control between user submissions and public data.

How does transactional tag management work with XP rewards?

Transactional tag management integrates XP rewards by applying database-level transactional updates when admins edit tags on submitted photos. This ensures tag edits and reward distributions occur atomically, preventing data inconsistency during the moderation process.

Can I enforce superadmin and admin role-based access for content moderation?

Yes, you can enforce admin and superadmin role-based access using backend middleware controllers. This restricts sensitive content moderation actions, such as safe deletion and tag management, to authorized administrative roles within the platform.

What is the best way to safely delete inappropriate user-submitted photos?

The best way to safely delete inappropriate user-submitted photos is through a soft delete flow within the admin moderation queue. This removes content from public visibility while retaining underlying data for audit purposes and admin metrics integration.

Does Laravel support queue-based photo verification and admin metrics integration?

Laravel supports queue-based photo verification and admin metrics integration by utilizing backend controllers and event emissions. This architecture centralizes the moderation workflow and tracks administrative actions within the application.