frappe-dev-debugger

Installation
SKILL.md

Frappe Dev Debugger

All commands run from the bench directory (/workspace/development/frappe-bench). Default site: development.localhost.

1. Query documents (bench execute)

Query a single doc (returns JSON printed to stdout):

bench --site development.localhost execute frappe.get_doc \
  --args '["DocType", "docname"]' | python3 -c "import sys,json; d=json.load(sys.stdin); print(d.get('fieldname'))"

Query a list (frappe.get_all):

bench --site development.localhost execute frappe.get_all \
  --args '["DocType", {"filters": {"status": "Active"}, "fields": ["name", "field1"], "limit": 5}]'
Related skills
Installs
2
Repository
kehwar/skills
First Seen
Apr 18, 2026