You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All skills document version-specific behavior for:
44
+
76
45
-**Frappe/ERPNext v14** ✅
77
46
-**Frappe/ERPNext v15** ✅
78
47
-**Frappe/ERPNext v16** ✅
@@ -81,41 +50,41 @@ Version-specific differences are documented within each skill.
81
50
82
51
## How Skills Work
83
52
84
-
When you start a conversation, Claude loads only the skill names and descriptions (~100 tokens per skill). When your request matches a skill's description, Claude loads the full instructions. This "progressive disclosure" means you can have all 28 skills available without context bloat.
53
+
When you start a conversation, the agent loads only skill names and descriptions. When your request matches a skill description, it loads the full instructions. This progressive disclosure keeps the 61-skill package usable without loading every full skill into context.
85
54
86
55
### Triggering Skills
87
56
88
57
Skills activate automatically based on your request:
89
58
90
-
```
59
+
```text
91
60
You: "Help me create a Server Script that validates Sales Orders"
92
-
Claude: [Loads syntax-server-scripts and impl-server-scripts automatically]
61
+
Agent: [Loads frappe-syntax-serverscripts and frappe-impl-serverscripts when relevant]
93
62
```
94
63
95
64
You can also reference skills explicitly:
96
65
97
-
```
98
-
You: "Using the server-scripts skill, show me the sandbox limitations"
66
+
```text
67
+
You: "Using frappe-syntax-serverscripts, show me the sandbox limitations"
99
68
```
100
69
101
70
### Checking Available Skills
102
71
103
-
Ask Claude:
104
-
```
105
-
You: "What ERPNext skills do you have access to?"
72
+
Ask your agent:
73
+
74
+
```text
75
+
What Frappe skills do you have access to?
106
76
```
107
77
108
78
## Global Installation (Claude Code CLI)
109
79
110
-
Copy all skills to your global skills directory so they're available in every project:
80
+
Copy all skill folders to your global skills directory so they're available in every project:
111
81
112
82
```bash
113
-
cp -r skills/source/*~/.claude/skills/
83
+
mkdir -p ~/.claude/skills
84
+
cp -R skills/source/*/*~/.claude/skills/
114
85
```
115
86
116
-
The skills use progressive disclosure: at startup Claude only loads the name and description (~100 tokens per skill). Full instructions are loaded only when a skill is relevant to your request.
117
-
118
-
28 skills x ~100 tokens = ~2,800 tokens startup overhead. This is negligible on a 200k token context window.
87
+
The skills use progressive disclosure: at startup the agent only loads each name and description. Full instructions are loaded only when a skill is relevant to your request.
119
88
120
89
## Critical: Server Script Sandbox
121
90
@@ -137,9 +106,9 @@ This is the #1 cause of AI-generated ERPNext code failures. All skills in this p
0 commit comments