Skip to main content
Execute qualquer Skill no Manus
com um clique
Repositório GitHub

goravel-inertia-tw-starter

goravel-inertia-tw-starter contém 41 skills coletadas de liwoo, com cobertura ocupacional por repositório e páginas de detalhe dentro do site.

skills coletadas
41
Stars
16
atualizado
2026-02-07
Forks
11
Cobertura ocupacional
7 categorias ocupacionais · 100% classificado
explorador de repositórios

Skills neste repositório

broadcast-notification
Desenvolvedores de software

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
Desenvolvedores web

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
Desenvolvedores web

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
Administradores de redes e sistemas de computador

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
Analistas de garantia de qualidade de software e testadores

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
Desenvolvedores de software

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
Desenvolvedores web

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
Desenvolvedores de software

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

2026-02-07
goravel-crud-migration
Administradores de banco de dados

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
Desenvolvedores de software

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
Desenvolvedores web

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
Desenvolvedores de software

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
Desenvolvedores de software

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

2026-02-07
goravel-crud-request
Desenvolvedores de software

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
Desenvolvedores de software

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
Desenvolvedores de software

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
Desenvolvedores de software

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

2026-02-07
goravel-crud-test
Desenvolvedores de software

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

2026-02-07
goravel-scaffold
Desenvolvedores de software

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
Analistas de garantia de qualidade de software e testadores

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
Desenvolvedores de software

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
Desenvolvedores de software

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
Desenvolvedores web

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
Desenvolvedores de software

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
Desenvolvedores web

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
Desenvolvedores de software

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
Desenvolvedores de software

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
Desenvolvedores web

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
Desenvolvedores web

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
Desenvolvedores de software

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
Administradores de redes e sistemas de computador

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
Desenvolvedores web

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
Desenvolvedores de software

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
Designers gráficos

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
Analistas de garantia de qualidade de software e testadores

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
Administradores de redes e sistemas de computador

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
Desenvolvedores de software

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
Programadores de computador

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
Desenvolvedores de software

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
Administradores de redes e sistemas de computador

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

2026-02-07
Mostrando as 40 principais de 41 skills coletadas neste repositório.