-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
46 lines (46 loc) · 1.05 KB
/
manifest.json
File metadata and controls
46 lines (46 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "github",
"version": "1.0.0",
"description": "FGP daemon for GitHub operations using gh CLI",
"protocol": "fgp@1",
"daemon": {
"entrypoint": "./target/release/fgp-github",
"socket": "github/daemon.sock"
},
"methods": [
{
"name": "github.repos",
"description": "List your repositories"
},
{
"name": "github.issues",
"description": "List issues for a repository"
},
{
"name": "github.notifications",
"description": "Get unread notifications"
},
{
"name": "github.pr_status",
"description": "Check PR status for current branch"
},
{
"name": "github.user",
"description": "Get current authenticated user"
}
],
"skills": {
"claude-code": {
"source": "./skills/claude-code/",
"target": "~/.claude/skills/github-fgp/"
}
},
"auth": {
"type": "cli",
"provider": "gh",
"setup": "gh auth login"
},
"platforms": ["darwin", "linux"],
"repository": "https://github.com/wolfiesch/fgp-github",
"license": "MIT"
}