mcpbeat Sign in

Frappe Core Utils Agent Skill

> Use when working with utility functions in Frappe v14-v16. Covers frappe.utils.* for date/time, number/money, string, validation, and file path operations. Prevents reinventing stdlib alternatives that break timezone awareness, locale formatting, or multi-tenancy. add_days, date_diff, validate_email, pretty_date, get_files_path.

7k tokens
context cost
the whole folder, loaded on every use
6
files
instructions only
0
copies elsewhere
how many repositories repackaged it
158
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/Impertio-Studio/Frappe_Claude_Skill_Package --skill frappe-core-utils

The instruction itself

9 sections, as written by the author

Frappe Utility Functions

Quick Reference: Python

| Need | Function | Returns |

|------|----------|---------|

| Current date | nowdate() / today() | datetime.date |

| Current datetime | now_datetime() | datetime.datetime |

| Parse date string | getdate(str) | datetime.date |

| Parse datetime string | get_datetime(str) | datetime.datetime |

| Add days | add_days(date, n) | datetime.date |

| Add months | add_months(date, n) | datetime.date |

| Date difference | date_diff(end, start) | int (days) |

| Format for user | format_date(dt) | str (user locale) |

| Relative time | pretty_date(dt) | str ("2 hours ago") |

| Safe float | flt(val, precision) | float |

| Safe int | cint(val) | int |

| Safe string | cstr(val) | str |

| Safe bool | sbool(val) | bool |

| Safe division | safe_div(a, b) | float [v15+] |

| Money format | fmt_money(amt, currency) | str |

| Money in words | money_in_words(amt, cur) | str |

| Strip HTML | strip_html(text) | str |

| List to prose | comma_and(items) | str ("a, b, and c") |

| Validate email | validate_email_address(e) | str or "" |

| Validate URL | validate_url(url) | bool |

| Parse JSON | parse_json(s) | Any |

| Files path | get_files_path(is_private) | str |

| Site path | get_site_path(*parts) | str |

| Unique list | unique(seq) | list |

| Hash | generate_hash(s, length) | str |

> ALL imports: from frappe.utils import nowdate, flt, ... in controllers/whitelisted methods.

> In Server Scripts: Use frappe.utils.nowdate() directly — NO import statements allowed.


Decision Tree: "Which function do I use?"

Need a date/time value?
├─ Current date → nowdate() or today()
├─ Current datetime → now_datetime()
├─ Parse a string → getdate() or get_datetime()
├─ Add/subtract time → add_days(), add_months(), add_to_date()
├─ Difference → date_diff() (days), month_diff(), time_diff_in_seconds()
├─ Period boundary → get_first_day(), get_last_day(), get_quarter_start()
└─ Display to user → format_date(), format_datetime(), pretty_date()

