fullerdev 0.1.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.
Files changed (59) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +276 -0
  3. package/bin/setup.js +119 -0
  4. package/dist/agents/designer.d.ts +6 -0
  5. package/dist/agents/designer.d.ts.map +1 -0
  6. package/dist/agents/devops.d.ts +7 -0
  7. package/dist/agents/devops.d.ts.map +1 -0
  8. package/dist/agents/explorer.d.ts +7 -0
  9. package/dist/agents/explorer.d.ts.map +1 -0
  10. package/dist/agents/fixer.d.ts +6 -0
  11. package/dist/agents/fixer.d.ts.map +1 -0
  12. package/dist/agents/librarian.d.ts +6 -0
  13. package/dist/agents/librarian.d.ts.map +1 -0
  14. package/dist/agents/oracle.d.ts +6 -0
  15. package/dist/agents/oracle.d.ts.map +1 -0
  16. package/dist/agents/orchestrator.d.ts +13 -0
  17. package/dist/agents/orchestrator.d.ts.map +1 -0
  18. package/dist/config/defaults.d.ts +14 -0
  19. package/dist/config/defaults.d.ts.map +1 -0
  20. package/dist/config/loader.d.ts +54 -0
  21. package/dist/config/loader.d.ts.map +1 -0
  22. package/dist/config/schema.d.ts +603 -0
  23. package/dist/config/schema.d.ts.map +1 -0
  24. package/dist/hooks/context-injection.d.ts +25 -0
  25. package/dist/hooks/context-injection.d.ts.map +1 -0
  26. package/dist/hooks/devops-integration.d.ts +31 -0
  27. package/dist/hooks/devops-integration.d.ts.map +1 -0
  28. package/dist/hooks/index.d.ts +46 -0
  29. package/dist/hooks/index.d.ts.map +1 -0
  30. package/dist/hooks/session-lifecycle.d.ts +15 -0
  31. package/dist/hooks/session-lifecycle.d.ts.map +1 -0
  32. package/dist/hooks/todo-continuation.d.ts +17 -0
  33. package/dist/hooks/todo-continuation.d.ts.map +1 -0
  34. package/dist/index.d.ts +31 -0
  35. package/dist/index.d.ts.map +1 -0
  36. package/dist/index.js +1261 -0
  37. package/dist/mcp/index.d.ts +31 -0
  38. package/dist/mcp/index.d.ts.map +1 -0
  39. package/dist/tools/azure/git.d.ts +26 -0
  40. package/dist/tools/azure/git.d.ts.map +1 -0
  41. package/dist/tools/azure/index.d.ts +6 -0
  42. package/dist/tools/azure/index.d.ts.map +1 -0
  43. package/dist/tools/azure/pipelines.d.ts +18 -0
  44. package/dist/tools/azure/pipelines.d.ts.map +1 -0
  45. package/dist/tools/azure/wiki.d.ts +18 -0
  46. package/dist/tools/azure/wiki.d.ts.map +1 -0
  47. package/dist/tools/azure/work-items.d.ts +26 -0
  48. package/dist/tools/azure/work-items.d.ts.map +1 -0
  49. package/dist/tools/core/index.d.ts +17 -0
  50. package/dist/tools/core/index.d.ts.map +1 -0
  51. package/dist/tools/index.d.ts +7 -0
  52. package/dist/tools/index.d.ts.map +1 -0
  53. package/fullerdev.schema.json +117 -0
  54. package/package.json +65 -0
  55. package/src/skills/agent-browser/SKILL.md +31 -0
  56. package/src/skills/azure-devops/SKILL.md +99 -0
  57. package/src/skills/frontend-ui-ux/SKILL.md +62 -0
  58. package/src/skills/gitmaster/SKILL.md +52 -0
  59. package/src/skills/simplify/SKILL.md +50 -0
