@aigne/example-afs-git 1.2.0-beta → 1.74.0-beta.1
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/index.test.ts +1 -1
- package/package.json +18 -10
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 a chatbot that can interact with Git repositories using the [AIGNE Framework](https://github.com/
|
|
11
|
+
This example demonstrates how to create a chatbot that can interact with Git repositories using the [AIGNE Framework](https://github.com/ArcBlock/aigne-framework) and [AIGNE CLI](https://github.com/ArcBlock/aigne-framework/blob/main/packages/cli/README.md). The example utilizes the `AFSGit` module to provide Git repository access to AI agents through the **AIGNE File System (AFS)** interface.
|
|
12
12
|
|
|
13
13
|
**AIGNE File System (AFS)** is a virtual file system abstraction that provides AI agents with unified access to various storage backends. For comprehensive documentation, see [AFS Documentation](../../afs/README.md).
|
|
14
14
|
|
|
@@ -125,7 +125,7 @@ The `aigne observe` command starts a local web server to monitor and analyze age
|
|
|
125
125
|
### Clone the Repository
|
|
126
126
|
|
|
127
127
|
```bash
|
|
128
|
-
git clone https://github.com/
|
|
128
|
+
git clone https://github.com/ArcBlock/aigne-framework
|
|
129
129
|
```
|
|
130
130
|
|
|
131
131
|
### Install Dependencies
|
package/index.test.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,14 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/example-afs-git",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.74.0-beta.1",
|
|
4
4
|
"description": "A demonstration of using AIGNE Framework with AFS git module",
|
|
5
|
-
"author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
|
|
6
|
-
"homepage": "https://github.com/AIGNE-io/aigne-framework/tree/main/examples/afs-git",
|
|
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-git": "^1.11.0-beta.1",
|
|
19
28
|
"yargs": "^18.0.0",
|
|
20
|
-
"@aigne/afs": "^1.
|
|
21
|
-
"@aigne/
|
|
22
|
-
"@aigne/
|
|
23
|
-
"@aigne/core": "^1.73.0-beta",
|
|
24
|
-
"@aigne/cli": "^1.60.0-beta"
|
|
29
|
+
"@aigne/afs-history": "^1.74.0-beta.1",
|
|
30
|
+
"@aigne/cli": "^1.74.0-beta.1",
|
|
31
|
+
"@aigne/core": "^1.74.0-beta.1"
|
|
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.1"
|
|
29
37
|
},
|
|
30
38
|
"scripts": {
|
|
31
39
|
"start": "bun run index.ts",
|