Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill payload-reserve명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | payload-reserve |
| description | > Use when this capability is needed. |
A full-featured reservation/booking plugin for Payload CMS 3.x. Adds scheduling with conflict detection, a configurable status machine, multi-resource bookings, capacity tracking, resource owner multi-tenancy, extra reservation fields, 5 public REST endpoints, and admin UI components (calendar view with resource filter, dashboard widget, availability grid). Supports localization.
pnpm add payload-reserve
# or
npm install payload-reserve
Peer dependencies: payload ^3.79.0, @payloadcms/ui ^3.79.0, @payloadcms/translations ^3.79.0
import { buildConfig } from 'payload'
import { payloadReserve } from 'payload-reserve'
export default buildConfig({
collections: [/* your collections */],
plugins: [
payloadReserve(), // zero-config — all defaults apply
],
})
5 collections: services, resources, schedules, customers (auth), reservations
3 admin components: Calendar view (replaces reservations list), Dashboard widget (today's stats), Availability overview at /admin/reservation-availability
5 REST endpoints: GET /api/reserve/availability, GET /api/reserve/slots, POST /api/reserve/book, POST /api/reserve/cancel, GET /api/reserve/customers
Default status flow: pending -> confirmed -> completed | cancelled | no-show
payloadReserve({
userCollection: 'users', // injects phone, notes, bookings join into your existing collection
})
Opt-in mode for Airbnb-style platforms where each user manages their own resources.
payloadReserve({
userCollection: 'users',
resourceOwnerMode: {
adminRoles: ['admin'],
ownerField: 'owner',
ownedServices: false,
},
})
Auto-wires ownership access control on Resources, Schedules, and Reservations. Set ownedServices: true to also scope Services. The access override in plugin config always takes precedence.
payloadReserve({
adminGroup: 'Reservations', // admin panel group label
defaultBufferTime: 0, // buffer minutes between bookings
cancellationNoticePeriod: 24, // minimum hours notice to cancel
userCollection: 'users', // extend existing auth collection
disabled: false, // set true to disable plugin
extraReservationFields: [], // extra Payload fields appended to Reservations
resourceOwnerMode: { // opt-in multi-tenant owner mode
adminRoles: ['admin'],
ownerField: 'owner',
ownedServices: false,
},
})
context: { skipReservationHooks: true } on any payload.create/update callblockingStatuses control conflict detection, terminalStatuses lock recordsidempotencyKey on POST /api/reserve/book to prevent duplicate submissionsstartTime + service.duration; do not set manually for fixed servicesLoad the relevant file when the user's question is about that topic:
| Topic | File |
|---|---|
| All plugin options, slugs, access, resourceOwnerMode, full config example | references/configuration.md |
| Collection schemas (fields, types, examples) | references/collections.md |
| Status machine config, custom statuses, transitions | references/status-machine.md |
| Duration types, multi-resource bookings, capacity modes | references/booking-features.md |
| Plugin hook callbacks (afterBookingCreate, afterStatusChange, etc.) | references/hooks-api.md |
| REST API endpoints (params, responses, fetch examples) | references/rest-api.md |
| Admin UI: CalendarView, dashboard widget, availability overview | references/admin-ui.md |
| Real-world examples: salon, hotel, restaurant, Stripe, email, resource owner multi-tenant | references/examples.md |
| DB indexes, reconciliation job, performance tuning | references/advanced.md |
Converted and distributed by TomeVault — claim your Tome and manage your conversions.