@karmaniverous/jeeves-watcher 0.2.4 → 0.2.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 CHANGED
@@ -121,6 +121,7 @@ If `GOOGLE_API_KEY` is set in the environment, the value is substituted at confi
121
121
 
122
122
  - **`paths`**: Array of glob patterns or directories to watch
123
123
  - **`ignored`**: Array of patterns to exclude
124
+ - **`respectGitignore`**: (default: `true`) Skip processing files ignored by `.gitignore` in git repositories. Nested `.gitignore` files are respected within their subtree.
124
125
 
125
126
  ### Embedding Provider
126
127
 
@@ -22,6 +22,9 @@
22
22
  },
23
23
  "stabilityThresholdMs": {
24
24
  "$ref": "#/definitions/__schema10"
25
+ },
26
+ "respectGitignore": {
27
+ "$ref": "#/definitions/__schema12"
25
28
  }
26
29
  },
27
30
  "required": [
@@ -33,7 +36,7 @@
33
36
  "description": "Configuration file watch settings.",
34
37
  "allOf": [
35
38
  {
36
- "$ref": "#/definitions/__schema12"
39
+ "$ref": "#/definitions/__schema14"
37
40
  }
38
41
  ]
39
42
  },
@@ -41,28 +44,28 @@
41
44
  "type": "object",
42
45
  "properties": {
43
46
  "provider": {
44
- "$ref": "#/definitions/__schema15"
47
+ "$ref": "#/definitions/__schema17"
45
48
  },
46
49
  "model": {
47
- "$ref": "#/definitions/__schema17"
50
+ "$ref": "#/definitions/__schema19"
48
51
  },
49
52
  "chunkSize": {
50
- "$ref": "#/definitions/__schema19"
53
+ "$ref": "#/definitions/__schema21"
51
54
  },
52
55
  "chunkOverlap": {
53
- "$ref": "#/definitions/__schema21"
56
+ "$ref": "#/definitions/__schema23"
54
57
  },
55
58
  "dimensions": {
56
- "$ref": "#/definitions/__schema23"
59
+ "$ref": "#/definitions/__schema25"
57
60
  },
58
61
  "apiKey": {
59
- "$ref": "#/definitions/__schema25"
62
+ "$ref": "#/definitions/__schema27"
60
63
  },
61
64
  "rateLimitPerMinute": {
62
- "$ref": "#/definitions/__schema27"
65
+ "$ref": "#/definitions/__schema29"
63
66
  },
64
67
  "concurrency": {
65
- "$ref": "#/definitions/__schema29"
68
+ "$ref": "#/definitions/__schema31"
66
69
  }
67
70
  },
68
71
  "description": "Embedding model configuration."
@@ -71,13 +74,13 @@
71
74
  "type": "object",
72
75
  "properties": {
73
76
  "url": {
74
- "$ref": "#/definitions/__schema31"
77
+ "$ref": "#/definitions/__schema33"
75
78
  },
76
79
  "collectionName": {
77
- "$ref": "#/definitions/__schema32"
80
+ "$ref": "#/definitions/__schema34"
78
81
  },
79
82
  "apiKey": {
80
- "$ref": "#/definitions/__schema33"
83
+ "$ref": "#/definitions/__schema35"
81
84
  }
82
85
  },
83
86
  "required": [
@@ -90,7 +93,7 @@
90
93
  "description": "Directory for persisted metadata sidecar files.",
91
94
  "allOf": [
92
95
  {
93
- "$ref": "#/definitions/__schema35"
96
+ "$ref": "#/definitions/__schema37"
94
97
  }
95
98
  ]
96
99
  },
@@ -98,7 +101,7 @@
98
101
  "description": "API server configuration.",
99
102
  "allOf": [
100
103
  {
101
- "$ref": "#/definitions/__schema36"
104
+ "$ref": "#/definitions/__schema38"
102
105
  }
103
106
  ]
104
107
  },
@@ -106,7 +109,7 @@
106
109
  "description": "Extractor configurations keyed by name.",
107
110
  "allOf": [
108
111
  {
109
- "$ref": "#/definitions/__schema39"
112
+ "$ref": "#/definitions/__schema41"
110
113
  }
111
114
  ]
112
115
  },
@@ -114,7 +117,7 @@
114
117
  "description": "Rules for inferring metadata from file attributes.",
115
118
  "allOf": [
116
119
  {
117
- "$ref": "#/definitions/__schema40"
120
+ "$ref": "#/definitions/__schema42"
118
121
  }
119
122
  ]
120
123
  },
@@ -122,7 +125,7 @@
122
125
  "description": "Reusable named JsonMap transformations.",
