-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
157 lines (157 loc) · 3.59 KB
/
Copy pathmanifest.json
File metadata and controls
157 lines (157 loc) · 3.59 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "gmail",
"version": "1.0.0",
"description": "Fast Gmail integration via FGP daemon",
"protocol": "fgp@1",
"author": "Wolfgang Schoenberger",
"license": "MIT",
"repository": "https://github.com/wolfiesch/fgp-gmail",
"daemon": {
"entrypoint": "./target/release/fgp-gmail",
"socket": "gmail/daemon.sock",
"dependencies": ["python3"]
},
"methods": [
{
"name": "gmail.inbox",
"description": "List recent inbox emails",
"params": [
{
"name": "limit",
"type": "integer",
"required": false,
"default": 10
}
]
},
{
"name": "gmail.unread",
"description": "Get unread email count and summaries",
"params": []
},
{
"name": "gmail.search",
"description": "Search emails by query",
"params": [
{
"name": "query",
"type": "string",
"required": true
},
{
"name": "limit",
"type": "integer",
"required": false,
"default": 10
}
]
},
{
"name": "gmail.read",
"description": "Read full email with body and attachment info",
"params": [
{
"name": "message_id",
"type": "string",
"required": true
}
]
},
{
"name": "gmail.send",
"description": "Send an email with optional attachments",
"params": [
{
"name": "to",
"type": "string",
"required": true
},
{
"name": "subject",
"type": "string",
"required": true
},
{
"name": "body",
"type": "string",
"required": true
},
{
"name": "cc",
"type": "string",
"required": false
},
{
"name": "bcc",
"type": "string",
"required": false
},
{
"name": "attachments",
"type": "array",
"required": false,
"description": "List of {filename, data (base64)} or {path}"
}
]
},
{
"name": "gmail.download_attachment",
"description": "Download an attachment from an email",
"params": [
{
"name": "message_id",
"type": "string",
"required": true
},
{
"name": "attachment_id",
"type": "string",
"required": true
},
{
"name": "save_path",
"type": "string",
"required": false,
"description": "Path to save file (returns base64 if not specified)"
}
]
},
{
"name": "gmail.thread",
"description": "Get email thread by ID",
"params": [
{
"name": "thread_id",
"type": "string",
"required": true
}
]
}
],
"skills": {
"claude-code": {
"source": "./skills/claude-code/",
"target": "~/.claude/skills/gmail/"
},
"cursor": {
"source": "./skills/cursor/",
"target": "~/.cursor/rules/"
},
"windsurf": {
"source": "./skills/windsurf/",
"target": "~/.windsurf/skills/"
}
},
"auth": {
"type": "oauth2",
"provider": "google",
"scopes": [
"https://www.googleapis.com/auth/gmail.readonly",
"https://www.googleapis.com/auth/gmail.send",
"https://www.googleapis.com/auth/gmail.modify"
],
"credentials_path": "~/.fgp/auth/google/credentials.json",
"token_path": "~/.fgp/auth/google/gmail_token.pickle"
},
"platforms": ["darwin", "linux"]
}