Skip to main content
Jeden Skill in Manus ausführen
mit einem Klick
GitHub-Repository

goravel-inertia-tw-starter

goravel-inertia-tw-starter enthält 41 gesammelte Skills von liwoo, mit Repository-Berufsabdeckung und Skill-Detailseiten auf SkillsMP.

gesammelte Skills
41
Stars
16
aktualisiert
2026-02-07
Forks
11
Berufsabdeckung
7 Berufskategorien · 100% klassifiziert
Repository-Explorer

Skills in diesem Repository

broadcast-notification
Softwareentwickler

Create a broadcast notification system that sends notifications and messages to eligible users based on entity-specific criteria. Use when adding a new entity type that needs to notify users when records are created, updated, or published.

2026-02-07
custom-pages
Webentwickler

Guide for building non-CRUD pages with consistent design. Use when creating portal pages, custom views, detail modals, sidebar widgets, notification drawers, or any page that is not a standard CRUD table. Covers fullscreen modals, minimal text patterns, calendar widgets, doorbell notifications, optimistic updates, and CrudPage read-only integration.

2026-02-07
dashboard-visualization
Webentwickler

Guide for building dashboards, charts, KPI cards, and data visualizations. Use when creating dashboard pages, adding charts to features, building stat displays, aggregating data for visual presentation, or implementing export (CSV/PNG/fullscreen) for charts. Based on the Books dashboard implementation using Recharts and shadcn/ui chart components.

2026-02-07
deploy
Netzwerk- und Computersystemadministratoren

Deploy the application to staging or production. Validates, builds, pushes Docker image, deploys via Helm, and runs smoke tests.

2026-02-07
e2e-entity-suite
Softwarequalitätssicherungsanalysten und -tester

Run a comprehensive E2E browser test suite for a newly scaffolded Goravel entity. Tests navigation, CRUD operations, search, filters, row actions, form validation, FK dropdowns, and cross-entity integration using Playwright MCP.

2026-02-07
fake-data
Softwareentwickler

Create a Go database seeder for a Goravel entity with 25+ realistic records. Covers all status/enum values, diverse data for sorting/pagination testing, and proper nullable field handling.

2026-02-07
file-downloads
Webentwickler

Add file download and export functionality (CSV, Excel, PDF, JSON) to a Goravel entity page using the existing client-side export system. Also covers chart PNG capture.

2026-02-07
goravel-crud-controller
Softwareentwickler

Generate API controller for a Goravel entity with permission checking and Swagger annotations. Use after creating request validators.

2026-02-07
goravel-crud-migration
Datenbankadministratoren

Create database migration and audit fields for a new Goravel entity. Use when setting up a new database table, adding fields, or starting CRUD scaffolding.

2026-02-07
goravel-crud-model
Softwareentwickler

Generate a Goravel model from an existing database table with post-generation fixes and automatic GORM test creation. Use after running migration.

2026-02-07
goravel-crud-nav
Webentwickler

Add i18n-aware navigation entry for a Goravel entity. Updates sidebar menu with icon, permission gating, and nav i18n keys.

2026-02-07
goravel-crud-page
Softwareentwickler

Generate page controller and UI files for a Goravel entity's admin page. Creates Inertia page controller and React components.

2026-02-07
goravel-crud-permissions
Softwareentwickler

Register permissions for a new Goravel entity in the permission system. Adds service constant, display name, and actions.

2026-02-07
goravel-crud-request
Softwareentwickler

Generate create and update request validators for a Goravel entity. Handles validation rules, field mapping, and carbon.DateTime conversion.

2026-02-07
goravel-crud-routes
Softwareentwickler

Register API and web routes for a Goravel entity. Adds endpoints to routes/api.go and routes/web.go.

2026-02-07
goravel-crud-search
Softwareentwickler

Add a new entity to the global search (CMD+K) system. Updates backend search controller with permission-gated search and frontend search config with entity type, icon, and colors.

2026-02-07
goravel-crud-service
Softwareentwickler

Generate the service layer for a Goravel entity with builder pattern configuration. Use after model generation.

2026-02-07
goravel-crud-test
Softwareentwickler

Generate and fix comprehensive CRUD tests for a Goravel entity. Covers all CRUD operations, sorting, pagination, search, and permissions.

2026-02-07
goravel-scaffold
Softwareentwickler

Full end-to-end CRUD scaffolding for a new Goravel entity. Orchestrates all 19 steps from migration to navigation.

