@aigne/example-agent-skill 1.0.2-beta → 1.74.0-beta
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.
- package/README.md +5 -5
- package/package.json +12 -6
- package/CHANGELOG.md +0 -188
package/README.md
CHANGED
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
4
|
<picture>
|
|
5
|
-
<source srcset="https://raw.githubusercontent.com/
|
|
6
|
-
<source srcset="https://raw.githubusercontent.com/
|
|
7
|
-
<img src="https://raw.githubusercontent.com/
|
|
5
|
+
<source srcset="https://raw.githubusercontent.com/ArcBlock/aigne-framework/main/logo-dark.svg" media="(prefers-color-scheme: dark)">
|
|
6
|
+
<source srcset="https://raw.githubusercontent.com/ArcBlock/aigne-framework/main/logo.svg" media="(prefers-color-scheme: light)">
|
|
7
|
+
<img src="https://raw.githubusercontent.com/ArcBlock/aigne-framework/main/logo.svg" alt="AIGNE Logo" width="400" />
|
|
8
8
|
</picture>
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
|
-
This example demonstrates how to create an AI agent with **custom Agent Skills** using the [AIGNE Framework](https://github.com/
|
|
11
|
+
This example demonstrates how to create an AI agent with **custom Agent Skills** using the [AIGNE Framework](https://github.com/ArcBlock/aigne-framework). Agent Skills are specialized capabilities that extend your agent's functionality, allowing it to perform specific tasks like writing assistance, code review, file organization, and more.
|
|
12
12
|
|
|
13
13
|
This example includes:
|
|
14
14
|
- **Custom Agent Skill**: A built-in Writing Helper for composing and improving text
|
|
@@ -113,7 +113,7 @@ View a list of recent executions.
|
|
|
113
113
|
### Clone the Repository
|
|
114
114
|
|
|
115
115
|
```bash
|
|
116
|
-
git clone https://github.com/
|
|
116
|
+
git clone https://github.com/ArcBlock/aigne-framework
|
|
117
117
|
```
|
|
118
118
|
|
|
119
119
|
### Install Dependencies
|
package/package.json
CHANGED
|
@@ -1,22 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/example-agent-skill",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.74.0-beta",
|
|
4
4
|
"description": "A demonstration of using AIGNE Framework to run an agent with custom skills",
|
|
5
|
-
"author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
|
|
6
|
-
"homepage": "https://github.com/AIGNE-io/aigne-framework/tree/main/examples/agent-skill",
|
|
7
5
|
"license": "MIT",
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"access": "public"
|
|
8
|
+
},
|
|
9
|
+
"author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
|
|
10
|
+
"homepage": "https://www.aigne.io/framework",
|
|
8
11
|
"repository": {
|
|
9
12
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
13
|
+
"url": "git+https://github.com/ArcBlock/aigne-framework"
|
|
14
|
+
},
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/ArcBlock/aigne-framework/issues"
|
|
11
17
|
},
|
|
12
18
|
"type": "module",
|
|
13
19
|
"bin": "aigne.yaml",
|
|
14
20
|
"dependencies": {
|
|
15
|
-
"@aigne/cli": "^1.
|
|
21
|
+
"@aigne/cli": "^1.74.0-beta"
|
|
16
22
|
},
|
|
17
23
|
"scripts": {
|
|
18
24
|
"start": "aigne run",
|
|
19
|
-
"test": "
|
|
25
|
+
"test": "exit 0",
|
|
20
26
|
"test:llm": "exit 0"
|
|
21
27
|
}
|
|
22
28
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,188 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## [1.0.2-beta](https://github.com/AIGNE-io/aigne-framework/compare/example-agent-skill-v1.0.1...example-agent-skill-v1.0.2-beta) (2026-01-17)
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
### Dependencies
|
|
7
|
-
|
|
8
|
-
* The following workspace dependencies were updated
|
|
9
|
-
* dependencies
|
|
10
|
-
* @aigne/cli bumped to 1.59.1-beta
|
|
11
|
-
|
|
12
|
-
## [1.0.1](https://github.com/AIGNE-io/aigne-framework/compare/example-agent-skill-v1.0.1-beta.15...example-agent-skill-v1.0.1) (2026-01-16)
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
### Dependencies
|
|
16
|
-
|
|
17
|
-
* The following workspace dependencies were updated
|
|
18
|
-
* dependencies
|
|
19
|
-
* @aigne/cli bumped to 1.59.0
|
|
20
|
-
|
|
21
|
-
## [1.0.1-beta.15](https://github.com/AIGNE-io/aigne-framework/compare/example-agent-skill-v1.0.1-beta.14...example-agent-skill-v1.0.1-beta.15) (2026-01-16)
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
### Bug Fixes
|
|
25
|
-
|
|
26
|
-
* **afs:** support `~` in the local path for local-fs & add agent-skill example ([#877](https://github.com/AIGNE-io/aigne-framework/issues/877)) ([c86293f](https://github.com/AIGNE-io/aigne-framework/commit/c86293f3d70447974395d02e238305a42b256b66))
|
|
27
|
-
* bump version ([696560f](https://github.com/AIGNE-io/aigne-framework/commit/696560fa2673eddcb4d00ac0523fbbbde7273cb3))
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
### Dependencies
|
|
31
|
-
|
|
32
|
-
* The following workspace dependencies were updated
|
|
33
|
-
* dependencies
|
|
34
|
-
* @aigne/cli bumped to 1.59.0-beta.31
|
|
35
|
-
|
|
36
|
-
## [1.0.1-beta.14](https://github.com/AIGNE-io/aigne-framework/compare/example-agent-skill-v1.0.1-beta.13...example-agent-skill-v1.0.1-beta.14) (2026-01-16)
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
### Dependencies
|
|
40
|
-
|
|
41
|
-
* The following workspace dependencies were updated
|
|
42
|
-
* dependencies
|
|
43
|
-
* @aigne/cli bumped to 1.59.0-beta.30
|
|
44
|
-
|
|
45
|
-
## [1.0.1-beta.13](https://github.com/AIGNE-io/aigne-framework/compare/example-agent-skill-v1.0.1-beta.12...example-agent-skill-v1.0.1-beta.13) (2026-01-15)
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
### Dependencies
|
|
49
|
-
|
|
50
|
-
* The following workspace dependencies were updated
|
|
51
|
-
* dependencies
|
|
52
|
-
* @aigne/cli bumped to 1.59.0-beta.29
|
|
53
|
-
|
|
54
|
-
## [1.0.1-beta.12](https://github.com/AIGNE-io/aigne-framework/compare/example-agent-skill-v1.0.1-beta.11...example-agent-skill-v1.0.1-beta.12) (2026-01-15)
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
### Dependencies
|
|
58
|
-
|
|
59
|
-
* The following workspace dependencies were updated
|
|
60
|
-
* dependencies
|
|
61
|
-
* @aigne/cli bumped to 1.59.0-beta.28
|
|
62
|
-
|
|
63
|
-
## [1.0.1-beta.11](https://github.com/AIGNE-io/aigne-framework/compare/example-agent-skill-v1.0.1-beta.10...example-agent-skill-v1.0.1-beta.11) (2026-01-15)
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
### Dependencies
|
|
67
|
-
|
|
68
|
-
* The following workspace dependencies were updated
|
|
69
|
-
* dependencies
|
|
70
|
-
* @aigne/cli bumped to 1.59.0-beta.27
|
|
71
|
-
|
|
72
|
-
## [1.0.1-beta.10](https://github.com/AIGNE-io/aigne-framework/compare/example-agent-skill-v1.0.1-beta.9...example-agent-skill-v1.0.1-beta.10) (2026-01-15)
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
### Dependencies
|
|
76
|
-
|
|
77
|
-
* The following workspace dependencies were updated
|
|
78
|
-
* dependencies
|
|
79
|
-
* @aigne/cli bumped to 1.59.0-beta.26
|
|
80
|
-
|
|
81
|
-
## [1.0.1-beta.9](https://github.com/AIGNE-io/aigne-framework/compare/example-agent-skill-v1.0.1-beta.8...example-agent-skill-v1.0.1-beta.9) (2026-01-14)
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
### Dependencies
|
|
85
|
-
|
|
86
|
-
* The following workspace dependencies were updated
|
|
87
|
-
* dependencies
|
|
88
|
-
* @aigne/cli bumped to 1.59.0-beta.25
|
|
89
|
-
|
|
90
|
-
## [1.0.1-beta.8](https://github.com/AIGNE-io/aigne-framework/compare/example-agent-skill-v1.0.1-beta.7...example-agent-skill-v1.0.1-beta.8) (2026-01-13)
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
### Dependencies
|
|
94
|
-
|
|
95
|
-
* The following workspace dependencies were updated
|
|
96
|
-
* dependencies
|
|
97
|
-
* @aigne/cli bumped to 1.59.0-beta.24
|
|
98
|
-
|
|
99
|
-
## [1.0.1-beta.7](https://github.com/AIGNE-io/aigne-framework/compare/example-agent-skill-v1.0.1-beta.6...example-agent-skill-v1.0.1-beta.7) (2026-01-13)
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
### Dependencies
|
|
103
|
-
|
|
104
|
-
* The following workspace dependencies were updated
|
|
105
|
-
* dependencies
|
|
106
|
-
* @aigne/cli bumped to 1.59.0-beta.23
|
|
107
|
-
|
|
108
|
-
## [1.0.1-beta.6](https://github.com/AIGNE-io/aigne-framework/compare/example-agent-skill-v1.0.1-beta.5...example-agent-skill-v1.0.1-beta.6) (2026-01-12)
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
### Dependencies
|
|
112
|
-
|
|
113
|
-
* The following workspace dependencies were updated
|
|
114
|
-
* dependencies
|
|
115
|
-
* @aigne/cli bumped to 1.59.0-beta.22
|
|
116
|
-
|
|
117
|
-
## [1.0.1-beta.5](https://github.com/AIGNE-io/aigne-framework/compare/example-agent-skill-v1.0.1-beta.4...example-agent-skill-v1.0.1-beta.5) (2026-01-12)
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
### Dependencies
|
|
121
|
-
|
|
122
|
-
* The following workspace dependencies were updated
|
|
123
|
-
* dependencies
|
|
124
|
-
* @aigne/cli bumped to 1.59.0-beta.21
|
|
125
|
-
|
|
126
|
-
## [1.0.1-beta.4](https://github.com/AIGNE-io/aigne-framework/compare/example-agent-skill-v1.0.1-beta.3...example-agent-skill-v1.0.1-beta.4) (2026-01-10)
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
### Dependencies
|
|
130
|
-
|
|
131
|
-
* The following workspace dependencies were updated
|
|
132
|
-
* dependencies
|
|
133
|
-
* @aigne/cli bumped to 1.59.0-beta.20
|
|
134
|
-
|
|
135
|
-
## [1.0.1-beta.3](https://github.com/AIGNE-io/aigne-framework/compare/example-agent-skill-v1.0.1-beta.2...example-agent-skill-v1.0.1-beta.3) (2026-01-09)
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
### Dependencies
|
|
139
|
-
|
|
140
|
-
* The following workspace dependencies were updated
|
|
141
|
-
* dependencies
|
|
142
|
-
* @aigne/cli bumped to 1.59.0-beta.19
|
|
143
|
-
|
|
144
|
-
## [1.0.1-beta.2](https://github.com/AIGNE-io/aigne-framework/compare/example-agent-skill-v1.0.1-beta.1...example-agent-skill-v1.0.1-beta.2) (2026-01-08)
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
### Dependencies
|
|
148
|
-
|
|
149
|
-
* The following workspace dependencies were updated
|
|
150
|
-
* dependencies
|
|
151
|
-
* @aigne/cli bumped to 1.59.0-beta.18
|
|
152
|
-
|
|
153
|
-
## [1.0.1-beta.1](https://github.com/AIGNE-io/aigne-framework/compare/example-agent-skill-v1.0.1-beta...example-agent-skill-v1.0.1-beta.1) (2026-01-08)
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
### Bug Fixes
|
|
157
|
-
|
|
158
|
-
* bump version ([696560f](https://github.com/AIGNE-io/aigne-framework/commit/696560fa2673eddcb4d00ac0523fbbbde7273cb3))
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
### Dependencies
|
|
162
|
-
|
|
163
|
-
* The following workspace dependencies were updated
|
|
164
|
-
* dependencies
|
|
165
|
-
* @aigne/cli bumped to 1.59.0-beta.17
|
|
166
|
-
|
|
167
|
-
## [1.0.1-beta](https://github.com/AIGNE-io/aigne-framework/compare/example-agent-skill-v1.0.0...example-agent-skill-v1.0.1-beta) (2026-01-07)
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
### Dependencies
|
|
171
|
-
|
|
172
|
-
* The following workspace dependencies were updated
|
|
173
|
-
* dependencies
|
|
174
|
-
* @aigne/cli bumped to 1.59.0-beta.16
|
|
175
|
-
|
|
176
|
-
## 1.0.0 (2026-01-07)
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
### Bug Fixes
|
|
180
|
-
|
|
181
|
-
* **afs:** support `~` in the local path for local-fs & add agent-skill example ([#877](https://github.com/AIGNE-io/aigne-framework/issues/877)) ([c86293f](https://github.com/AIGNE-io/aigne-framework/commit/c86293f3d70447974395d02e238305a42b256b66))
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
### Dependencies
|
|
185
|
-
|
|
186
|
-
* The following workspace dependencies were updated
|
|
187
|
-
* dependencies
|
|
188
|
-
* @aigne/cli bumped to 1.59.0-beta.15
|