You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tools/claude-plugin/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Payload Skill for Claude Code
2
2
3
-
Claude Code skill providing comprehensive guidance for Payload 3.x development with TypeScript patterns, field configurations, hooks, access control, and API examples.
3
+
Claude Code skill providing comprehensive guidance for Payload development with TypeScript patterns, field configurations, hooks, access control, and API examples.
Copy file name to clipboardExpand all lines: tools/claude-plugin/skills/payload/SKILL.md
+182-3Lines changed: 182 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
---
2
2
name: payload
3
-
description: Use when working with Payload CMS projects, payload.config.ts, collections, fields, hooks, access control, or Payload API. Provides TypeScript patterns and examples for Payload 3.x development.
3
+
description: Use when working with Payload CMS projects (payload.config.ts, collections, fields, hooks, access control, Payload API). Use when debugging validation errors, security issues, relationship queries, transactions, or hook behavior.
4
4
---
5
5
6
6
# Payload CMS Application Development
7
7
8
-
Payload 3.x is a Next.js native CMS with TypeScript-first architecture, providing admin panel, database management, REST/GraphQL APIs, authentication, and file storage.
8
+
Payload is a Next.js native CMS with TypeScript-first architecture, providing admin panel, database management, REST/GraphQL APIs, authentication, and file storage.
9
9
10
10
## Quick Reference
11
11
@@ -17,20 +17,27 @@ Payload 3.x is a Next.js native CMS with TypeScript-first architecture, providin
| Geospatial queries |`point` field with `near`/`within`|[FIELDS.md#point-geolocation](reference/FIELDS.md#point-geolocation)|
21
27
| Reverse relationships |`join` field type |[FIELDS.md#join-fields](reference/FIELDS.md#join-fields)|
22
28
| Next.js revalidation | Context control in afterChange |[HOOKS.md#nextjs-revalidation-with-context-control](reference/HOOKS.md#nextjs-revalidation-with-context-control)|
23
29
| Query by relationship | Nested property syntax |[QUERIES.md#nested-properties](reference/QUERIES.md#nested-properties)|
Copy file name to clipboardExpand all lines: tools/claude-plugin/skills/payload/reference/ADVANCED.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -156,6 +156,8 @@ Multi-step jobs that run in sequence:
156
156
157
157
## Custom Endpoints
158
158
159
+
Add custom REST API routes to collections, globals, or root config. See [ENDPOINTS.md](ENDPOINTS.md) for detailed patterns, authentication, helpers, and real-world examples.
0 commit comments