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):