ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Erpnext Frappe

Skill by ravana-indus

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/ravana-indus/erpnext-frappe
Or

Business Claw Skills

High-level business workflows that combine multiple MCP tools into reusable, executable skills for ERPNext.

Overview

Skills are pre-defined workflows stored as JSON files in definitions/. Each skill defines:

  • Triggers: Natural language patterns that activate the skill
  • Tools: MCP tools to execute in sequence
  • Input Schema: Required and optional parameters
  • Workflow Steps: Ordered execution plan with variable substitution
  • Guardrails: Validation rules for safe execution
  • Output Template: Formatted response message

Available Skills

CRM Skills

SkillDescriptionCategory
create_customerCreate a new customer with contact and addresscrm
create_leadRegister a new leadcrm
create_supplierAdd a new suppliercrm

Sales Skills

SkillDescriptionCategory
create_sales_orderCreate a sales ordersales
create_quotationCreate a quotationsales
create_invoiceGenerate sales invoicesales
complete_sales_workflowFull Quotation → SO → Invoice → Paymentsales

Purchase Skills

SkillDescriptionCategory
create_purchase_orderCreate a purchase orderpurchase

Inventory Skills

SkillDescriptionCategory
create_itemCreate new item in inventoryinventory
stock_entryRecord stock movementsinventory

Project Skills

SkillDescriptionCategory
create_projectCreate a new projectproject

Financial Skills

SkillDescriptionCategory
process_paymentRecord payment entrypayments

Utility Skills

SkillDescriptionCategory
search_recordsSearch across DocTypesutility
bulk_operationBulk create/update/deleteutility
generic_taskFlexible multi-step workflowutility

Usage

Loading Skills

from bc_skills import get_available_skills, load_skill

# List all available skills
skills = get_available_skills()
print(skills)  # ['create_customer', 'create_sales_order', ...]

# Load a specific skill
skill = load_skill("create_customer")

Executing Skills

Metadata

Stars1171
Views0
Updated2026-02-19
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-ravana-indus-erpnext-frappe": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.