@@ -0,0 +1,603 @@
1
+ import { z } from "zod";
2
+ /**
3
+ * Per-agent model and skill/MCP assignment configuration.
4
+ */
5
+ export declare const AgentConfigSchema: z.ZodObject<{
6
+ model: z.ZodString;
7
+ variant: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "max"]>>;
8
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
9
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10
+ }, "strip", z.ZodTypeAny, {
11
+ model: string;
12
+ variant?: "low" | "medium" | "high" | "max" | undefined;
13
+ skills?: string[] | undefined;
14
+ mcps?: string[] | undefined;
15
+ }, {
16
+ model: string;
17
+ variant?: "low" | "medium" | "high" | "max" | undefined;
18
+ skills?: string[] | undefined;
19
+ mcps?: string[] | undefined;
20
+ }>;
21
+ export type AgentConfig = z.infer<typeof AgentConfigSchema>;
22
+ /**
23
+ * Preset: a named collection of agent model/mcp/skill assignments.
24
+ */
25
+ export declare const PresetSchema: z.ZodObject<{
26
+ orchestrator: z.ZodObject<{
27
+ model: z.ZodString;
28
+ variant: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "max"]>>;
29
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
30
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
31
+ }, "strip", z.ZodTypeAny, {
32
+ model: string;
33
+ variant?: "low" | "medium" | "high" | "max" | undefined;
34
+ skills?: string[] | undefined;
35
+ mcps?: string[] | undefined;
36
+ }, {
37
+ model: string;
38
+ variant?: "low" | "medium" | "high" | "max" | undefined;
39
+ skills?: string[] | undefined;
40
+ mcps?: string[] | undefined;
41
+ }>;
42
+ oracle: z.ZodObject<{
43
+ model: z.ZodString;
44
+ variant: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "max"]>>;
45
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
46
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
47
+ }, "strip", z.ZodTypeAny, {
48
+ model: string;
49
+ variant?: "low" | "medium" | "high" | "max" | undefined;
50
+ skills?: string[] | undefined;
51
+ mcps?: string[] | undefined;
52
+ }, {
53
+ model: string;
54
+ variant?: "low" | "medium" | "high" | "max" | undefined;
55
+ skills?: string[] | undefined;
56
+ mcps?: string[] | undefined;
57
+ }>;
58
+ librarian: z.ZodObject<{
59
+ model: z.ZodString;
60
+ variant: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "max"]>>;
61
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
62
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
63
+ }, "strip", z.ZodTypeAny, {
64
+ model: string;
65
+ variant?: "low" | "medium" | "high" | "max" | undefined;
66
+ skills?: string[] | undefined;
67
+ mcps?: string[] | undefined;
68
+ }, {
69
+ model: string;
70
+ variant?: "low" | "medium" | "high" | "max" | undefined;
71
+ skills?: string[] | undefined;
72
+ mcps?: string[] | undefined;
73
+ }>;
74
+ explorer: z.ZodObject<{
75
+ model: z.ZodString;
76
+ variant: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "max"]>>;
77
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
78
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
79
+ }, "strip", z.ZodTypeAny, {
80
+ model: string;
81
+ variant?: "low" | "medium" | "high" | "max" | undefined;
82
+ skills?: string[] | undefined;
83
+ mcps?: string[] | undefined;
84
+ }, {
85
+ model: string;
86
+ variant?: "low" | "medium" | "high" | "max" | undefined;
87
+ skills?: string[] | undefined;
88
+ mcps?: string[] | undefined;
89
+ }>;
90
+ designer: z.ZodObject<{
91
+ model: z.ZodString;
92
+ variant: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "max"]>>;
93
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
94
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
95
+ }, "strip", z.ZodTypeAny, {
96
+ model: string;
97
+ variant?: "low" | "medium" | "high" | "max" | undefined;
98
+ skills?: string[] | undefined;
99
+ mcps?: string[] | undefined;
100
+ }, {
101
+ model: string;
102
+ variant?: "low" | "medium" | "high" | "max" | undefined;
103
+ skills?: string[] | undefined;
104
+ mcps?: string[] | undefined;
105
+ }>;
106
+ fixer: z.ZodObject<{
107
+ model: z.ZodString;
108
+ variant: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "max"]>>;
109
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
110
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
111
+ }, "strip", z.ZodTypeAny, {
112
+ model: string;
113
+ variant?: "low" | "medium" | "high" | "max" | undefined;
114
+ skills?: string[] | undefined;
115
+ mcps?: string[] | undefined;
116
+ }, {
117
+ model: string;
118
+ variant?: "low" | "medium" | "high" | "max" | undefined;
119
+ skills?: string[] | undefined;
120
+ mcps?: string[] | undefined;
121
+ }>;
122
+ devops: z.ZodObject<{
123
+ model: z.ZodString;
124
+ variant: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "max"]>>;
125
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
126
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
127
+ }, "strip", z.ZodTypeAny, {
128
+ model: string;
129
+ variant?: "low" | "medium" | "high" | "max" | undefined;
130
+ skills?: string[] | undefined;
131
+ mcps?: string[] | undefined;
132
+ }, {
133
+ model: string;
134
+ variant?: "low" | "medium" | "high" | "max" | undefined;
135
+ skills?: string[] | undefined;
136
+ mcps?: string[] | undefined;
137
+ }>;
138
+ }, "strip", z.ZodTypeAny, {
139
+ orchestrator: {
140
+ model: string;
141
+ variant?: "low" | "medium" | "high" | "max" | undefined;
142
+ skills?: string[] | undefined;
143
+ mcps?: string[] | undefined;
144
+ };
145
+ oracle: {
146
+ model: string;
147
+ variant?: "low" | "medium" | "high" | "max" | undefined;
148
+ skills?: string[] | undefined;
149
+ mcps?: string[] | undefined;
150
+ };
151
+ librarian: {
152
+ model: string;
153
+ variant?: "low" | "medium" | "high" | "max" | undefined;
154
+ skills?: string[] | undefined;
155
+ mcps?: string[] | undefined;
156
+ };
157
+ explorer: {
158
+ model: string;
159
+ variant?: "low" | "medium" | "high" | "max" | undefined;
160
+ skills?: string[] | undefined;
161
+ mcps?: string[] | undefined;
162
+ };
163
+ designer: {
164
+ model: string;
165
+ variant?: "low" | "medium" | "high" | "max" | undefined;
166
+ skills?: string[] | undefined;
167
+ mcps?: string[] | undefined;
168
+ };
169
+ fixer: {
170
+ model: string;
171
+ variant?: "low" | "medium" | "high" | "max" | undefined;
172
+ skills?: string[] | undefined;
173
+ mcps?: string[] | undefined;
174
+ };
175
+ devops: {
176
+ model: string;
177
+ variant?: "low" | "medium" | "high" | "max" | undefined;
178
+ skills?: string[] | undefined;
179
+ mcps?: string[] | undefined;
180
+ };
181
+ }, {
182
+ orchestrator: {
183
+ model: string;
184
+ variant?: "low" | "medium" | "high" | "max" | undefined;
185
+ skills?: string[] | undefined;
186
+ mcps?: string[] | undefined;
187
+ };
188
+ oracle: {
189
+ model: string;
190
+ variant?: "low" | "medium" | "high" | "max" | undefined;
191
+ skills?: string[] | undefined;
192
+ mcps?: string[] | undefined;
193
+ };
194
+ librarian: {
195
+ model: string;
196
+ variant?: "low" | "medium" | "high" | "max" | undefined;
197
+ skills?: string[] | undefined;
198
+ mcps?: string[] | undefined;
199
+ };
200
+ explorer: {
201
+ model: string;
202
+ variant?: "low" | "medium" | "high" | "max" | undefined;
203
+ skills?: string[] | undefined;
204
+ mcps?: string[] | undefined;
205
+ };
206
+ designer: {
207
+ model: string;
208
+ variant?: "low" | "medium" | "high" | "max" | undefined;
209
+ skills?: string[] | undefined;
210
+ mcps?: string[] | undefined;
211
+ };
212
+ fixer: {
213
+ model: string;
214
+ variant?: "low" | "medium" | "high" | "max" | undefined;
215
+ skills?: string[] | undefined;
216
+ mcps?: string[] | undefined;
217
+ };
218
+ devops: {
219
+ model: string;
220
+ variant?: "low" | "medium" | "high" | "max" | undefined;
221
+ skills?: string[] | undefined;
222
+ mcps?: string[] | undefined;
223
+ };
224
+ }>;
225
+ export type Preset = z.infer<typeof PresetSchema>;
226
+ /**
227
+ * Azure DevOps connection configuration.
228
+ */
229
+ export declare const AzureDevOpsConfigSchema: z.ZodObject<{
230
+ orgUrl: z.ZodString;
231
+ project: z.ZodOptional<z.ZodString>;
232
+ pat: z.ZodOptional<z.ZodString>;
233
+ defaultAreaPath: z.ZodOptional<z.ZodString>;
234
+ defaultIterationPath: z.ZodOptional<z.ZodString>;
235
+ }, "strip", z.ZodTypeAny, {
236
+ orgUrl: string;
237
+ project?: string | undefined;
238
+ pat?: string | undefined;
239
+ defaultAreaPath?: string | undefined;
240
+ defaultIterationPath?: string | undefined;
241
+ }, {
242
+ orgUrl: string;
243
+ project?: string | undefined;
244
+ pat?: string | undefined;
245
+ defaultAreaPath?: string | undefined;
246
+ defaultIterationPath?: string | undefined;
247
+ }>;
248
+ export type AzureDevOpsConfig = z.infer<typeof AzureDevOpsConfigSchema>;
249
+ /**
250
+ * Full plugin configuration schema.
251
+ */
252
+ export declare const PluginConfigSchema: z.ZodObject<{
253
+ $schema: z.ZodOptional<z.ZodString>;
254
+ /** Name of the active preset */
255
+ preset: z.ZodDefault<z.ZodString>;
256
+ /** Named presets of agent configurations */
257
+ presets: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
258
+ orchestrator: z.ZodObject<{
259
+ model: z.ZodString;
260
+ variant: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "max"]>>;
261
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
262
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
263
+ }, "strip", z.ZodTypeAny, {
264
+ model: string;
265
+ variant?: "low" | "medium" | "high" | "max" | undefined;
266
+ skills?: string[] | undefined;
267
+ mcps?: string[] | undefined;
268
+ }, {
269
+ model: string;
270
+ variant?: "low" | "medium" | "high" | "max" | undefined;
271
+ skills?: string[] | undefined;
272
+ mcps?: string[] | undefined;
273
+ }>;
274
+ oracle: z.ZodObject<{
275
+ model: z.ZodString;
276
+ variant: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "max"]>>;
277
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
278
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
279
+ }, "strip", z.ZodTypeAny, {
280
+ model: string;
281
+ variant?: "low" | "medium" | "high" | "max" | undefined;
282
+ skills?: string[] | undefined;
283
+ mcps?: string[] | undefined;
284
+ }, {
285
+ model: string;
286
+ variant?: "low" | "medium" | "high" | "max" | undefined;
287
+ skills?: string[] | undefined;
288
+ mcps?: string[] | undefined;
289
+ }>;
290
+ librarian: z.ZodObject<{
291
+ model: z.ZodString;
292
+ variant: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "max"]>>;
293
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
294
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
295
+ }, "strip", z.ZodTypeAny, {
296
+ model: string;
297
+ variant?: "low" | "medium" | "high" | "max" | undefined;
298
+ skills?: string[] | undefined;
299
+ mcps?: string[] | undefined;
300
+ }, {
301
+ model: string;
302
+ variant?: "low" | "medium" | "high" | "max" | undefined;
303
+ skills?: string[] | undefined;
304
+ mcps?: string[] | undefined;
305
+ }>;
306
+ explorer: z.ZodObject<{
307
+ model: z.ZodString;
308
+ variant: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "max"]>>;
309
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
310
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
311
+ }, "strip", z.ZodTypeAny, {
312
+ model: string;
313
+ variant?: "low" | "medium" | "high" | "max" | undefined;
314
+ skills?: string[] | undefined;
315
+ mcps?: string[] | undefined;
316
+ }, {
317
+ model: string;
318
+ variant?: "low" | "medium" | "high" | "max" | undefined;
319
+ skills?: string[] | undefined;
320
+ mcps?: string[] | undefined;
321
+ }>;
322
+ designer: z.ZodObject<{
323
+ model: z.ZodString;
324
+ variant: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "max"]>>;
325
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
326
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
327
+ }, "strip", z.ZodTypeAny, {
328
+ model: string;
329
+ variant?: "low" | "medium" | "high" | "max" | undefined;
330
+ skills?: string[] | undefined;
331
+ mcps?: string[] | undefined;
332
+ }, {
333
+ model: string;
334
+ variant?: "low" | "medium" | "high" | "max" | undefined;
335
+ skills?: string[] | undefined;
336
+ mcps?: string[] | undefined;
337
+ }>;
338
+ fixer: z.ZodObject<{
339
+ model: z.ZodString;
340
+ variant: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "max"]>>;
341
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
342
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
343
+ }, "strip", z.ZodTypeAny, {
344
+ model: string;
345
+ variant?: "low" | "medium" | "high" | "max" | undefined;
346
+ skills?: string[] | undefined;
347
+ mcps?: string[] | undefined;
348
+ }, {
349
+ model: string;
350
+ variant?: "low" | "medium" | "high" | "max" | undefined;
351
+ skills?: string[] | undefined;
352
+ mcps?: string[] | undefined;
353
+ }>;
354
+ devops: z.ZodObject<{
355
+ model: z.ZodString;
356
+ variant: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "max"]>>;
357
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
358
+ mcps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
359
+ }, "strip", z.ZodTypeAny, {
360
+ model: string;
361
+ variant?: "low" | "medium" | "high" | "max" | undefined;
362
+ skills?: string[] | undefined;
363
+ mcps?: string[] | undefined;
364
+ }, {
365
+ model: string;
366
+ variant?: "low" | "medium" | "high" | "max" | undefined;
367
+ skills?: string[] | undefined;
368
+ mcps?: string[] | undefined;
369
+ }>;
370
+ }, "strip", z.ZodTypeAny, {
371
+ orchestrator: {
372
+ model: string;
373
+ variant?: "low" | "medium" | "high" | "max" | undefined;
374
+ skills?: string[] | undefined;
375
+ mcps?: string[] | undefined;
376
+ };
377
+ oracle: {
378
+ model: string;
379
+ variant?: "low" | "medium" | "high" | "max" | undefined;
380
+ skills?: string[] | undefined;
381
+ mcps?: string[] | undefined;
382
+ };
383
+ librarian: {
384
+ model: string;
385
+ variant?: "low" | "medium" | "high" | "max" | undefined;
386
+ skills?: string[] | undefined;
387
+ mcps?: string[] | undefined;
388
+ };
389
+ explorer: {
390
+ model: string;
391
+ variant?: "low" | "medium" | "high" | "max" | undefined;
392
+ skills?: string[] | undefined;
393
+ mcps?: string[] | undefined;
394
+ };
395
+ designer: {
396
+ model: string;
397
+ variant?: "low" | "medium" | "high" | "max" | undefined;
398
+ skills?: string[] | undefined;
399
+ mcps?: string[] | undefined;
400
+ };
401
+ fixer: {
402
+ model: string;
403
+ variant?: "low" | "medium" | "high" | "max" | undefined;
404
+ skills?: string[] | undefined;
405
+ mcps?: string[] | undefined;
406
+ };
407
+ devops: {
408
+ model: string;
409
+ variant?: "low" | "medium" | "high" | "max" | undefined;
410
+ skills?: string[] | undefined;
411
+ mcps?: string[] | undefined;
412
+ };
413
+ }, {
414
+ orchestrator: {
415
+ model: string;
416
+ variant?: "low" | "medium" | "high" | "max" | undefined;
417
+ skills?: string[] | undefined;
418
+ mcps?: string[] | undefined;
419
+ };
420
+ oracle: {
421
+ model: string;
422
+ variant?: "low" | "medium" | "high" | "max" | undefined;
423
+ skills?: string[] | undefined;
424
+ mcps?: string[] | undefined;
425
+ };
426
+ librarian: {
427
+ model: string;
428
+ variant?: "low" | "medium" | "high" | "max" | undefined;
429
+ skills?: string[] | undefined;
430
+ mcps?: string[] | undefined;
431
+ };
432
+ explorer: {
433
+ model: string;
434
+ variant?: "low" | "medium" | "high" | "max" | undefined;
435
+ skills?: string[] | undefined;
436
+ mcps?: string[] | undefined;
437
+ };
438
+ designer: {
439
+ model: string;
440
+ variant?: "low" | "medium" | "high" | "max" | undefined;
441
+ skills?: string[] | undefined;
442
+ mcps?: string[] | undefined;
443
+ };
444
+ fixer: {
445
+ model: string;
446
+ variant?: "low" | "medium" | "high" | "max" | undefined;
447
+ skills?: string[] | undefined;
448
+ mcps?: string[] | undefined;
449
+ };
450
+ devops: {
451
+ model: string;
452
+ variant?: "low" | "medium" | "high" | "max" | undefined;
453
+ skills?: string[] | undefined;
454
+ mcps?: string[] | undefined;
455
+ };
456
+ }>>>;
457
+ /** Azure DevOps connection settings */
458
+ azureDevOps: z.ZodOptional<z.ZodObject<{
459
+ orgUrl: z.ZodString;
460
+ project: z.ZodOptional<z.ZodString>;
461
+ pat: z.ZodOptional<z.ZodString>;
462
+ defaultAreaPath: z.ZodOptional<z.ZodString>;
463
+ defaultIterationPath: z.ZodOptional<z.ZodString>;
464
+ }, "strip", z.ZodTypeAny, {
465
+ orgUrl: string;
466
+ project?: string | undefined;
467
+ pat?: string | undefined;
468
+ defaultAreaPath?: string | undefined;
469
+ defaultIterationPath?: string | undefined;
470
+ }, {
471
+ orgUrl: string;
472
+ project?: string | undefined;
473
+ pat?: string | undefined;
474
+ defaultAreaPath?: string | undefined;
475
+ defaultIterationPath?: string | undefined;
476
+ }>>;
477
+ /** Globally disabled MCP server IDs */
478
+ disabledMcps: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
479
+ /** Globally disabled hook IDs */
480
+ disabledHooks: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
481
+ /** Globally disabled skills */
482
+ disabledSkills: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
483
+ /** Globally disabled agents */
484
+ disabledAgents: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
485
+ }, "strip", z.ZodTypeAny, {
486
+ preset: string;
487
+ presets: Record<string, {
488
+ orchestrator: {
489
+ model: string;
490
+ variant?: "low" | "medium" | "high" | "max" | undefined;
491
+ skills?: string[] | undefined;
492
+ mcps?: string[] | undefined;
493
+ };
494
+ oracle: {
495
+ model: string;
496
+ variant?: "low" | "medium" | "high" | "max" | undefined;
497
+ skills?: string[] | undefined;
498
+ mcps?: string[] | undefined;
499
+ };
500
+ librarian: {
501
+ model: string;
502
+ variant?: "low" | "medium" | "high" | "max" | undefined;
503
+ skills?: string[] | undefined;
504
+ mcps?: string[] | undefined;
505
+ };
506
+ explorer: {
507
+ model: string;
508
+ variant?: "low" | "medium" | "high" | "max" | undefined;
509
+ skills?: string[] | undefined;
510
+ mcps?: string[] | undefined;
511
+ };
512
+ designer: {
513
+ model: string;
514
+ variant?: "low" | "medium" | "high" | "max" | undefined;
515
+ skills?: string[] | undefined;
516
+ mcps?: string[] | undefined;
517
+ };
518
+ fixer: {
519
+ model: string;
520
+ variant?: "low" | "medium" | "high" | "max" | undefined;
521
+ skills?: string[] | undefined;
522
+ mcps?: string[] | undefined;
523
+ };
524
+ devops: {
525
+ model: string;
526
+ variant?: "low" | "medium" | "high" | "max" | undefined;
527
+ skills?: string[] | undefined;
528
+ mcps?: string[] | undefined;
529
+ };
530
+ }>;
531
+ disabledMcps: string[];
532
+ disabledHooks: string[];
533
+ disabledSkills: string[];
534
+ disabledAgents: string[];
535
+ $schema?: string | undefined;
536
+ azureDevOps?: {
537
+ orgUrl: string;
538
+ project?: string | undefined;
539
+ pat?: string | undefined;
540
+ defaultAreaPath?: string | undefined;
541
+ defaultIterationPath?: string | undefined;
542
+ } | undefined;
543
+ }, {
544
+ $schema?: string | undefined;
545
+ preset?: string | undefined;
546
+ presets?: Record<string, {
547
+ orchestrator: {
548
+ model: string;
549
+ variant?: "low" | "medium" | "high" | "max" | undefined;
550
+ skills?: string[] | undefined;
551
+ mcps?: string[] | undefined;
552
+ };
553
+ oracle: {
554
+ model: string;
555
+ variant?: "low" | "medium" | "high" | "max" | undefined;
556
+ skills?: string[] | undefined;
557
+ mcps?: string[] | undefined;
558
+ };
559
+ librarian: {
560
+ model: string;
561
+ variant?: "low" | "medium" | "high" | "max" | undefined;
562
+ skills?: string[] | undefined;
563
+ mcps?: string[] | undefined;
564
+ };
565
+ explorer: {
566
+ model: string;
567
+ variant?: "low" | "medium" | "high" | "max" | undefined;
568
+ skills?: string[] | undefined;
569
+ mcps?: string[] | undefined;
570
+ };
571
+ designer: {
572
+ model: string;
573
+ variant?: "low" | "medium" | "high" | "max" | undefined;
574
+ skills?: string[] | undefined;
575
+ mcps?: string[] | undefined;
576
+ };
577
+ fixer: {
578
+ model: string;
579
+ variant?: "low" | "medium" | "high" | "max" | undefined;
580
+ skills?: string[] | undefined;
581
+ mcps?: string[] | undefined;
582
+ };
583
+ devops: {
584
+ model: string;
585
+ variant?: "low" | "medium" | "high" | "max" | undefined;
586
+ skills?: string[] | undefined;
587
+ mcps?: string[] | undefined;
588
+ };
589
+ }> | undefined;
590
+ azureDevOps?: {
591
+ orgUrl: string;
592
+ project?: string | undefined;
593
+ pat?: string | undefined;
594
+ defaultAreaPath?: string | undefined;
595
+ defaultIterationPath?: string | undefined;
596
+ } | undefined;
597
+ disabledMcps?: string[] | undefined;
598
+ disabledHooks?: string[] | undefined;
599
+ disabledSkills?: string[] | undefined;
600
+ disabledAgents?: string[] | undefined;
601
+ }>;
602
+ export type PluginConfig = z.infer<typeof PluginConfigSchema>;
603
+ //# sourceMappingURL=schema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/config/schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;EAc5B,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D;;GAEG;AACH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQvB,CAAC;AAEH,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;EAiBlC,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAExE;;GAEG;AACH,eAAO,MAAM,kBAAkB;;IAE7B,gCAAgC;;IAEhC,4CAA4C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAE5C,uCAAuC;;;;;;;;;;;;;;;;;;;;IAEvC,uCAAuC;;IAEvC,iCAAiC;;IAEjC,+BAA+B;;IAE/B,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE/B,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"}
@@ -0,0 +1,25 @@
1
+ import type { PluginConfig } from "../config/schema";
2
+ /**
3
+ * Context injection hooks — inject rules, AGENTS.md files, and directory context
4
+ * into the conversation at appropriate times.
5
+ *
6
+ * Pattern adapted from oh-my-opencode-slim's directory-agents-injector
7
+ * and rules-injector hooks.
8
+ */
9
+ export interface ContextInjectionHooks {
10
+ "tool.execute.before": (input: {
11
+ tool: string;
12
+ args: Record<string, unknown>;
13
+ }, output: {
14
+ context?: string[];
15
+ }) => Promise<void>;
16
+ "tool.execute.after": (input: {
17
+ tool: string;
18
+ args: Record<string, unknown>;
19
+ result: unknown;
20
+ }, output: {
21
+ context?: string[];
22
+ }) => Promise<void>;
23
+ }
24
+ export declare function createContextInjectionHooks(_config: PluginConfig): ContextInjectionHooks;
25
+ //# sourceMappingURL=context-injection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"context-injection.d.ts","sourceRoot":"","sources":["../../src/hooks/context-injection.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAErD;;;;;;GAMG;AAEH,MAAM,WAAW,qBAAqB;IACpC,qBAAqB,EAAE,CAAC,KAAK,EAAE;QAC7B,IAAI,EAAE,MAAM,CAAC;QACb,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KAC/B,EAAE,MAAM,EAAE;QAAE,OAAO,CAAC,EAAE,MAAM,EAAE,CAAA;KAAE,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IAEpD,oBAAoB,EAAE,CAAC,KAAK,EAAE;QAC5B,IAAI,EAAE,MAAM,CAAC;QACb,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QAC9B,MAAM,EAAE,OAAO,CAAC;KACjB,EAAE,MAAM,EAAE;QAAE,OAAO,CAAC,EAAE,MAAM,EAAE,CAAA;KAAE,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;CACrD;AAED,wBAAgB,2BAA2B,CACzC,OAAO,EAAE,YAAY,GACpB,qBAAqB,CAoBvB"}
@@ -0,0 +1,31 @@
1
+ import type { PluginConfig } from "../config/schema";
2
+ /**
3
+ * Azure DevOps integration hooks — automatic linking and workflow integration.
4
+ *
5
+ * These hooks enable:
6
+ * - Auto-linking commits to referenced Work Items
7
+ * - Notifying on PR status changes
8
+ * - Updating Work Item state based on PR activity
9
+ * - Injecting Work Item context into relevant conversations
10
+ */
11
+ export interface DevOpsIntegrationHooks {
12
+ "chat.params": (input: {
13
+ sessionID: string;
14
+ agent: string;
15
+ message: Record<string, unknown>;
16
+ }, output: {
17
+ options: Record<string, unknown>;
18
+ }) => Promise<void>;
19
+ "tool.execute.after": (input: {
20
+ tool: string;
21
+ args: Record<string, unknown>;
22
+ }, _output: Record<string, unknown>) => Promise<void>;
23
+ event: (input: {
24
+ event: {
25
+ type: string;
26
+ properties?: Record<string, unknown>;
27
+ };
28
+ }) => Promise<void>;
29
+ }
30
+ export declare function createDevOpsIntegrationHooks(_config: PluginConfig): DevOpsIntegrationHooks;
31
+ //# sourceMappingURL=devops-integration.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"devops-integration.d.ts","sourceRoot":"","sources":["../../src/hooks/devops-integration.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAErD;;;;;;;;GAQG;AAEH,MAAM,WAAW,sBAAsB;IACrC,aAAa,EAAE,CACb,KAAK,EAAE;QACL,SAAS,EAAE,MAAM,CAAC;QAClB,KAAK,EAAE,MAAM,CAAC;QACd,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KAClC,EACD,MAAM,EAAE;QAAE,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;KAAE,KACzC,OAAO,CAAC,IAAI,CAAC,CAAC;IAEnB,oBAAoB,EAAE,CACpB,KAAK,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;KAAE,EACtD,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAC7B,OAAO,CAAC,IAAI,CAAC,CAAC;IAEnB,KAAK,EAAE,CAAC,KAAK,EAAE;QACb,KAAK,EAAE;YAAE,IAAI,EAAE,MAAM,CAAC;YAAC,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;SAAE,CAAC;KAC/D,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;CACrB;AAED,wBAAgB,4BAA4B,CAC1C,OAAO,EAAE,YAAY,GACpB,sBAAsB,CAiExB"}