@kb-labs/github-entry 2.103.0 → 2.105.0
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/dist/manifest.json +68 -0
- package/package.json +16 -16
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "kb.plugin/3",
|
|
3
|
+
"id": "@kb-labs/github",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"display": {
|
|
6
|
+
"name": "GitHub",
|
|
7
|
+
"description": "GitHub integration for issues, PRs, and branches",
|
|
8
|
+
"tags": [
|
|
9
|
+
"github",
|
|
10
|
+
"integration",
|
|
11
|
+
"workflow"
|
|
12
|
+
]
|
|
13
|
+
},
|
|
14
|
+
"platform": {
|
|
15
|
+
"requires": [],
|
|
16
|
+
"optional": []
|
|
17
|
+
},
|
|
18
|
+
"workflows": {
|
|
19
|
+
"handlers": [
|
|
20
|
+
{
|
|
21
|
+
"id": "fetch-issue",
|
|
22
|
+
"handler": "./dist/handlers/fetch-issue.js#default",
|
|
23
|
+
"describe": "Fetch a GitHub issue by number"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"id": "post-comment",
|
|
27
|
+
"handler": "./dist/handlers/post-comment.js#default",
|
|
28
|
+
"describe": "Post a comment on a GitHub issue or PR"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "create-branch",
|
|
32
|
+
"handler": "./dist/handlers/create-branch.js#default",
|
|
33
|
+
"describe": "Create a new branch from a base branch"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": "create-pr",
|
|
37
|
+
"handler": "./dist/handlers/create-pr.js#default",
|
|
38
|
+
"describe": "Create a pull request and optionally link it to an issue"
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
"permissions": {
|
|
43
|
+
"fs": {
|
|
44
|
+
"read": [
|
|
45
|
+
".kb/**"
|
|
46
|
+
],
|
|
47
|
+
"write": [
|
|
48
|
+
".kb/**"
|
|
49
|
+
]
|
|
50
|
+
},
|
|
51
|
+
"env": {
|
|
52
|
+
"read": [
|
|
53
|
+
"HOME",
|
|
54
|
+
"USER",
|
|
55
|
+
"PATH",
|
|
56
|
+
"TMPDIR",
|
|
57
|
+
"NODE_ENV",
|
|
58
|
+
"KB_*",
|
|
59
|
+
"GITHUB_WORKFLOW_TOKEN"
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
"network": {
|
|
63
|
+
"fetch": [
|
|
64
|
+
"https://api.github.com/*"
|
|
65
|
+
]
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kb-labs/github-entry",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.105.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Manifest and workflow handlers for the GitHub plugin",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -22,30 +22,30 @@
|
|
|
22
22
|
"dist"
|
|
23
23
|
],
|
|
24
24
|
"sideEffects": false,
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "tsup --config tsup.config.ts",
|
|
27
|
+
"clean": "rimraf dist",
|
|
28
|
+
"dev": "tsup --config tsup.config.ts --watch",
|
|
29
|
+
"lint": "eslint src --ext .ts",
|
|
30
|
+
"lint:fix": "eslint . --fix",
|
|
31
|
+
"type-check": "tsc --noEmit",
|
|
32
|
+
"test": "vitest run --passWithNoTests",
|
|
33
|
+
"test:cli": "vitest run --config vitest.cli.config.ts --passWithNoTests"
|
|
34
|
+
},
|
|
25
35
|
"dependencies": {
|
|
26
|
-
"@kb-labs/
|
|
27
|
-
"@kb-labs/
|
|
36
|
+
"@kb-labs/github-contracts": "^2.105.0",
|
|
37
|
+
"@kb-labs/sdk": "workspace:*"
|
|
28
38
|
},
|
|
29
39
|
"devDependencies": {
|
|
40
|
+
"@kb-labs/devkit": "workspace:*",
|
|
30
41
|
"@types/node": "^24.3.3",
|
|
31
42
|
"rimraf": "^6.0.1",
|
|
32
43
|
"tsup": "^8.5.0",
|
|
33
44
|
"typescript": "^5.6.3",
|
|
34
|
-
"vitest": "^3.2.6"
|
|
35
|
-
"@kb-labs/devkit": "2.103.0"
|
|
45
|
+
"vitest": "^3.2.6"
|
|
36
46
|
},
|
|
37
47
|
"engines": {
|
|
38
48
|
"node": ">=20.0.0",
|
|
39
49
|
"pnpm": ">=9.0.0"
|
|
40
|
-
},
|
|
41
|
-
"scripts": {
|
|
42
|
-
"build": "tsup --config tsup.config.ts",
|
|
43
|
-
"clean": "rimraf dist",
|
|
44
|
-
"dev": "tsup --config tsup.config.ts --watch",
|
|
45
|
-
"lint": "eslint src --ext .ts",
|
|
46
|
-
"lint:fix": "eslint . --fix",
|
|
47
|
-
"type-check": "tsc --noEmit",
|
|
48
|
-
"test": "vitest run --passWithNoTests",
|
|
49
|
-
"test:cli": "vitest run --config vitest.cli.config.ts --passWithNoTests"
|
|
50
50
|
}
|
|
51
|
-
}
|
|
51
|
+
}
|