@lobu/cli 3.0.4 → 3.0.5
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 +17 -221
- package/dist/api/context.d.ts +0 -2
- package/dist/api/context.d.ts.map +1 -1
- package/dist/api/context.js +2 -2
- package/dist/api/context.js.map +1 -1
- package/dist/commands/chat.d.ts +7 -2
- package/dist/commands/chat.d.ts.map +1 -1
- package/dist/commands/chat.js +111 -25
- package/dist/commands/chat.js.map +1 -1
- package/dist/commands/dev.d.ts +3 -2
- package/dist/commands/dev.d.ts.map +1 -1
- package/dist/commands/dev.js +17 -165
- package/dist/commands/dev.js.map +1 -1
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +132 -59
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/skills/info.d.ts.map +1 -1
- package/dist/commands/skills/info.js +0 -9
- package/dist/commands/skills/info.js.map +1 -1
- package/dist/commands/skills/list.d.ts.map +1 -1
- package/dist/commands/skills/list.js +5 -6
- package/dist/commands/skills/list.js.map +1 -1
- package/dist/commands/skills/registry.d.ts +1 -11
- package/dist/commands/skills/registry.d.ts.map +1 -1
- package/dist/commands/skills/registry.js +0 -3
- package/dist/commands/skills/registry.js.map +1 -1
- package/dist/commands/status.js +1 -1
- package/dist/config/loader.d.ts +0 -18
- package/dist/config/loader.d.ts.map +1 -1
- package/dist/config/loader.js +2 -62
- package/dist/config/loader.js.map +1 -1
- package/dist/index.js +8 -15
- package/dist/index.js.map +1 -1
- package/package.json +1 -2
- package/dist/__tests__/login.test.d.ts +0 -2
- package/dist/__tests__/login.test.d.ts.map +0 -1
- package/dist/__tests__/login.test.js +0 -173
- package/dist/__tests__/login.test.js.map +0 -1
- package/dist/api/client.d.ts +0 -11
- package/dist/api/client.d.ts.map +0 -1
- package/dist/api/client.js +0 -33
- package/dist/api/client.js.map +0 -1
- package/dist/commands/launch.d.ts +0 -6
- package/dist/commands/launch.d.ts.map +0 -1
- package/dist/commands/launch.js +0 -26
- package/dist/commands/launch.js.map +0 -1
- package/dist/config/agents-manifest.d.ts +0 -92
- package/dist/config/agents-manifest.d.ts.map +0 -1
- package/dist/config/agents-manifest.js +0 -7
- package/dist/config/agents-manifest.js.map +0 -1
- package/dist/config/platform-schemas.d.ts +0 -120
- package/dist/config/platform-schemas.d.ts.map +0 -1
- package/dist/config/platform-schemas.js +0 -97
- package/dist/config/platform-schemas.js.map +0 -1
- package/dist/config/transformer.d.ts +0 -14
- package/dist/config/transformer.d.ts.map +0 -1
- package/dist/config/transformer.js +0 -46
- package/dist/config/transformer.js.map +0 -1
- package/dist/mcp-servers.d.ts +0 -11
- package/dist/mcp-servers.d.ts.map +0 -1
- package/dist/mcp-servers.js +0 -27
- package/dist/mcp-servers.js.map +0 -1
- package/dist/mcp-servers.json +0 -216
- package/dist/system-skills.json +0 -621
- package/dist/templates/.env.tmpl +0 -18
- package/dist/templates/.gitignore.tmpl +0 -33
- package/dist/templates/AGENTS.md.tmpl +0 -1
- package/dist/templates/Dockerfile.worker.tmpl +0 -29
- package/dist/templates/README.md.tmpl +0 -94
- package/dist/templates/TESTING.md.tmpl +0 -225
- package/dist/types.d.ts +0 -76
- package/dist/types.d.ts.map +0 -1
- package/dist/types.js +0 -2
- package/dist/types.js.map +0 -1
- package/dist/utils/config.d.ts +0 -2
- package/dist/utils/config.d.ts.map +0 -1
- package/dist/utils/config.js +0 -13
- package/dist/utils/config.js.map +0 -1
package/dist/mcp-servers.json
DELETED
|
@@ -1,216 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"servers": [
|
|
3
|
-
{
|
|
4
|
-
"id": "github",
|
|
5
|
-
"name": "GitHub",
|
|
6
|
-
"description": "Access repositories, issues, and code search",
|
|
7
|
-
"type": "oauth",
|
|
8
|
-
"config": {
|
|
9
|
-
"url": "https://api.githubcopilot.com/mcp/",
|
|
10
|
-
"oauth": {
|
|
11
|
-
"authUrl": "https://github.com/login/oauth/authorize",
|
|
12
|
-
"tokenUrl": "https://github.com/login/oauth/access_token",
|
|
13
|
-
"clientId": "${GITHUB_CLIENT_ID}",
|
|
14
|
-
"clientSecret": "${env:GITHUB_CLIENT_SECRET}",
|
|
15
|
-
"scopes": ["repo", "read:user"],
|
|
16
|
-
"grantType": "authorization_code",
|
|
17
|
-
"responseType": "code"
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
"setupInstructions": "1. Create a GitHub OAuth App at https://github.com/settings/developers\n2. Set Authorization callback URL to: {PUBLIC_URL}/mcp/oauth/callback\n3. Copy the Client ID and Client Secret\n4. Update .lobu/mcp.config.json with your Client ID\n5. Add GITHUB_CLIENT_SECRET to your .env file"
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"id": "playwright",
|
|
24
|
-
"name": "Playwright",
|
|
25
|
-
"description": "Browser automation and web testing",
|
|
26
|
-
"type": "command",
|
|
27
|
-
"config": {
|
|
28
|
-
"command": "npx",
|
|
29
|
-
"args": ["-y", "@modelcontextprotocol/server-playwright"]
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"id": "figma",
|
|
34
|
-
"name": "Figma",
|
|
35
|
-
"description": "Access design files and components",
|
|
36
|
-
"type": "oauth",
|
|
37
|
-
"config": {
|
|
38
|
-
"url": "https://api.figma.com/v1/",
|
|
39
|
-
"oauth": {
|
|
40
|
-
"authUrl": "https://www.figma.com/oauth",
|
|
41
|
-
"tokenUrl": "https://www.figma.com/api/oauth/token",
|
|
42
|
-
"clientId": "${FIGMA_CLIENT_ID}",
|
|
43
|
-
"clientSecret": "${env:FIGMA_CLIENT_SECRET}",
|
|
44
|
-
"scopes": ["file_read"],
|
|
45
|
-
"grantType": "authorization_code",
|
|
46
|
-
"responseType": "code"
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
"setupInstructions": "1. Create a Figma App at https://www.figma.com/developers/apps\n2. Set Redirect URI to: {PUBLIC_URL}/mcp/oauth/callback\n3. Copy the Client ID and Client Secret\n4. Update .lobu/mcp.config.json with your Client ID\n5. Add FIGMA_CLIENT_SECRET to your .env file"
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"id": "notion",
|
|
53
|
-
"name": "Notion",
|
|
54
|
-
"description": "Access and manage Notion pages and databases",
|
|
55
|
-
"type": "oauth",
|
|
56
|
-
"config": {
|
|
57
|
-
"url": "https://mcp.notion.com/mcp",
|
|
58
|
-
"oauth": {
|
|
59
|
-
"authUrl": "https://api.notion.com/v1/oauth/authorize",
|
|
60
|
-
"tokenUrl": "https://api.notion.com/v1/oauth/token",
|
|
61
|
-
"clientId": "${NOTION_CLIENT_ID}",
|
|
62
|
-
"clientSecret": "${env:NOTION_CLIENT_SECRET}",
|
|
63
|
-
"scopes": [],
|
|
64
|
-
"grantType": "authorization_code",
|
|
65
|
-
"responseType": "code"
|
|
66
|
-
}
|
|
67
|
-
},
|
|
68
|
-
"setupInstructions": "1. Create a Notion Integration at https://www.notion.so/my-integrations\n2. Set Redirect URI to: {PUBLIC_URL}/mcp/oauth/callback\n3. Copy the OAuth Client ID and Secret\n4. Update .lobu/mcp.config.json with your Client ID\n5. Add NOTION_CLIENT_SECRET to your .env file"
|
|
69
|
-
},
|
|
70
|
-
{
|
|
71
|
-
"id": "firecrawl",
|
|
72
|
-
"name": "Firecrawl",
|
|
73
|
-
"description": "Web scraping and content extraction",
|
|
74
|
-
"type": "api-key",
|
|
75
|
-
"config": {
|
|
76
|
-
"command": "npx",
|
|
77
|
-
"args": ["-y", "@firecrawl/mcp-server"],
|
|
78
|
-
"env": {
|
|
79
|
-
"FIRECRAWL_API_KEY": "${FIRECRAWL_API_KEY}"
|
|
80
|
-
}
|
|
81
|
-
},
|
|
82
|
-
"setupInstructions": "1. Get API key from https://www.firecrawl.dev/dashboard\n2. Add FIRECRAWL_API_KEY to your .env file"
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
"id": "grafana",
|
|
86
|
-
"name": "Grafana",
|
|
87
|
-
"description": "Access dashboards and metrics",
|
|
88
|
-
"type": "api-key",
|
|
89
|
-
"config": {
|
|
90
|
-
"url": "${GRAFANA_URL}/api",
|
|
91
|
-
"headers": {
|
|
92
|
-
"Authorization": "Bearer ${env:GRAFANA_API_KEY}"
|
|
93
|
-
}
|
|
94
|
-
},
|
|
95
|
-
"setupInstructions": "1. Create a Service Account in your Grafana instance\n2. Generate an API token\n3. Add GRAFANA_URL and GRAFANA_API_KEY to your .env file"
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"id": "jira",
|
|
99
|
-
"name": "Atlassian Jira",
|
|
100
|
-
"description": "Access and manage Jira issues",
|
|
101
|
-
"type": "oauth",
|
|
102
|
-
"config": {
|
|
103
|
-
"url": "https://api.atlassian.com",
|
|
104
|
-
"oauth": {
|
|
105
|
-
"authUrl": "https://auth.atlassian.com/authorize",
|
|
106
|
-
"tokenUrl": "https://auth.atlassian.com/oauth/token",
|
|
107
|
-
"clientId": "${JIRA_CLIENT_ID}",
|
|
108
|
-
"clientSecret": "${env:JIRA_CLIENT_SECRET}",
|
|
109
|
-
"scopes": ["read:jira-work", "read:jira-user", "write:jira-work"],
|
|
110
|
-
"grantType": "authorization_code",
|
|
111
|
-
"responseType": "code"
|
|
112
|
-
}
|
|
113
|
-
},
|
|
114
|
-
"setupInstructions": "1. Create an OAuth 2.0 app at https://developer.atlassian.com/console/myapps/\n2. Set Callback URL to: {PUBLIC_URL}/mcp/oauth/callback\n3. Copy the Client ID and Secret\n4. Update .lobu/mcp.config.json with your Client ID\n5. Add JIRA_CLIENT_SECRET to your .env file"
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
"id": "datadog",
|
|
118
|
-
"name": "Datadog",
|
|
119
|
-
"description": "Monitor logs and metrics",
|
|
120
|
-
"type": "api-key",
|
|
121
|
-
"config": {
|
|
122
|
-
"url": "https://api.datadoghq.com/api/v2",
|
|
123
|
-
"headers": {
|
|
124
|
-
"DD-API-KEY": "${env:DATADOG_API_KEY}",
|
|
125
|
-
"DD-APPLICATION-KEY": "${env:DATADOG_APP_KEY}"
|
|
126
|
-
}
|
|
127
|
-
},
|
|
128
|
-
"setupInstructions": "1. Go to https://app.datadoghq.com/organization-settings/api-keys\n2. Create an API Key and Application Key\n3. Add DATADOG_API_KEY and DATADOG_APP_KEY to your .env file"
|
|
129
|
-
},
|
|
130
|
-
{
|
|
131
|
-
"id": "google-calendar",
|
|
132
|
-
"name": "Google Calendar",
|
|
133
|
-
"description": "Access and manage calendar events",
|
|
134
|
-
"type": "oauth",
|
|
135
|
-
"config": {
|
|
136
|
-
"url": "https://www.googleapis.com/calendar/v3",
|
|
137
|
-
"oauth": {
|
|
138
|
-
"authUrl": "https://accounts.google.com/o/oauth2/v2/auth",
|
|
139
|
-
"tokenUrl": "https://oauth2.googleapis.com/token",
|
|
140
|
-
"clientId": "${GOOGLE_CLIENT_ID}",
|
|
141
|
-
"clientSecret": "${env:GOOGLE_CLIENT_SECRET}",
|
|
142
|
-
"scopes": ["https://www.googleapis.com/auth/calendar.readonly"],
|
|
143
|
-
"grantType": "authorization_code",
|
|
144
|
-
"responseType": "code"
|
|
145
|
-
}
|
|
146
|
-
},
|
|
147
|
-
"setupInstructions": "1. Create OAuth credentials at https://console.cloud.google.com/apis/credentials\n2. Set Authorized redirect URI to: {PUBLIC_URL}/mcp/oauth/callback\n3. Copy the Client ID and Client Secret\n4. Update .lobu/mcp.config.json with your Client ID\n5. Add GOOGLE_CLIENT_SECRET to your .env file"
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
"id": "sentry",
|
|
151
|
-
"name": "Sentry",
|
|
152
|
-
"description": "Access error tracking and performance monitoring",
|
|
153
|
-
"type": "none",
|
|
154
|
-
"config": {
|
|
155
|
-
"url": "https://mcp.sentry.dev/mcp"
|
|
156
|
-
}
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
"id": "linear",
|
|
160
|
-
"name": "Linear",
|
|
161
|
-
"description": "Manage issues and projects",
|
|
162
|
-
"type": "oauth",
|
|
163
|
-
"config": {
|
|
164
|
-
"url": "https://api.linear.app/graphql",
|
|
165
|
-
"oauth": {
|
|
166
|
-
"authUrl": "https://linear.app/oauth/authorize",
|
|
167
|
-
"tokenUrl": "https://api.linear.app/oauth/token",
|
|
168
|
-
"clientId": "${LINEAR_CLIENT_ID}",
|
|
169
|
-
"clientSecret": "${env:LINEAR_CLIENT_SECRET}",
|
|
170
|
-
"scopes": ["read", "write"],
|
|
171
|
-
"grantType": "authorization_code",
|
|
172
|
-
"responseType": "code"
|
|
173
|
-
}
|
|
174
|
-
},
|
|
175
|
-
"setupInstructions": "1. Create OAuth app at https://linear.app/settings/api\n2. Set Redirect URL to: {PUBLIC_URL}/mcp/oauth/callback\n3. Copy the Client ID and Client Secret\n4. Update .lobu/mcp.config.json with your Client ID\n5. Add LINEAR_CLIENT_SECRET to your .env file"
|
|
176
|
-
},
|
|
177
|
-
{
|
|
178
|
-
"id": "discord",
|
|
179
|
-
"name": "Discord",
|
|
180
|
-
"description": "Access Discord servers and channels",
|
|
181
|
-
"type": "oauth",
|
|
182
|
-
"config": {
|
|
183
|
-
"url": "https://discord.com/api/v10",
|
|
184
|
-
"oauth": {
|
|
185
|
-
"authUrl": "https://discord.com/oauth2/authorize",
|
|
186
|
-
"tokenUrl": "https://discord.com/api/oauth2/token",
|
|
187
|
-
"clientId": "${DISCORD_CLIENT_ID}",
|
|
188
|
-
"clientSecret": "${env:DISCORD_CLIENT_SECRET}",
|
|
189
|
-
"scopes": ["identify", "guilds", "messages.read"],
|
|
190
|
-
"grantType": "authorization_code",
|
|
191
|
-
"responseType": "code"
|
|
192
|
-
}
|
|
193
|
-
},
|
|
194
|
-
"setupInstructions": "1. Create Discord app at https://discord.com/developers/applications\n2. Set Redirect URL to: {PUBLIC_URL}/mcp/oauth/callback\n3. Copy the Client ID and Client Secret\n4. Update .lobu/mcp.config.json with your Client ID\n5. Add DISCORD_CLIENT_SECRET to your .env file"
|
|
195
|
-
},
|
|
196
|
-
{
|
|
197
|
-
"id": "gitlab",
|
|
198
|
-
"name": "GitLab",
|
|
199
|
-
"description": "Access GitLab repositories and issues",
|
|
200
|
-
"type": "oauth",
|
|
201
|
-
"config": {
|
|
202
|
-
"url": "https://gitlab.com/api/v4",
|
|
203
|
-
"oauth": {
|
|
204
|
-
"authUrl": "https://gitlab.com/oauth/authorize",
|
|
205
|
-
"tokenUrl": "https://gitlab.com/oauth/token",
|
|
206
|
-
"clientId": "${GITLAB_CLIENT_ID}",
|
|
207
|
-
"clientSecret": "${env:GITLAB_CLIENT_SECRET}",
|
|
208
|
-
"scopes": ["api", "read_user"],
|
|
209
|
-
"grantType": "authorization_code",
|
|
210
|
-
"responseType": "code"
|
|
211
|
-
}
|
|
212
|
-
},
|
|
213
|
-
"setupInstructions": "1. Create GitLab application at https://gitlab.com/-/profile/applications\n2. Set Redirect URI to: {PUBLIC_URL}/mcp/oauth/callback\n3. Copy the Application ID and Secret\n4. Update .lobu/mcp.config.json with your Client ID\n5. Add GITLAB_CLIENT_SECRET to your .env file"
|
|
214
|
-
}
|
|
215
|
-
]
|
|
216
|
-
}
|