frappe-agent-architect
Use when designing multi-app Frappe architectures, deciding whether to split functionality into separate apps, or implementing cross-app communication…
Use when receiving vague or unclear ERPNext/Frappe development requests that need interpretation. Transforms requirements like 'make invoice auto-calculate' or 'add approval workflow' into concrete technical specifications. Determines which Frappe mechanisms to use and maps to
$ npx -y skills add Impertio-Studio/Frappe_Claude_Skill_Package --skill frappe-agent-interpreter --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/frappe-agent-interpreterContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when receiving vague or unclear ERPNext/Frappe development requests that need interpretation. Transforms requirements like 'make invoice auto-calculate' or 'add approval workflow' into concrete technical specifications. Determines which Frappe mechanisms to use and maps to
name: frappe-agent-interpreter description: > Use when receiving vague or unclear ERPNext/Frappe development requests that need interpretation. Transforms requirements like 'make invoice auto-calculate' or 'add approval workflow' into concrete technical specifications. Determines which Frappe mechanisms to use and maps to the full 61-skill catalog. Keywords: vague requirement, clarify scope, translate business need, technical spec, implementation plan, what does this mean, unclear requirement, translate to code, how to build this. license: MIT compatibility: "Claude Code, Claude.ai Projects, Claude API. Frappe v14-v16." metadata: author: OpenAEC-Foundation version: "2.0"
Transforms vague or incomplete Frappe/ERPNext development requests into clear, actionable technical specifications mapped to the full 61-skill catalog.
**Purpose**: Bridge the gap between "what the user wants" and "what needs to be built"
USER REQUEST ANALYSIS | +-- Request is vague/incomplete | "Make the invoice do something when submitted" | --> USE THIS AGENT | +-- Request lacks technical specifics | "Add approval before order confirmation" | --> USE THIS AGENT | +-- Multiple implementation paths possible | "Automate inventory updates" | --> USE THIS AGENT | +-- Request has clear technical specs already | "Create Server Script on validate for Sales Invoice" | --> Skip agent, use relevant frappe-* skills directly
STEP 1: EXTRACT INTENT - What is the business problem? - What should happen? When? To what data? - Who should be affected (roles/users)? STEP 2: IDENTIFY TRIGGER CONTEXT - Document lifecycle event? (save/submit/cancel) - User action? (button click, field change) - Time-based? (daily, hourly, cron) - External event? (webhook, API call) STEP 3: DETERMINE MECHANISM - Client Script, Server Script, or Controller? - Hooks configuration needed? - Custom app required? - v16 extend_doctype_class applicable? STEP 4: GENERATE SPECIFICATION - DocType(s), event/trigger, mechanism, data flow - Error handling requirements - Version compatibility (v14/v15/v16) STEP 5: MAP TO SKILLS - List required frappe-* skills from full catalog - Note dependencies between skills
See [references/workflow.md](references/workflow.md) for detailed steps.
| Requirement Pattern | Mechanism | Custom App? | |---------------------|-----------|:-----------:| | "Auto-calculate on form" | Client Script + Server Script | No | | "Validate before save" | Server Script (validate) | No | | "Send notification after submit" | Server Script (on_submit) | No | | "Add button to form" | Client Script | No | | "Scheduled report/sync" | hooks.py scheduler_events | Yes | | "Filter list per user" | Server Script (Permission Query) | No | | "Custom REST API" | Server Script (API) or @frappe.whitelist() | Depends | | "Complex transaction with rollback" | Controller | Yes | | "External library needed (requests)" | Controller | Yes | | "Approval workflow" | Built-in Workflow + optional Server Script | No | | "Print format customization" | Jinja template (Print Format) | No | | "Custom report" | Script Report or Query Report | Depends | | "Background processing" | frappe.enqueue() | Yes | | "File upload handling" | Controller + File hooks | Yes | | "Cache invalidation" | Cache API + hooks | Yes | | "Website/portal page" | Web template + routing | Yes | | "UI component (dashboard, etc.)" | Page or Custom Page | Yes |
ALWAYS generate specifications in this format:
## Technical Specification ### Summary [One sentence describing what will be built] ### Business Requirement [Original user request, clarified] ### Implementation | Aspect | Value | |--------|-------| | **DocType(s)** | [List] | | **Trigger** | [Event/action] | | **Mechanism** | [Client Script / Server Script / Controller / etc.] | | **Version** | [v14 / v15 / v16 / all] | ### Data Flow 1. [Step 1] 2. [Step 2] ### Error Handling [Strategy] ### Required Skills - [ ] frappe-skill-name - for [purpose] ### Validation Criteria [How to verify it works]
| Skill | Use For | |-------|---------| | `frappe-syntax-clientscripts` | Client Script JS syntax | | `frappe-syntax-serverscripts` | Server Script Python sandbox syntax | | `frappe-syntax-controllers` | Controller class syntax | | `frappe-syntax-hooks` | hooks.py configuration syntax | | `frappe-syntax-hooks-events` | Document event hook syntax | | `frappe-syntax-whitelisted` | @frappe.whitelist() syntax | | `frappe-syntax-jinja` | Jinja template syntax | | `frappe-syntax-scheduler` | Scheduler/enqueue syntax | | `frappe-syntax-customapp` | App structure syntax | | `frappe-syntax-doctypes` | DocType JSON definition syntax | | `frappe-syntax-reports` | Report definition syntax |
| Skill | Use For | |-------|---------| | `frappe-core-database` | Database operations, ORM, raw SQL | | `frappe-core-permissions` | Permission system, roles, rules | | `frappe-core-api` | REST API, resource API |
60 deterministic Claude AI skills for Frappe Framework & ERPNext v14-v16 development and operations
Repo: Impertio-Studio/Frappe_Claude_Skill_Package
Use when designing multi-app Frappe architectures, deciding whether to split functionality into separate apps, or implementing cross-app communication…
Use when debugging Frappe errors, using bench console for live inspection, analyzing tracebacks, or reading Frappe log files. Prevents wasted debugging time…
Use when migrating a Frappe app between major versions, detecting breaking API changes, or resolving post-migration errors. Prevents failed migrations from…
Use when reviewing or validating Frappe/ERPNext code against best practices and common pitfalls. Checks generated code before deployment, validates against all…
Use when building ERPNext/Frappe API integrations (v14/v15/v16) including REST API, RPC API, authentication, webhooks, and rate limiting. Covers external API…
Use when implementing Redis caching, cache invalidation, or distributed locking in Frappe. Prevents stale cache bugs, race conditions from missing locks, and…