@elizaos/plugin-github 2.0.3-beta.2 → 2.0.3-beta.4
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/package.json +5 -4
- package/registry-entry.json +93 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-github",
|
|
3
|
-
"version": "2.0.3-beta.
|
|
3
|
+
"version": "2.0.3-beta.4",
|
|
4
4
|
"description": "GitHub integration plugin for elizaOS agents — PRs, issues, notifications via the GitHub REST API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"files": [
|
|
32
|
+
"registry-entry.json",
|
|
32
33
|
"dist"
|
|
33
34
|
],
|
|
34
35
|
"scripts": {
|
|
@@ -38,11 +39,11 @@
|
|
|
38
39
|
"clean": "rm -rf dist .turbo"
|
|
39
40
|
},
|
|
40
41
|
"dependencies": {
|
|
41
|
-
"@elizaos/core": "2.0.3-beta.
|
|
42
|
+
"@elizaos/core": "2.0.3-beta.4",
|
|
42
43
|
"@octokit/rest": "^22.0.0"
|
|
43
44
|
},
|
|
44
45
|
"peerDependencies": {
|
|
45
|
-
"@elizaos/core": "2.0.3-beta.
|
|
46
|
+
"@elizaos/core": "2.0.3-beta.4"
|
|
46
47
|
},
|
|
47
48
|
"devDependencies": {
|
|
48
49
|
"@types/node": "24.12.2",
|
|
@@ -53,5 +54,5 @@
|
|
|
53
54
|
"publishConfig": {
|
|
54
55
|
"access": "public"
|
|
55
56
|
},
|
|
56
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "f76f55793a0fb8d6b869dd8ddce03970de061e34"
|
|
57
58
|
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "github",
|
|
3
|
+
"name": "Github",
|
|
4
|
+
"description": "Comprehensive GitHub integration plugin for ElizaOS with repository management, issue tracking, and PR workflows",
|
|
5
|
+
"npmName": "@elizaos/plugin-github",
|
|
6
|
+
"version": "2.0.0-beta.0",
|
|
7
|
+
"source": "bundled",
|
|
8
|
+
"tags": ["github"],
|
|
9
|
+
"config": {
|
|
10
|
+
"GITHUB_REPO": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"required": false,
|
|
13
|
+
"sensitive": false,
|
|
14
|
+
"label": "Repo",
|
|
15
|
+
"help": "Default GitHub repository name",
|
|
16
|
+
"advanced": false
|
|
17
|
+
},
|
|
18
|
+
"GITHUB_OWNER": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"required": false,
|
|
21
|
+
"sensitive": false,
|
|
22
|
+
"label": "Owner",
|
|
23
|
+
"help": "Default GitHub repository owner (username or organization)",
|
|
24
|
+
"advanced": false
|
|
25
|
+
},
|
|
26
|
+
"GITHUB_APP_ID": {
|
|
27
|
+
"type": "string",
|
|
28
|
+
"required": false,
|
|
29
|
+
"sensitive": false,
|
|
30
|
+
"label": "App Id",
|
|
31
|
+
"help": "GitHub App ID for app-based authentication",
|
|
32
|
+
"advanced": false
|
|
33
|
+
},
|
|
34
|
+
"GITHUB_BRANCH": {
|
|
35
|
+
"type": "string",
|
|
36
|
+
"required": false,
|
|
37
|
+
"sensitive": false,
|
|
38
|
+
"default": "main",
|
|
39
|
+
"label": "Branch",
|
|
40
|
+
"help": "Default branch name (defaults to main)",
|
|
41
|
+
"advanced": false
|
|
42
|
+
},
|
|
43
|
+
"GITHUB_API_TOKEN": {
|
|
44
|
+
"type": "secret",
|
|
45
|
+
"required": true,
|
|
46
|
+
"sensitive": true,
|
|
47
|
+
"label": "Api Token",
|
|
48
|
+
"help": "GitHub personal access token for API authentication",
|
|
49
|
+
"advanced": false
|
|
50
|
+
},
|
|
51
|
+
"GITHUB_WEBHOOK_SECRET": {
|
|
52
|
+
"type": "secret",
|
|
53
|
+
"required": false,
|
|
54
|
+
"sensitive": true,
|
|
55
|
+
"label": "Webhook Secret",
|
|
56
|
+
"help": "Secret for validating GitHub webhook payloads",
|
|
57
|
+
"advanced": false
|
|
58
|
+
},
|
|
59
|
+
"GITHUB_APP_PRIVATE_KEY": {
|
|
60
|
+
"type": "secret",
|
|
61
|
+
"required": false,
|
|
62
|
+
"sensitive": true,
|
|
63
|
+
"label": "App Private Key",
|
|
64
|
+
"help": "GitHub App private key for app-based authentication",
|
|
65
|
+
"advanced": false
|
|
66
|
+
},
|
|
67
|
+
"GITHUB_INSTALLATION_ID": {
|
|
68
|
+
"type": "string",
|
|
69
|
+
"required": false,
|
|
70
|
+
"sensitive": false,
|
|
71
|
+
"label": "Installation Id",
|
|
72
|
+
"help": "GitHub App installation ID",
|
|
73
|
+
"advanced": false
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"render": {
|
|
77
|
+
"visible": true,
|
|
78
|
+
"pinTo": [],
|
|
79
|
+
"style": "card",
|
|
80
|
+
"icon": "GitBranch",
|
|
81
|
+
"group": "devtools",
|
|
82
|
+
"groupOrder": 5,
|
|
83
|
+
"actions": ["enable", "configure"]
|
|
84
|
+
},
|
|
85
|
+
"resources": {
|
|
86
|
+
"homepage": "https://github.com/elizaos-plugins/plugin-github#readme",
|
|
87
|
+
"repository": "https://github.com/elizaos-plugins/plugin-github",
|
|
88
|
+
"setupGuideUrl": "https://docs.eliza.ai/plugin-setup-guide#github"
|
|
89
|
+
},
|
|
90
|
+
"dependsOn": [],
|
|
91
|
+
"kind": "plugin",
|
|
92
|
+
"subtype": "devtools"
|
|
93
|
+
}
|