Skip to main content
Run any Skill in Manus
with one click
GitHub repository

goravel-inertia-tw-starter

goravel-inertia-tw-starter contains 41 collected skills from liwoo, with repository-level occupation coverage and site-owned skill detail pages.

skills collected
41
Stars
16
updated
2026-02-07
Forks
11
Occupation coverage
7 occupation categories · 100% classified
repository explorer

Skills in this repository

broadcast-notification
software-developers

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

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

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
network-and-computer-systems-administrators

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
software-quality-assurance-analysts-and-testers

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
software-developers

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

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
software-developers

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

2026-02-07
goravel-crud-migration
database-administrators

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
software-developers

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

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
software-developers

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
software-developers

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

2026-02-07
goravel-crud-request
software-developers

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
software-developers

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
software-developers

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
software-developers

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

2026-02-07
goravel-crud-test
software-developers

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

2026-02-07
goravel-scaffold
software-developers

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
software-quality-assurance-analysts-and-testers

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
software-developers

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
software-developers

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

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
software-developers

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

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
software-developers

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
software-developers

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

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

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
software-developers

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
network-and-computer-systems-administrators

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

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
software-developers

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
graphic-designers

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
software-quality-assurance-analysts-and-testers

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
network-and-computer-systems-administrators

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
software-developers

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
computer-programmers

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
software-developers

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
network-and-computer-systems-administrators

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

2026-02-07
Showing top 40 of 41 collected skills in this repository.