Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

frappe-syntax-doctypesfrappe 语法文档类型

Agent Skill

frappe-syntax-doctypes 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

635

周安装

27

GitHub Stars

87

下载量

222
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:frappe-syntax-doctypes(frappe 语法文档类型)
来源仓库:https://github.com/openaec-foundation/erpnext_anthropic_claude_development_skill_package
仓库路径:skills/frappe-syntax-doctypes
安装命令:
npx skills add https://github.com/openaec-foundation/erpnext_anthropic_claude_development_skill_package --skill frappe-syntax-doctypes
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/openaec-foundation/erpnext_anthropic_claude_development_skill_package --skill frappe-syntax-doctypes

简介

frappe-syntax-doctypes 用于查找、检索和筛选相关信息,适合快速定位候选结果。

  • 适用于根据关键词或任务场景从来源线索中获取信息的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

DocType JSON Design

DocTypes are the foundation of every Frappe application. A DocType defines both the data model (database schema) and the view (form layout). ALWAYS design DocTypes before writing any controller logic.

Quick Reference

DocType JSON Top-Level Properties

PropertyTypePurpose
namestrDocType identifier (singular, e.g. "Sales Invoice")
modulestrApp module this DocType belongs to
is_submittableboolEnables Draft -> Submitted -> Cancelled workflow
is_treeboolEnables NestedSet hierarchy (lft/rgt columns)
is_virtualboolNo database table; data from custom backend
issingleboolSingle-instance settings document
istableboolChild table DocType (embedded in parent)
is_calendar_and_ganttboolEnables calendar/gantt views
track_changesboolStores version history on every save
track_seenboolTracks which users viewed the document
track_viewsboolCounts total document views
allow_renameboolPermits renaming after creation
allow_copyboolEnables "Duplicate" action
allow_importboolEnables Data Import for this DocType
naming_rulestrNaming method selector (see Naming section)
autonamestrNaming pattern string
title_fieldstrField used as display title
search_fieldsstrComma-separated fields for search results
show_title_field_in_linkboolDisplay title instead of name in Link fields
image_fieldstrField containing image for avatar display
sort_fieldstrDefault sort column
sort_orderstr"ASC" or "DESC"
default_print_formatstrPrint Format name
max_attachmentsintAttachment limit

Common Fieldtypes (Quick Lookup)

FieldtypeStoresDB Column
DataText up to 140 charsVARCHAR(140)
LinkReference to another DocTypeVARCHAR(140)
Dynamic LinkReference to any DocTypeVARCHAR(140)
SelectSingle choice from optionsVARCHAR(140)
TableChild table rowsSeparate table
Table MultiSelectMulti-select link rowsSeparate table
CheckBoolean 0/1TINYINT
IntWhole numberINT
FloatDecimal (9 places)DECIMAL
CurrencyMoney value (6 decimals)DECIMAL
DateCalendar dateDATE
DatetimeDate + timeDATETIME
Text EditorRich text (HTML)LONGTEXT
AttachFile referenceVARCHAR(140)
Small TextShort multi-line textTEXT
Long TextUnlimited textLONGTEXT
Full fieldtype reference with all 35+ types: references/fieldtypes.md

Essential Field Properties

PropertyTypePurpose
reqdboolField is mandatory
uniqueboolDatabase UNIQUE constraint
search_indexboolDatabase INDEX for faster queries
in_list_viewboolShow in list view columns
in_standard_filterboolShow as filter in list view
in_previewboolShow in document preview
allow_on_submitboolEditable after submission
read_onlyboolNot editable by user
hiddenboolNot visible on form
depends_onstrVisibility condition (e.g. eval:doc.status=="Active")
mandatory_depends_onstrConditional mandatory
read_only_depends_onstrConditional read-only
fetch_fromstrAuto-populate from linked doc (e.g. customer.customer_name)
fetch_if_emptyboolOnly fetch when field is empty
optionsstrFieldtype-specific (DocType name, select options, etc.)
defaultstrDefault value (supports __user, Today, etc.)
descriptionstrHelp text below field
collapsibleboolSection starts collapsed (Section Break only)

Decision Tree: Which DocType Type?

Need to store data?
├─ YES: Need multiple records?
│  ├─ YES: Need submit/cancel workflow?
│  │  ├─ YES → Standard DocType + is_submittable=1
│  │  └─ NO: Need hierarchy/tree?
│  │     ├─ YES → Tree DocType (is_tree=1)
│  │     └─ NO: Embedded in parent?
│  │        ├─ YES → Child DocType (istable=1)
│  │        └─ NO → Standard DocType
│  └─ NO: Single config/settings → Single DocType (issingle=1)
└─ NO: Data from external source → Virtual DocType (is_virtual=1)

Naming Rules

ALWAYS set naming_rule on the DocType. The autoname field holds the pattern.