Need a number?
├─ Convert safely → flt(), cint(), cstr(), sbool()
├─ Round → rounded() (banker's rounding)
├─ Safe divide → safe_div(a, b, default=0) [v15+]
├─ Format money → fmt_money(amount, currency)
└─ Money to words → money_in_words(amount, currency)

Need string processing?
├─ HTML → strip_html(), escape_html(), is_html()
├─ Join list → comma_and(), comma_or(), comma_sep()
├─ Markdown ↔ HTML → to_markdown(), md_to_html()
└─ Mask sensitive → mask_string(input, show_first=4) [v16+]

Need validation?
├─ Email → validate_email_address(email, throw=False)
├─ URL → validate_url(url, valid_schemes=["https"])
├─ Phone → validate_phone_number(phone, throw=False)
├─ JSON → validate_json_string(s)
└─ IBAN → validate_iban(iban) [v16+]

Need file/path?
├─ Public files → get_files_path()
├─ Private files → get_files_path(is_private=True)
├─ Site directory → get_site_path("private", "backups")
├─ Bench root → get_bench_path()
└─ File size → get_file_size(path, format=True)

Critical Anti-Patterns

NEVER use Python stdlib when frappe.utils exists

| NEVER (stdlib) | ALWAYS (frappe.utils) | Why |

|----------------|----------------------|-----|

| datetime.datetime.now() | now_datetime() | Ignores system timezone |

| datetime.date.today() | nowdate() | Ignores system timezone |

| float(val) | flt(val, precision) | Crashes on None/empty |

| int(val) | cint(val) | Crashes on None/empty |

| round(val, 2) | rounded(val, 2) | Inconsistent rounding |

| val1 / val2 | safe_div(val1, val2) | ZeroDivisionError [v15+] |

| json.loads(s) | parse_json(s) | Crashes on None/empty |

| json.dumps(obj) | frappe.as_json(obj) | Inconsistent serialization |

| "{:,.2f}".format(a) | fmt_money(a, currency) | Ignores locale/currency |

| os.path.join(...) | get_site_path(...) | Breaks multi-tenancy |

| ", ".join(items) | comma_and(items) | No localized "and" |

| dt.strftime(fmt) | format_date(dt) | Ignores user preference |

| re.sub(r'<.*?>', '', h) | strip_html(h) | Misses edge cases |

Server Script Sandbox

# ❌ NEVER in Server Scripts
from frappe.utils import nowdate, flt
import json

# ✅ ALWAYS in Server Scripts (no imports allowed)
today = frappe.utils.nowdate()
amount = frappe.utils.flt(doc.amount, 2)
data = frappe.parse_json(doc.json_field)

JavaScript Quick Reference

| Need | Function |

|------|----------|

| Escape HTML | frappe.utils.escape_html(txt) |

| HTML to text | frappe.utils.html2text(html) |

| Check if HTML | frappe.utils.is_html(txt) |

| Parse JSON | frappe.utils.parse_json(str) |

| Validate URL | frappe.utils.is_url(txt) |

| Title case | frappe.utils.to_title_case(str) |

| Join with "and" | frappe.utils.comma_and(list) |

| Unique array | frappe.utils.unique(list) |

| Copy clipboard | frappe.utils.copy_to_clipboard(txt) |

| Scroll to element | frappe.utils.scroll_to(el) |

| Is mobile | frappe.utils.is_mobile() |

| Throttle | frappe.utils.throttle(fn, delay) |

| Debounce | frappe.utils.debounce(fn, delay) |

| Format value | frappe.format(value, df, options, doc) |

| Duration display | frappe.utils.get_formatted_duration(secs) |


Version Differences

| Function | v14 | v15 | v16 |

|----------|:---:|:---:|:---:|

| safe_div() | -- | Added | Yes |

| duration_to_seconds() | -- | Added | Yes |

| guess_date_format() | -- | Added | Yes |

| validate_duration_format() | -- | Added | Yes |

| mask_string() | -- | -- | Added |

| validate_iban() | -- | -- | Added |

| validate_name() | -- | -- | Added |

| safe_json_loads() | -- | -- | Added |

| groupby_metric() | -- | -- | Added |

| Core functions | Yes | Yes | Yes |


Reference Files

  • Date/Time Functions — Complete date/time API with signatures
  • Number & Money Functions — flt, fmt_money, rounding
  • String & Validation Functions — HTML, join, validate
  • JavaScript Utilities — Client-side frappe.utils.*
  • Anti-patterns — stdlib vs frappe.utils comparison

Other skills for the same job

different authors, same section of the catalogue
Positioning Icp
by tech-leads-club

When the user wants to define their ideal customer profile, position an AI product, build messaging architecture, or validate product-market fit. Also use when the user mentions 'ICP,' 'ideal customer profile,' 'positioning,' 'PMF,' 'product-market fit,' 'messaging,' 'buyer persona,' 'enrichment signals,' 'market positioning,' or 'competitive positioning.' This skill covers market positioning, ICP definition, messaging architecture, and PMF validation for AI-native products. Do NOT use for technical implementation, code review, or software architecture.

7k tokens
Hunt Forgot Password
by elementalsouls

Hunt Forgot Password / Account Recovery Authentication Flaws — 5 distinct patterns: (1) username enumeration via different responses for valid vs invalid email, (2) reset token exposed directly in the API response body, (3) reset token not invalidated after use (replay), (4) password reset link works from a different IP/browser (no binding), (5) no rate limit on the reset request endpoint. These are the standalone recovery-flow broken-auth primitives — distinct from reset-email host-header poisoning (hunt-host-header) and the full ATO chain (hunt-ato owns password-reset as an ATO path; prove the primitive here, chain it there). Detection: trace the full forgot-password flow from request to token to use; check response diffs between valid/invalid emails; test token replay after consumption. Medium to High (enumeration=Medium, token-reuse=High, account-takeover=Critical when chained to known-email).

1k tokens
Meeting Insights Analyzer
by frostant
×8

Analyzes meeting transcripts and recordings to uncover behavioral patterns, communication insights, and actionable feedback. Identifies when you avoid conflict, use filler words, dominate conversations, or miss opportunities to listen. Perfect for professionals seeking to improve their communication and leadership skills.

3k tokens
Receiving Code Review
by ZhanlinCui
×7

Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation

2k tokens
Slack Gif Creator
by JayZeeDesign
×7

Toolkit for creating animated GIFs optimized for Slack, with validators for size constraints and composable animation primitives. This skill applies when users request animated GIFs or emoji animations for Slack from descriptions like "make me a GIF for Slack of X doing Y".

53k tokens scripts
Requesting Code Review
by ZhanlinCui
×6

Use when completing tasks, implementing major features, or before merging to verify work meets requirements

2k tokens
Developer Growth Analysis
by frostant
×6

Analyzes your recent Claude Code chat history to identify coding patterns, development gaps, and areas for improvement, curates relevant learning resources from HackerNews, and automatically sends a personalized growth report to your Slack DMs.

4k tokens
Slack Gif Creator
by anthropics
vendor ×5

Knowledge and utilities for creating animated GIFs optimized for Slack. Provides constraints, validation tools, and animation concepts. Use when users request animated GIFs for Slack like "make me a GIF of X doing Y for Slack.

11k tokens scripts

How to use it

Copy the folder

Take impertio-studio/frappe-core-utils from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.