skills
Opinionated Laravel engineering skills for AI coding agents.
파일 탐색기
- marketplace.json
- plugin.json
- validate.yml
- build-agents.mjs
- lib.mjs
- lint-examples.mjs
- release.mjs
- validate.mjs
- cache-invalidation-playbook.md
- checklist.md
- idempotency-patterns.md
- _sections.md
- _template.md
- cache-invalidate-on-model-events.md
- cache-lock-against-stampede.md
- cache-memoize-within-the-request.md
- cache-read-heavy-endpoints.md
- cache-stable-key-convention.md
- cache-tags-for-related-data.md
- cache-touch-to-extend-ttl.md
- event-carry-identity-not-models.md
- event-dispatch-after-commit.md
- event-emit-for-side-effects.md
- event-listeners-own-domain-only.md
- event-outbox-for-must-deliver.md
- event-past-tense-immutable.md
- event-queue-notifications-and-mailables.md
- event-queue-side-effecting-listeners.md
- job-batches-and-chains.md
- job-fail-fast-on-permanent-errors.md
- job-handle-failure-explicitly.md
- job-idempotent-handlers.md
- job-never-serialize-secrets.md
- job-queue-slow-work.md
- job-rate-limit-external-calls.md
- job-retries-and-backoff.md
- job-retry-after-exceeds-timeout.md
- job-serialize-ids-not-models.md
- job-unique-jobs.md
- queue-monitor-depth-and-failures.md
- queue-never-sync-in-production.md
- queue-restart-workers-on-deploy.md
- queue-route-by-class.md
- queue-separate-by-priority.md
- queue-sqs-visibility-timeout.md
- schedule-monitor-and-alert.md
- schedule-prevent-overlapping.md
- schedule-queue-work-not-inline.md
- schedule-run-on-one-server.md
- AGENTS.md
- metadata.json
- README.md
- SKILL.md
- checklist.md
- n-plus-one-playbook.md
- pagination-decision.md
- _sections.md
- _template.md
- bulk-lazy-by-id-for-huge-sets.md
- bulk-update-bypasses-events.md
- bulk-upsert-instead-of-loop.md
- migration-constrained-foreign-keys.md
- migration-mirror-defaults-in-the-model.md
- migration-never-edit-a-deployed-migration.md
- migration-reversible-down.md
- migration-separate-schema-from-data.md
- model-cast-every-column.md
- model-custom-casts-for-value-objects.md
- model-final-and-typed.md
- model-immutable-dates-and-timezones.md
- model-minimal-fillable.md
- model-observed-by-attribute.md
- model-scope-attribute.md
- paginate-always-paginate-lists.md
- paginate-cursor-for-deep-pagination.md
- paginate-full-only-when-count-required.md
- paginate-simple-when-no-total.md
- perf-avoid-wherehas-on-hot-paths.md
- perf-chunk-large-result-sets.md
- perf-eager-load-every-touched-relation.md
- perf-exists-not-count.md
- perf-index-filtered-columns.md
- perf-order-by-correlated-subquery.md
- perf-prevent-lazy-loading.md
- perf-select-only-needed-columns.md
- perf-set-relation-to-close-the-loop.md
- perf-subquery-select-for-single-values.md
- perf-withcount-not-loaded-relations.md
- raw-conditional-aggregates-in-one-query.md
- raw-custom-expression-helpers.md
- raw-never-interpolate-user-input.md
- raw-only-inside-query-classes.md
- raw-tpetry-instead-of-db-raw.md
- scope-explicit-trashed-queries.md
- scope-global-or-named-not-both.md
- scope-global-scope-for-default-filter.md
- scope-query-scopes-for-reusable-filters.md
- scope-soft-deletes-for-recoverable.md
- tx-dispatch-after-commit.md
- tx-keep-transactions-short.md
- tx-lock-for-update-on-contention.md
- tx-retry-on-deadlock.md
- tx-wrap-multi-step-writes.md
- AGENTS.md
- metadata.json
- README.md
- SKILL.md
- _sections.md
- context-read-contract-before-change.md
- context-trace-data-and-effects.md
- correct-fix-causes-and-fail-loudly.md
- correct-read-back-through-the-consumer-shape.md
- design-reuse-before-abstraction.md
- design-simple-readable-code.md
- hygiene-no-comments-or-dead-code.md
- hygiene-verify-critical-paths-and-docs.md
- AGENTS.md
- metadata.json
- README.md
- SKILL.md
- PlaceOrderAction.php
- OrderRepositoryInterface.php
- OrderQueryFilter.php
- OrderIndexController.php
- SearchOrdersRequest.php
- StoreOrderRequest.php
- ExpireAbandonedOrdersQuery.php
- SearchOrdersQuery.php
- EloquentOrderRepository.php
- DateRange.php
- Direction.php
- Sorting.php
- README.md
- anti-patterns.md
- decision-gate.md
- directory-layout.md
- inter-domain-decision-guide.md
- pre-completion-checklist.md
- _sections.md
- _template.md
- action-keep-single-use-logic-inline.md
- action-maps-request-to-value-objects.md
- action-naming-verb-noun.md
- action-not-a-pass-through.md
- action-one-use-case-end-to-end.md
- config-cache-in-production.md
- config-never-env-outside-config.md
- config-per-environment-overrides.md
- config-secrets-in-env-structure-in-config.md
- config-select-deployable-variation.md
- domain-anti-corruption-layer.md
- domain-events-for-reactions.md
- domain-no-cross-domain-models.md
- domain-open-host-service-for-sync.md
- domain-public-vs-private-surface.md
- domain-shared-kernel-concepts-only.md
- gate-action-for-use-case.md
- gate-earn-extension-seam.md
- gate-eloquent-directly-by-default.md
- gate-opt-in-capability-contract.md
- gate-query-class-and-repository-together.md
- gate-reads-go-through-a-named-query.md
- gate-repository-earns-its-name.md
- gate-run-decision-gate-first.md
- gate-service-only-when-reused.md
- layout-contracts-vs-support.md
- layout-domain-first-structure.md
- layout-no-top-level-service-repository-query.md
- layout-optional-folders-are-deliberate.md
- layout-scope-based-co-location.md
- layout-shared-module-owns-mechanism.md
- query-can-write.md
- query-compose-query-classes.md
- query-final-readonly-no-base-class.md
- query-internal-to-repositories.md
- query-name-the-business-question.md
- query-owns-all-query-construction.md
- query-return-builder-or-execute.md
- query-single-handle-method.md
- query-whitelist-sortable-columns.md
- repo-bind-in-service-provider.md
- repo-domain-intent-methods.md
- repo-inline-simple-delegate-complex.md
- repo-interface-in-domain-contracts.md
- repo-never-accepts-request.md
- repo-never-returns-builder.md
- repo-no-base-repository.md
- repo-ship-implementation-and-binding.md
- repo-small-focused-interface.md
- service-naming-business-decision.md
- service-never-imports-query-classes.md
- service-not-a-disguised-repository.md
- service-stateless-and-focused.md
- service-two-or-more-actions.md
- vo-composite-filter-per-query.md
- vo-date-range-and-presets.md
- vo-group-related-parameters.md
- vo-more-than-four-params.md
- vo-named-constructor-parses-input.md
- vo-never-touches-builder.md
- vo-no-single-scalar-wrapper.md
- vo-parameterized-presets.md
- vo-pass-domain-objects-directly.md
- AGENTS.md
- metadata.json
- README.md
- SKILL.md
- checklist.md
- nested-routing-recipes.md
- request-lifecycle-boundaries.md
- _sections.md
- _template.md
- authz-check-before-the-domain-runs.md
- authz-exactly-one-authorization-site.md
- authz-never-trust-request-ids.md
- authz-policies-per-model.md
- client-explicit-timeouts.md
- client-handle-status-explicitly.md
- client-pool-concurrent-requests.md
- client-reject-user-supplied-urls.md
- client-retry-with-backoff.md
- controller-attributes-for-middleware-and-authorization.md
- controller-idempotency-key-on-unsafe-writes.md
- controller-invokable-single-action.md
- controller-no-query-construction.md
- controller-thin-delegates-to-action.md
- error-context-specific-exception-classes.md
- error-map-status-centrally.md
- error-named-constructors.md
- error-never-leak-internals.md
- error-sensitive-parameter-attribute.md
- request-array-rules-per-item.md
- request-authorize-in-form-request.md
- request-never-pass-request-inward.md
- request-prepare-for-validation-normalizes.md
- request-to-dto.md
- request-validation-in-form-requests.md
- resource-json-resource-only.md
- resource-jsonapi-when-the-spec-applies.md
- resource-live-in-domain.md
- resource-stable-payload-shape.md
- resource-when-loaded-for-relations.md
- route-cacheable-controller-routes.md
- route-consistent-prefixes-no-double-nesting.md
- route-missing-callback.md
- route-model-binding-over-manual-lookup.md
- route-parameter-matches-model.md
- route-scoped-bindings-for-nested-resources.md
- route-shallow-nesting.md
- AGENTS.md
- metadata.json
- README.md
- SKILL.md
- checklist.md
- test-templates.md
- _sections.md
- _template.md
- db-assert-inclusion-and-exclusion.md
- db-refresh-database-and-factories.md
- db-test-eager-loading.md
- db-test-ordering-and-defaults.md
- db-test-transactions-and-idempotency.md
- fake-assert-queued-not-sent.md
- fake-framework-facades.md
- fake-http-prevent-stray-requests.md
- fake-never-mock-eloquent.md
- fake-repository-anonymous-class.md
- fake-time-and-randomness.md
- http-assert-authorization.md
- http-assert-payload-shape.md
- http-assert-side-effects-dispatched.md
- strategy-if-testing-feels-silly.md
- strategy-layer-to-test-type.md
- strategy-pest-and-suite-speed.md
- strategy-test-your-rules-not-the-framework.md
- vo-never-hand-a-builder.md
- vo-test-predicates-directly.md
- AGENTS.md
- metadata.json
- README.md
- SKILL.md
- .gitignore
- AGENTS.md
- CLAUDE.md
- LICENSE
- package.json
- README.md
- skills.sh.json
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
링크
예시
// repository documentation
Was this content helpful?
(0 ratings)
