@aigne/example-mcp-github 1.17.7-beta.1 → 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 CHANGED
@@ -2,13 +2,13 @@
2
2
 
3
3
  <p align="center">
4
4
  <picture>
5
- <source srcset="https://raw.githubusercontent.com/AIGNE-io/aigne-framework/main/logo-dark.svg" media="(prefers-color-scheme: dark)">
6
- <source srcset="https://raw.githubusercontent.com/AIGNE-io/aigne-framework/main/logo.svg" media="(prefers-color-scheme: light)">
7
- <img src="https://raw.githubusercontent.com/AIGNE-io/aigne-framework/main/logo.svg" alt="AIGNE Logo" width="400" />
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 is a demonstration of using [AIGNE Framework](https://github.com/AIGNE-io/aigne-framework) and [GitHub MCP Server](https://github.com/modelcontextprotocol/servers-archived/tree/main/src/github) to interact with GitHub repositories. The example now supports both one-shot and interactive chat modes, along with customizable model settings and pipeline input/output.
11
+ This is a demonstration of using [AIGNE Framework](https://github.com/ArcBlock/aigne-framework) and [GitHub MCP Server](https://github.com/modelcontextprotocol/servers-archived/tree/main/src/github) to interact with GitHub repositories. The example now supports both one-shot and interactive chat modes, along with customizable model settings and pipeline input/output.
12
12
 
13
13
  ```mermaid
14
14
  flowchart LR
@@ -135,7 +135,7 @@ View a list of recent executions.
135
135
  ### Clone the Repository
136
136
 
137
137
  ```bash
138
- git clone https://github.com/AIGNE-io/aigne-framework
138
+ git clone https://github.com/ArcBlock/aigne-framework
139
139
  ```
140
140
 
141
141
  ### Install Dependencies
package/index.test.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { expect, test } from "bun:test";
2
- import { runExampleTest } from "@aigne/test-utils/run-example-test.js";
2
+ import { runExampleTest } from "@aigne/utils/test-utils/run-example-test";
3
3
 
4
4
  test(
5
5
  "should successfully run the mcp-github",
package/package.json CHANGED
@@ -1,14 +1,21 @@
1
1
  {
2
2
  "name": "@aigne/example-mcp-github",
3
- "version": "1.17.7-beta.1",
3
+ "version": "1.74.0-beta.1",
4
4
  "description": "A demonstration of using AIGNE Framework and GitHub MCP Server to interact with GitHub repositories",
5
- "author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
6
- "homepage": "https://github.com/AIGNE-io/aigne-framework/tree/main/examples/mcp-github",
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/AIGNE-io/aigne-framework"
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,15 +23,16 @@
16
23
  "README.md"
17
24
  ],
18
25
  "dependencies": {
19
- "@aigne/agent-library": "^1.24.1-beta",
20
- "@aigne/cli": "^1.60.0-beta",
21
- "@aigne/core": "^1.73.0-beta",
22
26
  "@aigne/default-memory": "^1.4.1-beta",
23
- "@aigne/openai": "^0.16.17-beta"
27
+ "@aigne/agent-library": "^1.74.0-beta.1",
28
+ "@aigne/cli": "^1.74.0-beta.1",
29
+ "@aigne/core": "^1.74.0-beta.1",
30
+ "@aigne/openai": "^1.74.0-beta.1"
24
31
  },
25
32
  "devDependencies": {
26
33
  "@types/bun": "^1.2.22",
27
- "@aigne/test-utils": "^0.5.70-beta"
34
+ "@aigne/typescript-config": "0.0.0",
35
+ "@aigne/utils": "^1.74.0-beta.1"
28
36
  },
29
37
  "scripts": {
30
38
  "start": "bun run index.ts",