naming_rule Valueautoname PatternExample Output
Set by User*(empty)*User types name manually
Autoincrement*(empty)*1, 2, 3
By Fieldnamefield:{fieldname}Value of that field
By Naming Seriesnaming_series:INV-2024-00001 (from series field)
ExpressionPRE-.#####PRE-00001, PRE-00002
Expression (Old Style){prefix}-{YYYY}-{#####}INV-2024-00001
RandomhashRandom 10-char string
UUID*(empty)*550e8400-e29b-...
By Script*(custom)*Controller autoname() decides
NEVER use Autoincrement in production -- gaps appear when records are deleted. Use Expression or Naming Series instead.
Full naming reference: references/naming.md

Child Table Design

A Child DocType is a DocType with istable=1. It ALWAYS belongs to a parent.

Parent side -- add a field with:

  • fieldtype: Table (or Table MultiSelect)
  • options: Child DocType name

Child records automatically get:

  • parent -- name of the parent document
  • parenttype -- DocType of the parent
  • parentfield -- fieldname of the Table field in parent
  • idx -- row order (1-based)
# Adding child rows programmatically
doc = frappe.get_doc("Sales Invoice", "INV-001")
doc.append("items", {
    "item_code": "ITEM-001",
    "qty": 5,
    "rate": 100.0
})
doc.save()
NEVER create a Child DocType without istable=1. NEVER reference a non-child DocType in a Table field.

Table vs Table MultiSelect

AspectTableTable MultiSelect
UIFull editable grid with "Add Row"Tag-style picker, no "Add Row"
Child DocTypeFull child with many fieldsTypically 1 Link field only
Use caseLine items, detail rowsMulti-select references

Single DocType (Settings Pattern)

Set issingle=1. Data is stored in tabSingles as key-value pairs, NOT in a dedicated table.

# Access Single DocType
settings = frappe.get_single("My Settings")
value = settings.some_field

# Or directly
value = frappe.db.get_single_value("My Settings", "some_field")
  • NEVER expect a list view for Single DocTypes -- they have exactly one instance.
  • ALWAYS use for app-wide configuration (API keys, default values, feature toggles).

Tree DocType (NestedSet)

Set is_tree=1. Frappe adds lft, rgt, parent_{doctype_fieldname}, old_parent columns automatically.

  • ALWAYS define a parent_field in the DocType JSON (e.g. parent_account for Chart of Accounts).
  • The NestedSet model uses lft/rgt integers for efficient subtree queries.
  • NEVER manually edit lft/rgt values. Use frappe.utils.nestedset.rebuild_tree() if corrupted.
# Get all descendants
descendants = frappe.get_all("Account",
    filters={"lft": [">", node.lft], "rgt": ["<", node.rgt]})

# Get ancestors (path to root)
ancestors = frappe.get_all("Account",
    filters={"lft": ["<", node.lft], "rgt": [">", node.rgt]},
    order_by="lft asc")

Virtual DocType

Set is_virtual=1. No database table is created. ALWAYS implement these controller methods:

class MyVirtualDoc(Document):
    def db_insert(self, *args, **kwargs):
        # Persist to your custom backend
        pass

    def load_from_db(self):
        # Load document data from your source
        pass

    def db_update(self, *args, **kwargs):
        # Update in your custom backend
        pass

    def delete(self):
        # Remove from your custom backend
        pass

    @staticmethod
    def get_list(args):
        # Return list of documents
        pass

    @staticmethod
    def get_count(args):
        # Return total count
        pass

    @staticmethod
    def get_stats(args):
        # Return statistics
        pass
NEVER use frappe.db.* calls for Virtual DocType data -- they only work with the site database, not your custom backend.

Customization APIs

Custom Fields (Programmatic)

from frappe.custom.doctype.custom_field.custom_field import create_custom_fields

# Dict format: {DocType: [field_dicts]}
create_custom_fields({
    "Sales Invoice": [
        dict(fieldname="custom_tracking", label="Tracking ID",
             fieldtype="Data", insert_after="naming_series")
    ],
    "Purchase Order": [
        dict(fieldname="custom_vendor_ref", label="Vendor Ref",
             fieldtype="Data", insert_after="supplier")
    ]
}, update=True)

Property Setter (Programmatic)

from frappe.custom.doctype.property_setter.property_setter import make_property_setter

# Change a field property on an existing DocType
make_property_setter("Sales Invoice", "customer", "reqd", 1, "Check")
make_property_setter("Sales Invoice", "posting_date", "default", "Today", "Text")
Full customization reference: references/customization.md

Data Masking (v16+)

Fields with mask=1 hide sensitive values from users without mask permission at the field's permlevel. The server replaces values with patterns like XXXXXXXX before sending to the client. Administrator ALWAYS sees unmasked values.

{ "fieldname": "phone", "fieldtype": "Data", "options": "Phone", "mask": 1, "permlevel": 1 }
Full masking reference: references/data-masking.md

Python Type Stubs

Frappe auto-generates type annotations in controller files via TypeExporter. Fields get DF.* types inside a TYPE_CHECKING guard:

if TYPE_CHECKING:
    from frappe.types import DF
    customer: DF.Link
    items: DF.Table[SalesInvoiceItem]
    status: DF.Literal["Draft", "Submitted", "Paid"]

NEVER modify code between # begin: auto-generated types and # end: auto-generated types.

Full type stubs reference: references/type-stubs.md

Critical Rules

  1. ALWAYS name DocTypes in singular form ("Sales Invoice", not "Sales Invoices").
  2. ALWAYS use the tab prefix mentally -- the DB table is tabSales Invoice.
  3. NEVER exceed 140 characters for Data/Link/Select field values.
  4. ALWAYS set search_index=1 on fields used in frequent filters or get_list calls.
  5. ALWAYS set in_standard_filter=1 on fields users frequently filter by.
  6. NEVER use allow_on_submit=1 on child table fields that affect calculations without recalculating totals.
  7. ALWAYS set fetch_if_empty=1 alongside fetch_from unless you want to overwrite user edits.
  8. NEVER define depends_on with raw Python -- use eval:doc.fieldname == "value" syntax.

See Also

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.87%
按下载量换算84

Claude

27.51%
按下载量换算61

Cursor

18.92%
按下载量换算42

Gemini CLI

8.78%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills