home / skills / noartem

noartem skills

Find 31 skills from 1 repo created by noartem on GitHub.

1 repo
31 skills
GitHub

Sponsored

laravel-api-resources-and-pagination

noartem/skills

6
This skill helps you implement Laravel API Resources with stable, cache-friendly pagination and conditional fields for consistent responses.
laravel-custom-helpers

noartem/skills

6
This skill helps you create and register small, pure Laravel helper functions to improve code clarity and maintainability.
laravel-iterating-on-code

noartem/skills

6
This skill helps refine AI-generated Laravel and Vue code by giving specific, actionable feedback, highlighting gaps, and applying style-guide-aligned fixes.
baseline-ui

noartem/skills

6
This skill enforces an opinionated UI baseline for Laravel and Vue, aligning interfaces to Tailwind defaults and accessibility best practices.
laravel-data-chunking-large-datasets

noartem/skills

6
This skill helps you process large Laravel datasets efficiently by applying chunking methods to reduce memory usage and boost performance.
laravel-migrations-and-factories

noartem/skills

6
This skill enforces safe Laravel migrations and factories, guiding when to modify or add migrations, and pairing models with seeds for realistic, tested
laravel-dependencies-trim-packages

noartem/skills

6
This skill helps prune Laravel dependencies by auditing composer packages, removing unused ones, and prioritizing built-in features to improve boot time and
laravel-prompting-patterns

noartem/skills

6
This skill helps you generate idiomatic Laravel code using Eloquent, Form Requests, API resources, and queues for realistic patterns.
laravel-quality-checks

noartem/skills

6
This skill runs automated quality gates for Laravel projects, combining Pint, PHPStan/Psalm, Insights, and JS linters to ensure clean handoffs.
laravel-api

noartem/skills

6
This skill helps you design and review production-grade Laravel APIs using stateless patterns, versioned endpoints, and PSR-12 compliant practices.
laravel-performance-caching

noartem/skills

6
This skill helps optimize Laravel performance by using framework caches, value and query caching, and explicit invalidation strategies for correctness.
laravel-performance-eager-loading

noartem/skills

6
This skill helps Laravel developers prevent N+1 queries by eager loading, safeguard lazy loading in dev, and select only needed fields.
laravel-controller-tests

noartem/skills

6
This skill helps you write focused Laravel controller tests by guiding HTTP assertions and recommending service-layer testing for maintainable apps.
laravel-filesystem-uploads-and-urls

noartem/skills

6
This skill helps manage Laravel file uploads via Storage, generate URLs, enforce visibility, and stream securely across disks.
laravel-controller-cleanup

noartem/skills

6
This skill helps you reduce Laravel controller bloat by moving auth/validation to Form Requests, using Actions with DTOs, and opting for resource or
vue3-component-decomposition

noartem/skills

6
This skill helps you decompose large Vue 3 components into focused SFCs and composables, improving readability and maintainability.
laravel-task-scheduling

noartem/skills

6
This skill helps you schedule Laravel tasks safely across environments, using withoutOverlapping, onOneServer, and visibility for reliable cron execution.
laravel-strategy-pattern

noartem/skills

6
This skill enables runtime behavior selection using the Strategy pattern by binding multiple implementations to a shared interface across Laravel and Vue apps.
laravel-debugging-prompts

noartem/skills

6
This skill helps you craft Laravel debugging prompts with complete errors, stack traces, context, and attempted solutions to accelerate fixes.
laravel-routes-best-practices

noartem/skills

6
This skill enforces Laravel route discipline by keeping routes mapping to controllers and avoiding business logic or validation.
laravel-transactions-and-consistency

noartem/skills

6
This skill helps ensure atomic multi-step writes in Laravel by wrapping operations in transactions and applying after-commit events for consistency.
complexity-guardrails

noartem/skills

6
This skill helps you reduce cyclomatic complexity and refactor logic by applying early returns, guard clauses, and table-driven patterns.
laravel-constants-and-configuration

noartem/skills

6
This skill helps you replace hardcoded values with constants, enums, and config in Laravel projects to improve maintainability and configurability.
laravel-policies-and-authorization

noartem/skills

6
This skill helps enforce Laravel access control by applying policies and gates in controllers and routes, ensuring consistent authorization checks.
laravel-rate-limiting-and-throttle

noartem/skills

6
This skill helps implement per-user and per-route rate limiting in Laravel using RateLimiter and throttle middleware, with backoffs and client headers.
shadcn-vue

noartem/skills

6
This skill helps you scaffold and configure shadcn-vue projects with Tailwind, Vite, and TypeScript for accessible UI components.
laravel-config-env-storage

noartem/skills

6
This skill helps configure portable storage across S3, R2, and MinIO with optional CDN and env toggles for Laravel and Vue.
laravel-performance-select-columns

noartem/skills

6
This skill helps you optimize Laravel queries by selecting only needed columns in base queries and relations, reducing memory usage and payloads.
laravel-template-method-and-plugins

noartem/skills

6
This skill helps you stabilize Laravel flows by applying the Template Method pattern and pluggable strategies, extending via new classes.