@aigne/example-afs-mcp-server 1.2.1-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 +7 -7
- package/index.test.ts +1 -1
- package/package.json +18 -10
package/README.md
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
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
|
|
|
@@ -63,7 +63,7 @@ Here's what happens when you ask to search for a repository:
|
|
|
63
63
|
🤖 AI: "I searched GitHub for 'aigne'. Results: 89 repositories found.
|
|
64
64
|
|
|
65
65
|
Notable matches:
|
|
66
|
-
• aigne-framework (
|
|
66
|
+
• aigne-framework (ArcBlock/aigne-framework) - ⭐ 150 stars
|
|
67
67
|
• aigne-examples (user/aigne-examples) - ⭐ 12 stars
|
|
68
68
|
...
|
|
69
69
|
|
|
@@ -77,7 +77,7 @@ Here's what happens when you ask to search for a repository:
|
|
|
77
77
|
### Clone the Repository
|
|
78
78
|
|
|
79
79
|
```bash
|
|
80
|
-
git clone https://github.com/
|
|
80
|
+
git clone https://github.com/ArcBlock/aigne-framework
|
|
81
81
|
```
|
|
82
82
|
|
|
83
83
|
### Install Dependencies
|
|
@@ -171,10 +171,10 @@ const agent = AIAgent.from({
|
|
|
171
171
|
npx -y @aigne/example-afs-mcp-server --input "Search for a repo named aigne"
|
|
172
172
|
|
|
173
173
|
# Get repository information
|
|
174
|
-
npx -y @aigne/example-afs-mcp-server --input "Tell me about the
|
|
174
|
+
npx -y @aigne/example-afs-mcp-server --input "Tell me about the ArcBlock/aigne-framework repository"
|
|
175
175
|
|
|
176
176
|
# Check recent issues
|
|
177
|
-
npx -y @aigne/example-afs-mcp-server --input "What are the recent open issues in
|
|
177
|
+
npx -y @aigne/example-afs-mcp-server --input "What are the recent open issues in ArcBlock/aigne-framework?"
|
|
178
178
|
|
|
179
179
|
# Interactive mode - ask follow-up questions naturally
|
|
180
180
|
npx -y @aigne/example-afs-mcp-server --interactive
|
package/index.test.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,14 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/example-afs-mcp-server",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.74.0-beta",
|
|
4
4
|
"description": "A demonstration of using AIGNE Framework with AFS mount a MCP server",
|
|
5
|
-
"author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
|
|
6
|
-
"homepage": "https://github.com/AIGNE-io/aigne-framework/tree/main/examples/afs-mcp-server",
|
|
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
|
},
|
|
18
|
+
"type": "module",
|
|
12
19
|
"bin": "index.ts",
|
|
13
20
|
"files": [
|
|
14
21
|
".env.local.example",
|
|
@@ -16,16 +23,17 @@
|
|
|
16
23
|
"README.md"
|
|
17
24
|
],
|
|
18
25
|
"dependencies": {
|
|
26
|
+
"@aigne/afs": "^1.11.0-beta.1",
|
|
27
|
+
"@aigne/afs-local-fs": "1.11.0-beta",
|
|
19
28
|
"yargs": "^18.0.0",
|
|
20
|
-
"@aigne/afs": "^1.
|
|
21
|
-
"@aigne/
|
|
22
|
-
"@aigne/
|
|
23
|
-
"@aigne/cli": "^1.59.1-beta",
|
|
24
|
-
"@aigne/core": "^1.72.0"
|
|
29
|
+
"@aigne/afs-history": "^1.74.0-beta",
|
|
30
|
+
"@aigne/cli": "^1.74.0-beta",
|
|
31
|
+
"@aigne/core": "^1.74.0-beta"
|
|
25
32
|
},
|
|
26
33
|
"devDependencies": {
|
|
27
34
|
"@types/bun": "^1.2.22",
|
|
28
|
-
"@aigne/
|
|
35
|
+
"@aigne/typescript-config": "0.0.0",
|
|
36
|
+
"@aigne/utils": "^1.74.0-beta"
|
|
29
37
|
},
|
|
30
38
|
"scripts": {
|
|
31
39
|
"start": "bun run index.ts",
|