123
126
  "allOf": [
124
127
  {
125
- "$ref": "#/definitions/__schema48"
128
+ "$ref": "#/definitions/__schema50"
126
129
  }
127
130
  ]
128
131
  },
@@ -130,7 +133,7 @@
130
133
  "description": "Logging configuration.",
131
134
  "allOf": [
132
135
  {
133
- "$ref": "#/definitions/__schema49"
136
+ "$ref": "#/definitions/__schema51"
134
137
  }
135
138
  ]
136
139
  },
@@ -138,7 +141,7 @@
138
141
  "description": "Timeout in milliseconds for graceful shutdown.",
139
142
  "allOf": [
140
143
  {
141
- "$ref": "#/definitions/__schema52"
144
+ "$ref": "#/definitions/__schema54"
142
145
  }
143
146
  ]
144
147
  },
@@ -146,7 +149,7 @@
146
149
  "description": "Maximum consecutive system-level failures before triggering fatal error. Default: Infinity.",
147
150
  "allOf": [
148
151
  {
149
- "$ref": "#/definitions/__schema53"
152
+ "$ref": "#/definitions/__schema55"
150
153
  }
151
154
  ]
152
155
  },
@@ -154,7 +157,7 @@
154
157
  "description": "Maximum backoff delay in milliseconds for system errors. Default: 60000.",
155
158
  "allOf": [
156
159
  {
157
- "$ref": "#/definitions/__schema54"
160
+ "$ref": "#/definitions/__schema56"
158
161
  }
159
162
  ]
160
163
  }
@@ -235,13 +238,24 @@
235
238
  "type": "number"
236
239
  },
237
240
  "__schema12": {
241
+ "description": "Skip files ignored by .gitignore in git repositories. Only applies to repos with a .git directory. Default: true.",
242
+ "allOf": [
243
+ {
244
+ "$ref": "#/definitions/__schema13"
245
+ }
246
+ ]
247
+ },
248
+ "__schema13": {
249
+ "type": "boolean"
250
+ },
251
+ "__schema14": {
238
252
  "type": "object",
239
253
  "properties": {
240
254
  "enabled": {
241
255
  "description": "Enable automatic reloading when config file changes.",
242
256
  "allOf": [
243
257
  {
244
- "$ref": "#/definitions/__schema13"
258
+ "$ref": "#/definitions/__schema15"
245
259
  }
246
260
  ]
247
261
  },
@@ -249,33 +263,21 @@
249
263
  "description": "Debounce delay in milliseconds for config file change detection.",
250
264
  "allOf": [
251
265
  {
252
- "$ref": "#/definitions/__schema14"
266
+ "$ref": "#/definitions/__schema16"
253
267
  }
254
268
  ]
255
269
  }
256
270
  }
257
271
  },
