Skip to content

Commit da416f7

Browse files
ivictborCopilot
andcommitted
docs: update agent plugin tutorial with bundled skills and descriptions
feat: modify package.json to enhance project description and author information Co-authored-by: Copilot <copilot@github.com>
1 parent 97fbb44 commit da416f7

2 files changed

Lines changed: 27 additions & 2 deletions

File tree

adminforth/documentation/docs/tutorial/08-Plugins/01-agent.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -470,6 +470,14 @@ This way allows to extend your agent with literally any custom instructions and
470470

471471
## Standard skills
472472

473+
The plugin ships with bundled skills from `plugins/adminforth-agent/custom/skills/`. These are available out of the box and can be combined with your own custom skills.
474+
475+
| Folder | Skill name | Description |
476+
| --- | --- | --- |
477+
| `analyze_data` | `analyze_data` | Analyze AdminForth resource data, summarize trends, and create charts from fetched rows. Prefer server-side aggregation when possible and return Vega-Lite specs for charts. |
478+
| `fetch_data` | `fetch_data` | Fetch one or more exact records with filters after inspecting the resource schema. This skill is for finding rows, not for aggregations. |
479+
| `mutate_data` | `mutate_data` | Create, update, delete, or run actions on records. Before any mutation it must show the exact target row and ask the user for confirmation. |
480+
473481

474482
## Persistent checkpointer
475483

adminforth/package.json

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,24 @@
11
{
22
"name": "adminforth",
33
"version": "1.6.2",
4-
"description": "OpenSource Vue3 powered forth-generation admin panel",
4+
"description": "OpenSource Agent-Native forth-generation admin panel",
5+
"keywords": [
6+
"adminforth",
7+
"agent",
8+
"ai-agent",
9+
"skill.md",
10+
"tool-calling",
11+
"agent-native",
12+
"ai-native",
13+
"ai-first",
14+
"admin-panel",
15+
"backoffice",
16+
"crud",
17+
"nodejs",
18+
"typescript",
19+
"vue",
20+
"tailwind"
21+
],
522
"main": "dist/index.js",
623
"module": "dist/index.js",
724
"types": "dist/index.d.ts",
@@ -63,7 +80,7 @@
6380
"require": "./dist/index.js"
6481
}
6582
},
66-
"author": "devforth.io",
83+
"author": "DevForth (https://devforth.io)",
6784
"license": "MIT",
6885
"type": "module",
6986
"dependencies": {

0 commit comments

Comments
 (0)