frappe-core-api

Installation
SKILL.md

Frappe API Patterns

Deterministic patterns for REST, RPC, and webhook integrations with Frappe.


Decision Tree

What do you need?
├── CRUD on documents (external client)
│   ├── v14: REST /api/resource/{doctype}
│   └── v15+: REST /api/v2/document/{doctype} (new) or /api/resource/ (still works)
├── Call custom server logic (external client)
│   └── RPC: POST /api/method/{dotted.path.to.function}
├── Notify external systems on document events
│   └── Webhooks (configured in UI or via DocType)
Related skills
Installs
36
GitHub Stars
95
First Seen
Mar 25, 2026