2026-02-07
goravel-test-suite
Softwarequalitätssicherungsanalysten und -tester

Write and run comprehensive Go test suites for Goravel entities using testcontainers (PostgreSQL). Covers CRUD tests, permission tests, scoped access tests, and integration tests with the full test infrastructure.

2026-02-07
inertia-columns
Softwareentwickler

Create table column definitions and filter configs for a Goravel entity's CrudPage. Uses TFunction parameter for i18n-translated column headers, status labels, and filter labels.

2026-02-07
inertia-custom-page
Softwareentwickler

Create a custom (non-CRUD) Inertia page controller and React component with i18n. Use for dashboards, analytics, reports, or any page that doesn't follow the standard CRUD pattern.

2026-02-07
inertia-detail
Webentwickler

Create the read-only detail view component for a Goravel entity. Uses useTranslation hook for i18n labels, formatted dates, status badges, and metadata section.

2026-02-07
inertia-form-review
Softwareentwickler

Audit and review existing form components for i18n compliance, type safety, missing validations, dropdown opportunities, accessibility, and consistency between create/edit forms.

2026-02-07
inertia-form
Webentwickler

Create create and edit form components for a Goravel entity. Uses forwardRef pattern with useTranslation hook for i18n labels, placeholders, validation messages, and toast notifications.

2026-02-07
inertia-page-config
Softwareentwickler

Create page configuration for a Goravel entity - i18n-aware simple filters with badges, stats cards, page actions, and bulk actions. All config functions receive TFunction.

2026-02-07
inertia-page-ctrl
Softwareentwickler

Create a Go page controller that serves an Inertia.js page. Configures the EntityPageController with service, permissions, and optional stats.

2026-02-07
inertia-page
Webentwickler

Create the Index.tsx page component for a Goravel entity. Uses CrudPage wrapper with i18n useTranslation hook, responsive columns, and section imports.

2026-02-07
inertia-scaffold
Webentwickler

Full UI scaffold orchestrator - generates all frontend components for a Goravel entity with i18n (types, translations, page, columns, forms, detail view, page config, page controller).

2026-02-07
inertia-types
Softwareentwickler

Create TypeScript type definitions and i18n translation namespace for a Goravel entity. Maps Go model fields to TS interfaces and creates the translation JSON file.

2026-02-07
infra-debug
Netzwerk- und Computersystemadministratoren

Debug infrastructure and deployment issues. Inspect pods, check logs, view events, diagnose ingress/networking, and troubleshoot Kubernetes or Docker problems.

2026-02-07
multi-step-form
Webentwickler

Guide for building multi-step forms with sequential wizard creation and tab-based editing. Use when creating complex forms that span multiple sections, require per-step validation, or involve related entities (e.g., parent + children records). Based on the SME create/edit pattern.

2026-02-07
rebrand
Softwareentwickler

Rebrand the application with a new name, updating Go module path, Docker/Helm/CI names, DB names, i18n translations, env files, favicon, and all frontend/backend references

2026-02-07
ui-ux-audit
Grafikdesigner

Audit and refactor an entity's UI for table column density, icon overuse, form dropdown opportunities, validation patterns, status color consistency, loading/empty states, and shared config reusability.

2026-02-07
ci-check
Softwarequalitätssicherungsanalysten und -tester

Run CI checks locally before pushing. Runs linting, type checks, tests, build verification, and Docker build in sequence - matching the GitHub Actions CI pipeline.

2026-02-07
docker-dev
Netzwerk- und Computersystemadministratoren

Manage the Docker development environment. Start, stop, restart services, view logs, troubleshoot containers, or run with optional tools (pgadmin, redis-commander, mailhog, minio).

2026-02-07
goravel-crud-review
Softwareentwickler

Review and audit a Goravel CRUD implementation for completeness, correctness, and best practices. Checks all API operations, permissions, error handling, query efficiency, route registration, and response consistency.

2026-02-07
goravel-enum
Computerprogrammierer

Create a Go enum type and automatically generate the TypeScript equivalent. Produces union types and option arrays for forms.

2026-02-07
goravel-type-check
Softwareentwickler

Cross-reference Go structs (model, requests) with TypeScript interfaces to verify type consistency, field coverage, nullable handling, and JSON tag alignment.

2026-02-07
helm-values
Netzwerk- und Computersystemadministratoren

Update Helm chart values, bump versions, validate templates, or compare staging vs production config. Use when modifying deployment configuration.

2026-02-07
Zeigt die Top 40 von 41 gesammelten Skills in diesem Repository.