@minhpnq1807/contextos 0.5.50 → 0.5.52
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/CHANGELOG.md +15 -0
- package/README.md +114 -9
- package/bin/ctx.js +64 -8
- package/eval/skill-routing/cases.yaml +366 -0
- package/eval/skill-routing/fixtures/docker-node/Dockerfile +4 -0
- package/eval/skill-routing/fixtures/docker-node/docker-compose.yml +5 -0
- package/eval/skill-routing/fixtures/docker-node/package.json +6 -0
- package/eval/skill-routing/fixtures/expo-eas/.github/workflows/eas.yml +1 -0
- package/eval/skill-routing/fixtures/expo-eas/app.json +5 -0
- package/eval/skill-routing/fixtures/expo-eas/eas.json +6 -0
- package/eval/skill-routing/fixtures/expo-eas/package.json +11 -0
- package/eval/skill-routing/fixtures/expo-with-vercel-json/app.json +6 -0
- package/eval/skill-routing/fixtures/expo-with-vercel-json/eas.json +5 -0
- package/eval/skill-routing/fixtures/expo-with-vercel-json/package.json +8 -0
- package/eval/skill-routing/fixtures/expo-with-vercel-json/vercel.json +3 -0
- package/eval/skill-routing/fixtures/express-mongo-jwt/package.json +8 -0
- package/eval/skill-routing/fixtures/firebase-hosting/firebase.json +11 -0
- package/eval/skill-routing/fixtures/firebase-hosting/package.json +6 -0
- package/eval/skill-routing/fixtures/flutter-firebase/pubspec.yaml +5 -0
- package/eval/skill-routing/fixtures/frontend-only-next/package.json +8 -0
- package/eval/skill-routing/fixtures/integration-test/jest.config.js +3 -0
- package/eval/skill-routing/fixtures/integration-test/package.json +10 -0
- package/eval/skill-routing/fixtures/jest-project/jest.config.js +3 -0
- package/eval/skill-routing/fixtures/jest-project/package.json +7 -0
- package/eval/skill-routing/fixtures/nest-prisma/package.json +10 -0
- package/eval/skill-routing/fixtures/nest-prisma/prisma/schema.prisma +4 -0
- package/eval/skill-routing/fixtures/next-vercel/.github/workflows/deploy.yml +1 -0
- package/eval/skill-routing/fixtures/next-vercel/package.json +8 -0
- package/eval/skill-routing/fixtures/next-vercel/vercel.json +3 -0
- package/eval/skill-routing/fixtures/oauth-google/.env.example +3 -0
- package/eval/skill-routing/fixtures/oauth-google/package.json +9 -0
- package/eval/skill-routing/fixtures/password-reset/package.json +8 -0
- package/eval/skill-routing/fixtures/playwright-project/package.json +6 -0
- package/eval/skill-routing/fixtures/playwright-project/playwright.config.ts +5 -0
- package/eval/skill-routing/fixtures/railway-render/package.json +6 -0
- package/eval/skill-routing/fixtures/railway-render/railway.json +6 -0
- package/eval/skill-routing/fixtures/railway-render/render.yaml +5 -0
- package/eval/skill-routing/fixtures/rbac-api/package.json +8 -0
- package/eval/skill-routing/fixtures/redis-cache/package.json +7 -0
- package/eval/skill-routing/fixtures/static-docs/README.md +3 -0
- package/eval/skill-routing/run-eval.js +278 -0
- package/package.json +3 -1
- package/plugins/ctx/.codex-plugin/plugin.json +1 -1
- package/plugins/ctx/lib/analyzer.js +17 -2
- package/plugins/ctx/lib/auto-warm.js +1 -0
- package/plugins/ctx/lib/ctx-mcp-client.js +21 -0
- package/plugins/ctx/lib/embedding-scorer.js +34 -0
- package/plugins/ctx/lib/hook-io.js +11 -1
- package/plugins/ctx/lib/package-install.js +1 -1
- package/plugins/ctx/lib/project-profiler.js +5 -1
- package/plugins/ctx/lib/prompt-hook.js +17 -2
- package/plugins/ctx/lib/score-context.js +13 -2
- package/plugins/ctx/lib/setup-wizard.js +8 -3
- package/plugins/ctx/lib/skill-discoverer.js +480 -27
- package/plugins/ctx/lib/skillshare-sync.js +112 -0
- package/plugins/ctx/lib/workflow-discoverer.js +3 -1
- package/plugins/ctx/mcp/contextos-server.js +29 -1
- package/plugins/ctx/mcp/server.js +50 -4
|
@@ -0,0 +1,366 @@
|
|
|
1
|
+
skills:
|
|
2
|
+
- id: eas
|
|
3
|
+
description: Fix Expo EAS builds, submit, Android and iOS deployment failures.
|
|
4
|
+
positive_triggers:
|
|
5
|
+
prompts: [eas, expo build, deployed, deploy, android, ios, submit]
|
|
6
|
+
files: [eas.json, app.json, app.config.ts]
|
|
7
|
+
dependencies: [expo, eas-cli, react-native]
|
|
8
|
+
negative_triggers:
|
|
9
|
+
dependencies: [next, vite]
|
|
10
|
+
- id: mobile-deployment
|
|
11
|
+
description: Debug mobile app deployment, app store release, EAS, Flutter, Android, and iOS build pipelines.
|
|
12
|
+
positive_triggers:
|
|
13
|
+
prompts: [deployed, deploy, mobile, android, ios, release, signing]
|
|
14
|
+
files: [eas.json, app.json, pubspec.yaml]
|
|
15
|
+
dependencies: [expo, react-native, firebase_core]
|
|
16
|
+
- id: github-actions-ci-cd
|
|
17
|
+
description: Debug GitHub Actions CI/CD workflows and deployment build logs.
|
|
18
|
+
positive_triggers:
|
|
19
|
+
prompts: [deployed, deploy, ci, build failed, github actions, workflow]
|
|
20
|
+
files: [.github/workflows/*]
|
|
21
|
+
dependencies: [expo, eas-cli, react-native, next, vercel]
|
|
22
|
+
- id: env-secret-management
|
|
23
|
+
description: Fix deployment environment variables, secrets, API keys, and runtime config.
|
|
24
|
+
positive_triggers:
|
|
25
|
+
prompts: [env, secret, environment, api key, deployed]
|
|
26
|
+
files: [.env, .env.example]
|
|
27
|
+
dependencies: [next, vercel]
|
|
28
|
+
- id: build-log-debugging
|
|
29
|
+
description: Debug build logs, failed deployments, startup failures, and CI errors.
|
|
30
|
+
positive_triggers:
|
|
31
|
+
prompts: [failed, error, build, logs, startup]
|
|
32
|
+
files: [.github/workflows/*, Dockerfile, railway.json, render.yaml, vercel.json, eas.json]
|
|
33
|
+
dependencies: [next, vercel, express, @nestjs/core]
|
|
34
|
+
- id: vercel-deployment
|
|
35
|
+
description: Fix Vercel and Next.js deployment failures.
|
|
36
|
+
positive_triggers:
|
|
37
|
+
prompts: [vercel, deployed, deploy]
|
|
38
|
+
files: [vercel.json, next.config.js, next.config.ts]
|
|
39
|
+
dependencies: [next, vercel]
|
|
40
|
+
negative_triggers:
|
|
41
|
+
dependencies: [expo, react-native]
|
|
42
|
+
files: [eas.json]
|
|
43
|
+
- id: docker
|
|
44
|
+
description: Build and debug Docker images, Dockerfile, compose services, container startup, and deployment.
|
|
45
|
+
positive_triggers:
|
|
46
|
+
prompts: [docker, container, image, deployed, deploy]
|
|
47
|
+
files: [Dockerfile, docker-compose.yml]
|
|
48
|
+
- id: railway-render-deployment
|
|
49
|
+
description: Deploy Node services to Railway or Render, fix service deploy config, ports, and health checks.
|
|
50
|
+
positive_triggers:
|
|
51
|
+
prompts: [railway, render, deployed, deploy, health check]
|
|
52
|
+
files: [railway.json, render.yaml]
|
|
53
|
+
- id: firebase-hosting
|
|
54
|
+
description: Deploy web or mobile apps to Firebase Hosting and configure firebase.json.
|
|
55
|
+
positive_triggers:
|
|
56
|
+
prompts: [firebase, hosting, deployed, deploy]
|
|
57
|
+
files: [firebase.json]
|
|
58
|
+
dependencies: [firebase]
|
|
59
|
+
- id: prisma
|
|
60
|
+
description: Debug Prisma schema, migrations, generated client, and ORM queries.
|
|
61
|
+
positive_triggers:
|
|
62
|
+
prompts: [prisma, migration, database, query]
|
|
63
|
+
files: [prisma/schema.prisma]
|
|
64
|
+
dependencies: [prisma, @prisma/client]
|
|
65
|
+
- id: nestjs-module
|
|
66
|
+
description: Build and debug NestJS modules, controllers, providers, Fastify adapters, and Prisma service integration.
|
|
67
|
+
positive_triggers:
|
|
68
|
+
prompts: [nestjs, controller, module, fastify, prisma, query, guard]
|
|
69
|
+
dependencies: [@nestjs/core, @nestjs/platform-fastify]
|
|
70
|
+
- id: express-service
|
|
71
|
+
description: Build and debug Express services, middleware, API routes, and Node HTTP servers.
|
|
72
|
+
positive_triggers:
|
|
73
|
+
prompts: [express, middleware, api, service, route]
|
|
74
|
+
dependencies: [express]
|
|
75
|
+
- id: mongodb
|
|
76
|
+
description: Work with MongoDB and Mongoose models, schemas, aggregation pipelines, and queries.
|
|
77
|
+
positive_triggers:
|
|
78
|
+
prompts: [mongodb, mongo, mongoose, aggregation]
|
|
79
|
+
dependencies: [mongoose, mongodb]
|
|
80
|
+
- id: redis-cache
|
|
81
|
+
description: Add and debug Redis caching, cache invalidation, TTLs, sessions, and rate limits.
|
|
82
|
+
positive_triggers:
|
|
83
|
+
prompts: [redis, cache, caching, ttl]
|
|
84
|
+
dependencies: [redis, ioredis]
|
|
85
|
+
- id: jwt-auth
|
|
86
|
+
description: Implement and debug JWT authentication, refresh tokens, access tokens, and login authorization.
|
|
87
|
+
positive_triggers:
|
|
88
|
+
prompts: [jwt, auth, token, login, refresh]
|
|
89
|
+
dependencies: [jsonwebtoken]
|
|
90
|
+
- id: oauth-google
|
|
91
|
+
description: Implement Google OAuth login, OAuth callback routes, NextAuth, Auth.js, and social sign in.
|
|
92
|
+
positive_triggers:
|
|
93
|
+
prompts: [oauth, google, login, callback, sign in]
|
|
94
|
+
dependencies: [next-auth, @auth/core, passport-google-oauth20]
|
|
95
|
+
- id: rbac
|
|
96
|
+
description: Implement role-based access control, permissions, admin/creator roles, guards, and policies.
|
|
97
|
+
positive_triggers:
|
|
98
|
+
prompts: [rbac, role, permission, admin, creator, guard]
|
|
99
|
+
dependencies: [@nestjs/core, casl]
|
|
100
|
+
- id: password-reset
|
|
101
|
+
description: Implement password reset flows, email tokens, OTPs, and account recovery.
|
|
102
|
+
positive_triggers:
|
|
103
|
+
prompts: [password reset, forgot password, reset token, otp]
|
|
104
|
+
dependencies: [nodemailer, jsonwebtoken]
|
|
105
|
+
- id: jest-testing
|
|
106
|
+
description: Write and fix Jest unit tests, mocks, snapshots, and TypeScript test failures.
|
|
107
|
+
positive_triggers:
|
|
108
|
+
prompts: [jest, unit test, mock, snapshot, test]
|
|
109
|
+
files: [jest.config.js, jest.config.ts]
|
|
110
|
+
dependencies: [jest, ts-jest, vitest]
|
|
111
|
+
- id: integration-testing
|
|
112
|
+
description: Write integration tests for APIs, services, databases, and Supertest HTTP flows.
|
|
113
|
+
positive_triggers:
|
|
114
|
+
prompts: [integration test, supertest, api test, e2e]
|
|
115
|
+
dependencies: [supertest, jest, express]
|
|
116
|
+
- id: playwright-e2e
|
|
117
|
+
description: Write and debug Playwright E2E browser tests, locators, fixtures, and traces.
|
|
118
|
+
positive_triggers:
|
|
119
|
+
prompts: [playwright, e2e, browser test, locator, trace]
|
|
120
|
+
files: [playwright.config.js, playwright.config.ts]
|
|
121
|
+
dependencies: [@playwright/test]
|
|
122
|
+
- id: flutter-firebase
|
|
123
|
+
description: Build Flutter apps with Firebase configuration and deployment.
|
|
124
|
+
positive_triggers:
|
|
125
|
+
prompts: [flutter, firebase, deploy]
|
|
126
|
+
files: [pubspec.yaml, firebase.json]
|
|
127
|
+
dependencies: [firebase_core]
|
|
128
|
+
negative_triggers:
|
|
129
|
+
prompts: [hosting, web]
|
|
130
|
+
- id: android-signing
|
|
131
|
+
description: Fix Android signing, keystore, release builds, Gradle signing config, and Play Store deploys.
|
|
132
|
+
positive_triggers:
|
|
133
|
+
prompts: [android signing, keystore, play store, release build, gradle]
|
|
134
|
+
files: [eas.json, app.json]
|
|
135
|
+
dependencies: [expo, react-native]
|
|
136
|
+
negative_triggers:
|
|
137
|
+
prompts: [ios, submit]
|
|
138
|
+
cases:
|
|
139
|
+
- prompt: fix deployed
|
|
140
|
+
fixture: expo-eas
|
|
141
|
+
expected: [eas, mobile-deployment, github-actions-ci-cd]
|
|
142
|
+
rejected: [vercel-deployment]
|
|
143
|
+
- prompt: EAS build failed for android preview
|
|
144
|
+
fixture: expo-eas
|
|
145
|
+
expected: [eas, mobile-deployment, build-log-debugging]
|
|
146
|
+
allowed: [github-actions-ci-cd]
|
|
147
|
+
rejected: [vercel-deployment]
|
|
148
|
+
- prompt: configure ios production submit
|
|
149
|
+
fixture: expo-eas
|
|
150
|
+
expected: [eas, mobile-deployment]
|
|
151
|
+
allowed: [github-actions-ci-cd]
|
|
152
|
+
rejected: [vercel-deployment]
|
|
153
|
+
- prompt: android build cannot find keystore
|
|
154
|
+
fixture: expo-eas
|
|
155
|
+
expected: [android-signing, eas, mobile-deployment]
|
|
156
|
+
rejected: [vercel-deployment]
|
|
157
|
+
- prompt: mobile release channel deploy failed
|
|
158
|
+
fixture: expo-eas
|
|
159
|
+
expected: [mobile-deployment, eas, build-log-debugging]
|
|
160
|
+
allowed: [github-actions-ci-cd]
|
|
161
|
+
rejected: [vercel-deployment]
|
|
162
|
+
- prompt: fix deployed
|
|
163
|
+
fixture: next-vercel
|
|
164
|
+
expected: [vercel-deployment, github-actions-ci-cd, env-secret-management]
|
|
165
|
+
rejected: [eas]
|
|
166
|
+
- prompt: Vercel production deployment failed
|
|
167
|
+
fixture: next-vercel
|
|
168
|
+
expected: [vercel-deployment, env-secret-management, build-log-debugging]
|
|
169
|
+
allowed: [github-actions-ci-cd]
|
|
170
|
+
rejected: [eas]
|
|
171
|
+
- prompt: GitHub Actions deploy to Vercel is failing
|
|
172
|
+
fixture: next-vercel
|
|
173
|
+
expected: [github-actions-ci-cd, vercel-deployment, env-secret-management]
|
|
174
|
+
allowed: [build-log-debugging]
|
|
175
|
+
rejected: [eas]
|
|
176
|
+
- prompt: environment variable missing during deploy
|
|
177
|
+
fixture: next-vercel
|
|
178
|
+
expected: [env-secret-management, vercel-deployment]
|
|
179
|
+
allowed: [github-actions-ci-cd, build-log-debugging]
|
|
180
|
+
rejected: [eas]
|
|
181
|
+
- prompt: next app deployed but build logs fail
|
|
182
|
+
fixture: next-vercel
|
|
183
|
+
expected: [vercel-deployment, build-log-debugging]
|
|
184
|
+
allowed: [github-actions-ci-cd, env-secret-management]
|
|
185
|
+
rejected: [eas]
|
|
186
|
+
- prompt: docker image build failed
|
|
187
|
+
fixture: docker-node
|
|
188
|
+
expected: [docker, build-log-debugging]
|
|
189
|
+
rejected: [eas, vercel-deployment]
|
|
190
|
+
- prompt: fix container deploy
|
|
191
|
+
fixture: docker-node
|
|
192
|
+
expected: [docker]
|
|
193
|
+
allowed: [build-log-debugging]
|
|
194
|
+
rejected: [eas, vercel-deployment]
|
|
195
|
+
- prompt: docker compose service cannot start
|
|
196
|
+
fixture: docker-node
|
|
197
|
+
expected: [docker, express-service]
|
|
198
|
+
allowed: [build-log-debugging]
|
|
199
|
+
rejected: [eas, vercel-deployment]
|
|
200
|
+
- prompt: Railway deploy health check failed
|
|
201
|
+
fixture: railway-render
|
|
202
|
+
expected: [railway-render-deployment, build-log-debugging]
|
|
203
|
+
rejected: [eas, vercel-deployment]
|
|
204
|
+
- prompt: render service deploy port not detected
|
|
205
|
+
fixture: railway-render
|
|
206
|
+
expected: [railway-render-deployment, express-service]
|
|
207
|
+
allowed: [build-log-debugging]
|
|
208
|
+
rejected: [eas, vercel-deployment]
|
|
209
|
+
- prompt: deploy firebase hosting
|
|
210
|
+
fixture: firebase-hosting
|
|
211
|
+
expected: [firebase-hosting]
|
|
212
|
+
rejected: [eas, vercel-deployment]
|
|
213
|
+
- prompt: firebase hosting rewrite not working
|
|
214
|
+
fixture: firebase-hosting
|
|
215
|
+
expected: [firebase-hosting]
|
|
216
|
+
rejected: [eas, vercel-deployment]
|
|
217
|
+
- prompt: fix deployed
|
|
218
|
+
fixture: contextos
|
|
219
|
+
expected: []
|
|
220
|
+
rejected: [eas, vercel-deployment, firebase-hosting]
|
|
221
|
+
- prompt: fix auth
|
|
222
|
+
fixture: frontend-only-next
|
|
223
|
+
expected: []
|
|
224
|
+
rejected: [jwt-auth, oauth-google, rbac]
|
|
225
|
+
- prompt: add cache
|
|
226
|
+
fixture: static-docs
|
|
227
|
+
expected: []
|
|
228
|
+
rejected: [redis-cache]
|
|
229
|
+
- prompt: deploy app
|
|
230
|
+
fixture: expo-with-vercel-json
|
|
231
|
+
expected: [eas, mobile-deployment]
|
|
232
|
+
allowed: [github-actions-ci-cd, build-log-debugging]
|
|
233
|
+
rejected: [vercel-deployment]
|
|
234
|
+
- prompt: optimize slow prisma queries
|
|
235
|
+
fixture: nest-prisma
|
|
236
|
+
expected: [prisma, nestjs-module]
|
|
237
|
+
rejected: [eas, vercel-deployment]
|
|
238
|
+
- prompt: prisma migration failed
|
|
239
|
+
fixture: nest-prisma
|
|
240
|
+
expected: [prisma, nestjs-module]
|
|
241
|
+
allowed: [build-log-debugging]
|
|
242
|
+
rejected: [mongodb]
|
|
243
|
+
- prompt: add database migration for users
|
|
244
|
+
fixture: nest-prisma
|
|
245
|
+
expected: [prisma]
|
|
246
|
+
rejected: [mongodb]
|
|
247
|
+
- prompt: Fastify adapter bootstrap error in NestJS
|
|
248
|
+
fixture: nest-prisma
|
|
249
|
+
expected: [nestjs-module, build-log-debugging]
|
|
250
|
+
rejected: [eas, vercel-deployment]
|
|
251
|
+
- prompt: controller route cannot access prisma service
|
|
252
|
+
fixture: nest-prisma
|
|
253
|
+
expected: [nestjs-module, prisma]
|
|
254
|
+
rejected: [mongodb]
|
|
255
|
+
- prompt: mongodb aggregation pipeline is slow
|
|
256
|
+
fixture: express-mongo-jwt
|
|
257
|
+
expected: [mongodb]
|
|
258
|
+
allowed: [express-service]
|
|
259
|
+
rejected: [prisma]
|
|
260
|
+
- prompt: mongoose schema validation bug
|
|
261
|
+
fixture: express-mongo-jwt
|
|
262
|
+
expected: [mongodb]
|
|
263
|
+
rejected: [prisma]
|
|
264
|
+
- prompt: debug jwt refresh token
|
|
265
|
+
fixture: express-mongo-jwt
|
|
266
|
+
expected: [jwt-auth]
|
|
267
|
+
allowed: [express-service]
|
|
268
|
+
rejected: [oauth-google]
|
|
269
|
+
- prompt: login token expires too early
|
|
270
|
+
fixture: express-mongo-jwt
|
|
271
|
+
expected: [jwt-auth]
|
|
272
|
+
rejected: [oauth-google]
|
|
273
|
+
- prompt: add express middleware for auth
|
|
274
|
+
fixture: express-mongo-jwt
|
|
275
|
+
expected: [express-service, jwt-auth]
|
|
276
|
+
rejected: [eas]
|
|
277
|
+
- prompt: implement google oauth callback
|
|
278
|
+
fixture: oauth-google
|
|
279
|
+
expected: [oauth-google]
|
|
280
|
+
rejected: [jwt-auth]
|
|
281
|
+
- prompt: google sign in redirects wrong URL
|
|
282
|
+
fixture: oauth-google
|
|
283
|
+
expected: [oauth-google]
|
|
284
|
+
allowed: [env-secret-management]
|
|
285
|
+
rejected: [eas]
|
|
286
|
+
- prompt: nextauth oauth secret missing
|
|
287
|
+
fixture: oauth-google
|
|
288
|
+
expected: [oauth-google, env-secret-management]
|
|
289
|
+
rejected: [eas]
|
|
290
|
+
- prompt: implement RBAC admin creator permissions
|
|
291
|
+
fixture: rbac-api
|
|
292
|
+
expected: [rbac, nestjs-module]
|
|
293
|
+
rejected: [eas]
|
|
294
|
+
- prompt: role guard blocks creator route
|
|
295
|
+
fixture: rbac-api
|
|
296
|
+
expected: [rbac, nestjs-module]
|
|
297
|
+
rejected: [jwt-auth]
|
|
298
|
+
- prompt: permission policy for admin dashboard
|
|
299
|
+
fixture: rbac-api
|
|
300
|
+
expected: [rbac]
|
|
301
|
+
rejected: [eas]
|
|
302
|
+
- prompt: forgot password email not sent
|
|
303
|
+
fixture: password-reset
|
|
304
|
+
expected: [password-reset]
|
|
305
|
+
allowed: [express-service]
|
|
306
|
+
rejected: [oauth-google]
|
|
307
|
+
- prompt: reset token expired too soon
|
|
308
|
+
fixture: password-reset
|
|
309
|
+
expected: [password-reset, jwt-auth]
|
|
310
|
+
rejected: [oauth-google]
|
|
311
|
+
- prompt: add redis cache for catalog
|
|
312
|
+
fixture: redis-cache
|
|
313
|
+
expected: [redis-cache]
|
|
314
|
+
allowed: [express-service]
|
|
315
|
+
rejected: [prisma]
|
|
316
|
+
- prompt: cache TTL invalidation bug
|
|
317
|
+
fixture: redis-cache
|
|
318
|
+
expected: [redis-cache]
|
|
319
|
+
rejected: [eas]
|
|
320
|
+
- prompt: redis session cache fails
|
|
321
|
+
fixture: redis-cache
|
|
322
|
+
expected: [redis-cache]
|
|
323
|
+
rejected: [mongodb]
|
|
324
|
+
- prompt: fix jest unit test mocks
|
|
325
|
+
fixture: jest-project
|
|
326
|
+
expected: [jest-testing]
|
|
327
|
+
rejected: [playwright-e2e]
|
|
328
|
+
- prompt: snapshot test failed in jest
|
|
329
|
+
fixture: jest-project
|
|
330
|
+
expected: [jest-testing]
|
|
331
|
+
rejected: [playwright-e2e]
|
|
332
|
+
- prompt: missing supertest dependency in integration test
|
|
333
|
+
fixture: integration-test
|
|
334
|
+
expected: [integration-testing, jest-testing]
|
|
335
|
+
rejected: [playwright-e2e]
|
|
336
|
+
- prompt: API integration test cannot hit express route
|
|
337
|
+
fixture: integration-test
|
|
338
|
+
expected: [integration-testing, express-service]
|
|
339
|
+
allowed: [jest-testing]
|
|
340
|
+
rejected: [playwright-e2e]
|
|
341
|
+
- prompt: playwright e2e login test fails
|
|
342
|
+
fixture: playwright-project
|
|
343
|
+
expected: [playwright-e2e]
|
|
344
|
+
rejected: [jest-testing]
|
|
345
|
+
- prompt: browser locator timeout in checkout e2e
|
|
346
|
+
fixture: playwright-project
|
|
347
|
+
expected: [playwright-e2e]
|
|
348
|
+
rejected: [integration-testing]
|
|
349
|
+
- prompt: deploy flutter firebase app
|
|
350
|
+
fixture: flutter-firebase
|
|
351
|
+
expected: [flutter-firebase, mobile-deployment]
|
|
352
|
+
rejected: [eas, vercel-deployment]
|
|
353
|
+
- prompt: firebase core not initialized in flutter
|
|
354
|
+
fixture: flutter-firebase
|
|
355
|
+
expected: [flutter-firebase]
|
|
356
|
+
allowed: [mobile-deployment]
|
|
357
|
+
rejected: [vercel-deployment]
|
|
358
|
+
- prompt: android signing config for release build
|
|
359
|
+
fixture: expo-eas
|
|
360
|
+
expected: [android-signing, mobile-deployment, eas]
|
|
361
|
+
rejected: [vercel-deployment]
|
|
362
|
+
- prompt: react native eas submit failed
|
|
363
|
+
fixture: expo-eas
|
|
364
|
+
expected: [eas, mobile-deployment]
|
|
365
|
+
allowed: [github-actions-ci-cd]
|
|
366
|
+
rejected: [vercel-deployment]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
name: eas
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
name: deploy
|