258
- "__schema13": {
272
+ "__schema15": {
259
273
  "type": "boolean"
260
274
  },
261
- "__schema14": {
275
+ "__schema16": {
262
276
  "type": "number"
263
277
  },
264
- "__schema15": {
278
+ "__schema17": {
265
279
  "default": "gemini",
266
280
  "description": "Embedding provider name (e.g., \"gemini\", \"openai\").",
267
- "allOf": [
268
- {
269
- "$ref": "#/definitions/__schema16"
270
- }
271
- ]
272
- },
273
- "__schema16": {
274
- "type": "string"
275
- },
276
- "__schema17": {
277
- "default": "gemini-embedding-001",
278
- "description": "Embedding model identifier (e.g., \"gemini-embedding-001\", \"text-embedding-3-small\").",
279
281
  "allOf": [
280
282
  {
281
283
  "$ref": "#/definitions/__schema18"
@@ -286,7 +288,8 @@
286
288
  "type": "string"
287
289
  },
288
290
  "__schema19": {
289
- "description": "Maximum chunk size in characters for text splitting.",
291
+ "default": "gemini-embedding-001",
292
+ "description": "Embedding model identifier (e.g., \"gemini-embedding-001\", \"text-embedding-3-small\").",
290
293
  "allOf": [
291
294
  {
292
295
  "$ref": "#/definitions/__schema20"
@@ -294,10 +297,10 @@
294
297
  ]
295
298
  },
296
299
  "__schema20": {
297
- "type": "number"
300
+ "type": "string"
298
301
  },
299
302
  "__schema21": {
300
- "description": "Character overlap between consecutive chunks.",
303
+ "description": "Maximum chunk size in characters for text splitting.",
301
304
  "allOf": [
302
305
  {
303
306
  "$ref": "#/definitions/__schema22"
@@ -308,7 +311,7 @@
308
311
  "type": "number"
309
312
  },
310
313
  "__schema23": {
311
- "description": "Embedding vector dimensions (must match model output).",
314
+ "description": "Character overlap between consecutive chunks.",
312
315
  "allOf": [
313
316
  {
314
317
  "$ref": "#/definitions/__schema24"
@@ -319,7 +322,7 @@
319
322
  "type": "number"
320
323
  },
321
324
  "__schema25": {
322
- "description": "API key for embedding provider (supports ${ENV_VAR} substitution).",
325
+ "description": "Embedding vector dimensions (must match model output).",
323
326
  "allOf": [
324
327
  {
325
328
  "$ref": "#/definitions/__schema26"
@@ -327,10 +330,10 @@
327
330
  ]
328
331
  },
329
332
  "__schema26": {
330
- "type": "string"
333
+ "type": "number"
331
334
  },
332
335
  "__schema27": {
333
- "description": "Maximum embedding API requests per minute (rate limiting).",
336
+ "description": "API key for embedding provider (supports ${ENV_VAR} substitution).",
334
337
  "allOf": [
335
338
  {
336
339
  "$ref": "#/definitions/__schema28"
@@ -338,10 +341,10 @@
338
341
  ]
339
342
  },
340
343
  "__schema28": {
341
- "type": "number"
344
+ "type": "string"
342
345
  },
343
346
  "__schema29": {
344
- "description": "Maximum concurrent embedding requests.",
347
+ "description": "Maximum embedding API requests per minute (rate limiting).",
345
348
  "allOf": [
346
349
  {
347
350
  "$ref": "#/definitions/__schema30"
@@ -352,35 +355,46 @@
352
355
  "type": "number"
353
356
  },
354
357
  "__schema31": {
358
+ "description": "Maximum concurrent embedding requests.",
359
+ "allOf": [
360
+ {
361
+ "$ref": "#/definitions/__schema32"
362
+ }
363
+ ]
364
+ },
365
+ "__schema32": {
366
+ "type": "number"
367
+ },
368
+ "__schema33": {
355
369
  "type": "string",
356
370
  "description": "Qdrant server URL (e.g., \"http://localhost:6333\")."
357
371
  },
358
- "__schema32": {
372
+ "__schema34": {
359
373
  "type": "string",
360
374
  "description": "Qdrant collection name for vector storage."
361
375
  },
362
- "__schema33": {
376
+ "__schema35": {
363
377
  "description": "Qdrant API key for authentication (supports ${ENV_VAR} substitution).",
364
378
  "allOf": [
365
379
  {
366
- "$ref": "#/definitions/__schema34"
380
+ "$ref": "#/definitions/__schema36"
367
381
  }
368
382
  ]
369
383
  },
370
- "__schema34": {
384
+ "__schema36": {
371
385
  "type": "string"
372
386
  },
373
- "__schema35": {
387
+ "__schema37": {
374
388
  "type": "string"
375
389
  },
376
- "__schema36": {
390
+ "__schema38": {
377
391
  "type": "object",
378
392
  "properties": {
379
393
  "host": {
380
394
  "description": "Host address for API server (e.g., \"127.0.0.1\", \"0.0.0.0\").",
381
395
  "allOf": [
382
396
  {
383
- "$ref": "#/definitions/__schema37"
397
+ "$ref": "#/definitions/__schema39"
384
398
  }
385
399
  ]
386
400
  },
@@ -388,26 +402,26 @@
388
402
  "description": "Port for API server (e.g., 3456).",
389
403
  "allOf": [
390
404
  {
391
- "$ref": "#/definitions/__schema38"
405
+ "$ref": "#/definitions/__schema40"
392
406
  }
393
407
  ]
394
408
  }
395
409
  }
396
410
  },
397
- "__schema37": {
411
+ "__schema39": {
398
412
  "type": "string"
399
413
  },
400
- "__schema38": {
414
+ "__schema40": {
401
415
  "type": "number"
402
416
  },
403
- "__schema39": {
417
+ "__schema41": {
404
418
  "type": "object",
405
419
  "propertyNames": {
406
420
  "type": "string"
407
421
  },
408
422
  "additionalProperties": {}
409
423
  },
410
- "__schema40": {
424
+ "__schema42": {
411
425
  "type": "array",
412
426
  "items": {
413
427
  "type": "object",
@@ -415,20 +429,20 @@
415
429
  "match": {
416
430
  "type": "object",
417
431
  "propertyNames": {
418
- "$ref": "#/definitions/__schema41"
432
+ "$ref": "#/definitions/__schema43"
419
433
  },
420
434
  "additionalProperties": {
421
- "$ref": "#/definitions/__schema42"
435
+ "$ref": "#/definitions/__schema44"
422
436
  },
423
437
  "description": "JSON Schema object to match against file attributes."
424
438
  },
425
439
  "set": {
426
440
  "type": "object",
427
441
  "propertyNames": {
428
- "$ref": "#/definitions/__schema43"
442
+ "$ref": "#/definitions/__schema45"
429
443
  },
430
444
  "additionalProperties": {
431
- "$ref": "#/definitions/__schema44"
445
+ "$ref": "#/definitions/__schema46"
432
446
  },
433
447
  "description": "Metadata fields to set when match succeeds."
434
448
  },
@@ -436,7 +450,7 @@
436
450
  "description": "JsonMap transformation (inline definition or named map reference).",
437
451
  "allOf": [
438
452
  {
439
- "$ref": "#/definitions/__schema45"
453
+ "$ref": "#/definitions/__schema47"
440
454
  }
441
455
  ]
442
456
  }
@@ -447,25 +461,25 @@
447
461
  ]
448
462
  }
449
463
  },
450
- "__schema41": {
451
- "type": "string"
452
- },
453
- "__schema42": {},
454
464
  "__schema43": {
455
465
  "type": "string"
456
466
  },
457
467
  "__schema44": {},
458
468
  "__schema45": {
469
+ "type": "string"
470
+ },
471
+ "__schema46": {},
472
+ "__schema47": {
459
473
  "anyOf": [
460
474
  {
461
- "$ref": "#/definitions/__schema46"
475
+ "$ref": "#/definitions/__schema48"
462
476
  },
463
477
  {
464
478
  "type": "string"
465
479
  }
466
480
  ]
467
481
  },
468
- "__schema46": {
482
+ "__schema48": {
469
483
  "anyOf": [
470
484
  {
471
485
  "anyOf": [
@@ -491,7 +505,7 @@
491
505
  "additionalProperties": {
492
506
  "anyOf": [
493
507
  {
494
- "$ref": "#/definitions/__schema46"
508
+ "$ref": "#/definitions/__schema48"
495
509
  },
496
510
  {
497
511
  "type": "object",
@@ -499,12 +513,12 @@
499
513
  "$": {
500
514
  "anyOf": [
501
515
  {
502
- "$ref": "#/definitions/__schema47"
516
+ "$ref": "#/definitions/__schema49"
503
517
  },
504
518
  {
505
519
  "type": "array",
506
520
  "items": {
507
- "$ref": "#/definitions/__schema47"
521
+ "$ref": "#/definitions/__schema49"
508
522
  }
509
523
  }
510
524
  ]
@@ -520,12 +534,12 @@
520
534
  {
521
535
  "type": "array",
522
536
  "items": {
523
- "$ref": "#/definitions/__schema46"
537
+ "$ref": "#/definitions/__schema48"
524
538
  }
525
539
  }
526
540
  ]
527
541
  },
528
- "__schema47": {
542
+ "__schema49": {
529
543
  "type": "object",
530
544
  "properties": {
531
545
  "method": {
@@ -550,23 +564,23 @@
550
564
  "params"
551
565
  ]
552
566
  },
553
- "__schema48": {
567
+ "__schema50": {
554
568
  "type": "object",
555
569
  "propertyNames": {
556
570
  "type": "string"
557
571
  },
558
572
  "additionalProperties": {
559
- "$ref": "#/definitions/__schema46"
573
+ "$ref": "#/definitions/__schema48"
560
574
  }
561
575
  },
562
- "__schema49": {
576
+ "__schema51": {
563
577
  "type": "object",
564
578
  "properties": {
565
579
  "level": {
566
580
  "description": "Logging level (trace, debug, info, warn, error, fatal).",
567
581
  "allOf": [
568
582
  {
569
- "$ref": "#/definitions/__schema50"
583
+ "$ref": "#/definitions/__schema52"
570
584
  }
571
585
  ]
572
586
  },
@@ -574,25 +588,25 @@
574
588
  "description": "Path to log file (logs to stdout if omitted).",
575
589
  "allOf": [
576
590
  {
577
- "$ref": "#/definitions/__schema51"
591
+ "$ref": "#/definitions/__schema53"
578
592
  }
579
593
  ]
580
594
  }
581
595
  }
582
596
  },
583
- "__schema50": {
597
+ "__schema52": {
584
598
  "type": "string"
585
599
  },
586
- "__schema51": {
600
+ "__schema53": {
587
601
  "type": "string"
588
602
  },
589
- "__schema52": {
603
+ "__schema54": {
590
604
  "type": "number"
591
605
  },
592
- "__schema53": {
606
+ "__schema55": {
593
607
  "type": "number"
594
608
  },
595
- "__schema54": {
609
+ "__schema56": {
596
610
  "type": "number"
597
611
  }
598
612
  }