@adminforth/agent 1.24.13 → 1.24.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -83,7 +83,7 @@ export async function buildAgentSystemPrompt(adminforth: IAdminForth) {
83
83
  "The fetched skill response starts with 'Tools mentioned in this skill'. Read that list first.",
84
84
  "You can use get_resource immediately to inspect resource structure and column names.",
85
85
  "If the user wants to create, update, delete, or run actions on records, load mutate_data first.",
86
- "If the user wants to fetch records, load fetch_data first. If the user wants analytics or charts, load data-analytics first.",
86
+ "If the user wants to fetch records, load fetch_data first. If the user wants analytics or charts, load analyze_data first.",
87
87
  "Only call fetch_tool_schema for tool names that are explicitly mentioned in a fetched skill and are not already available as base tools.",
88
88
  "If a fetched skill lists a non-base tool you need, call fetch_tool_schema for it immediately instead of telling the user the tool is unavailable.",
89
89
  "For example: for record creation load mutate_data, read its tool list, call fetch_tool_schema for create_record, and then use create_record after confirmation.",
package/build.log CHANGED
@@ -31,12 +31,12 @@ custom/incremark_code_renderers/incremarkCodeHighlight.ts
31
31
  custom/incremark_code_renderers/incremarkRenderer.ts
32
32
  custom/incremark_code_renderers/renderIncremarkMarkdown.ts
33
33
  custom/skills/
34
- custom/skills/data-analytics/
35
- custom/skills/data-analytics/SKILL.md
34
+ custom/skills/analyze_data/
35
+ custom/skills/analyze_data/SKILL.md
36
36
  custom/skills/fetch_data/
37
37
  custom/skills/fetch_data/SKILL.md
38
38
  custom/skills/mutate_data/
39
39
  custom/skills/mutate_data/SKILL.md
40
40
 
41
- sent 202,025 bytes received 566 bytes 405,182.00 bytes/sec
42
- total size is 199,751 speedup is 0.99
41
+ sent 202,033 bytes received 566 bytes 405,198.00 bytes/sec
42
+ total size is 199,749 speedup is 0.99
@@ -1,4 +1,4 @@
1
- name: data-analytics
1
+ name: analyze_data
2
2
  description: Analyze AdminForth resource data, summarize trends, and create charts from fetched rows.
3
3
  ---
4
4
 
@@ -74,7 +74,7 @@ export function buildAgentSystemPrompt(adminforth) {
74
74
  "The fetched skill response starts with 'Tools mentioned in this skill'. Read that list first.",
75
75
  "You can use get_resource immediately to inspect resource structure and column names.",
76
76
  "If the user wants to create, update, delete, or run actions on records, load mutate_data first.",
77
- "If the user wants to fetch records, load fetch_data first. If the user wants analytics or charts, load data-analytics first.",
77
+ "If the user wants to fetch records, load fetch_data first. If the user wants analytics or charts, load analyze_data first.",
78
78
  "Only call fetch_tool_schema for tool names that are explicitly mentioned in a fetched skill and are not already available as base tools.",
79
79
  "If a fetched skill lists a non-base tool you need, call fetch_tool_schema for it immediately instead of telling the user the tool is unavailable.",
80
80
  "For example: for record creation load mutate_data, read its tool list, call fetch_tool_schema for create_record, and then use create_record after confirmation.",
@@ -1,4 +1,4 @@
1
- name: data-analytics
1
+ name: analyze_data
2
2
  description: Analyze AdminForth resource data, summarize trends, and create charts from fetched rows.
3
3
  ---
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminforth/agent",
3
- "version": "1.24.13",
3
+ "version": "1.24.14",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",