@jaggerxtrm/specialists 3.13.0 → 3.14.1
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/config/mandatory-rules/changelog-keeper-scope.md +18 -30
- package/config/skills/using-script-specialists/SKILL.md +7 -5
- package/config/skills/using-specialists-v3/SKILL.md +140 -0
- package/config/specialists/changelog-keeper.specialist.json +7 -12
- package/dist/index.js +390 -146
- package/dist/lib.js +145 -43
- package/dist/types/cli/script.d.ts.map +1 -1
- package/dist/types/cli/serve.d.ts +11 -2
- package/dist/types/cli/serve.d.ts.map +1 -1
- package/dist/types/specialist/observability-sqlite.d.ts +1 -0
- package/dist/types/specialist/observability-sqlite.d.ts.map +1 -1
- package/dist/types/specialist/schema.d.ts +27 -0
- package/dist/types/specialist/schema.d.ts.map +1 -1
- package/dist/types/specialist/script-runner.d.ts +5 -1
- package/dist/types/specialist/script-runner.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -32,6 +32,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
32
32
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
33
33
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
34
34
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
35
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
35
36
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
36
37
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
37
38
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -67,6 +68,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
67
68
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
68
69
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
69
70
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
71
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
70
72
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
71
73
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
72
74
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -102,6 +104,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
102
104
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
103
105
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
104
106
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
107
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
105
108
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
106
109
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
107
110
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -351,6 +354,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
351
354
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
352
355
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
353
356
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
357
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
354
358
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
355
359
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
356
360
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -386,6 +390,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
386
390
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
387
391
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
388
392
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
393
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
389
394
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
390
395
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
391
396
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -421,6 +426,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
421
426
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
422
427
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
423
428
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
429
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
424
430
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
425
431
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
426
432
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -670,6 +676,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
670
676
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
671
677
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
672
678
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
679
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
673
680
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
674
681
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
675
682
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -705,6 +712,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
705
712
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
706
713
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
707
714
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
715
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
708
716
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
709
717
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
710
718
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -740,6 +748,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
740
748
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
741
749
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
742
750
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
751
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
743
752
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
744
753
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
745
754
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -991,6 +1000,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
991
1000
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
992
1001
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
993
1002
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1003
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
994
1004
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
995
1005
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
996
1006
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -1026,6 +1036,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
1026
1036
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
1027
1037
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
1028
1038
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1039
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1029
1040
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
1030
1041
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
1031
1042
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -1061,6 +1072,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
1061
1072
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
1062
1073
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
1063
1074
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1075
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1064
1076
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
1065
1077
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
1066
1078
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -1310,6 +1322,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
1310
1322
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
1311
1323
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
1312
1324
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1325
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1313
1326
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
1314
1327
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
1315
1328
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -1345,6 +1358,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
1345
1358
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
1346
1359
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
1347
1360
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1361
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1348
1362
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
1349
1363
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
1350
1364
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -1380,6 +1394,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
1380
1394
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
1381
1395
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
1382
1396
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1397
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1383
1398
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
1384
1399
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
1385
1400
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -1629,6 +1644,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
1629
1644
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
1630
1645
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
1631
1646
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1647
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1632
1648
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
1633
1649
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
1634
1650
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -1664,6 +1680,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
1664
1680
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
1665
1681
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
1666
1682
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1683
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1667
1684
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
1668
1685
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
1669
1686
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -1699,6 +1716,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
1699
1716
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
1700
1717
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
1701
1718
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1719
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1702
1720
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
1703
1721
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
1704
1722
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -1950,6 +1968,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
1950
1968
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
1951
1969
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
1952
1970
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1971
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1953
1972
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
1954
1973
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
1955
1974
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -1985,6 +2004,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
1985
2004
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
1986
2005
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
1987
2006
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
2007
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1988
2008
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
1989
2009
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
1990
2010
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -2020,6 +2040,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
2020
2040
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
2021
2041
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
2022
2042
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
2043
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
2023
2044
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
2024
2045
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
2025
2046
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -2269,6 +2290,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
2269
2290
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
2270
2291
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
2271
2292
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
2293
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
2272
2294
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
2273
2295
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
2274
2296
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -2304,6 +2326,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
2304
2326
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
2305
2327
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
2306
2328
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
2329
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
2307
2330
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
2308
2331
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
2309
2332
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -2339,6 +2362,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
2339
2362
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
2340
2363
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
2341
2364
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
2365
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
2342
2366
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
2343
2367
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
2344
2368
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -2588,6 +2612,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
2588
2612
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
2589
2613
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
2590
2614
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
2615
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
2591
2616
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
2592
2617
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
2593
2618
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -2623,6 +2648,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
2623
2648
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
2624
2649
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
2625
2650
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
2651
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
2626
2652
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
2627
2653
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
2628
2654
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -2658,6 +2684,7 @@ export declare const SpecialistSchema: z.ZodObject<{
|
|
|
2658
2684
|
max_retries: z.ZodDefault<z.ZodNumber>;
|
|
2659
2685
|
interactive: z.ZodDefault<z.ZodBoolean>;
|
|
2660
2686
|
stdout_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
2687
|
+
prompt_limit_bytes: z.ZodOptional<z.ZodNumber>;
|
|
2661
2688
|
response_format: z.ZodDefault<z.ZodEnum<["text", "json", "markdown"]>>;
|
|
2662
2689
|
/** Semantic output archetype used for structured output contracts and schema extensions. */
|
|
2663
2690
|
output_type: z.ZodDefault<z.ZodEnum<["codegen", "analysis", "review", "synthesis", "orchestration", "workflow", "research", "custom"]>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/specialist/schema.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/specialist/schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type ChildProcess } from 'node:child_process';
|
|
2
2
|
import { SpecialistLoader } from './loader.js';
|
|
3
3
|
import type { Specialist } from './schema.js';
|
|
4
|
-
export type ScriptSpecialistErrorType = 'specialist_not_found' | 'specialist_load_error' | 'template_variable_missing' | 'auth' | 'quota' | 'timeout' | 'network' | 'invalid_json' | 'output_too_large' | 'internal';
|
|
4
|
+
export type ScriptSpecialistErrorType = 'specialist_not_found' | 'specialist_load_error' | 'template_variable_missing' | 'auth' | 'quota' | 'timeout' | 'network' | 'invalid_json' | 'prompt_too_large' | 'output_too_large' | 'internal';
|
|
5
5
|
export interface ScriptGenerateRequest {
|
|
6
6
|
specialist: string;
|
|
7
7
|
requested_specialist?: string;
|
|
@@ -51,6 +51,7 @@ export declare class CompatGuardError extends Error {
|
|
|
51
51
|
export interface SkillSource {
|
|
52
52
|
path: string;
|
|
53
53
|
sha256: string;
|
|
54
|
+
source: 'skills.paths' | 'prompt.skill_inherit';
|
|
54
55
|
}
|
|
55
56
|
export interface ScriptRunnerOptions {
|
|
56
57
|
loader: SpecialistLoader;
|
|
@@ -64,9 +65,12 @@ export interface ScriptRunnerOptions {
|
|
|
64
65
|
export declare function compatGuard(spec: Specialist, trust?: TrustOptions): void;
|
|
65
66
|
export declare function computeSkillSources(spec: Specialist): SkillSource[];
|
|
66
67
|
export declare function renderTaskTemplate(template: string, variables: Record<string, string>): string;
|
|
68
|
+
export declare function applyOutputContract(prompt: string, spec: Specialist): string;
|
|
67
69
|
export declare const DEFAULT_PENDING_LINE_LIMIT_BYTES: number;
|
|
68
70
|
export declare const DEFAULT_ASSISTANT_TEXT_LIMIT_BYTES: number;
|
|
69
71
|
export declare const DEFAULT_STDERR_LIMIT_BYTES: number;
|
|
72
|
+
export declare const DEFAULT_PROMPT_LIMIT_BYTES: number;
|
|
73
|
+
export declare function resolvePromptLimitBytes(spec: Specialist): number;
|
|
70
74
|
export declare function resolveAssistantTextLimitBytes(spec: Specialist): number;
|
|
71
75
|
export declare function runScriptSpecialist(input: ScriptGenerateRequest, options: ScriptRunnerOptions): Promise<ScriptGenerateResult>;
|
|
72
76
|
export declare function collectModelCandidates(input: ScriptGenerateRequest, spec: Specialist, options: ScriptRunnerOptions): string[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"script-runner.d.ts","sourceRoot":"","sources":["../../../src/specialist/script-runner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,KAAK,YAAY,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"script-runner.d.ts","sourceRoot":"","sources":["../../../src/specialist/script-runner.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jaggerxtrm/specialists",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.14.1",
|
|
4
4
|
"description": "OmniSpecialist — 7-tool MCP orchestration layer powered by the Specialist System. Discover and execute .specialist.yaml files across project/user/system scopes via pi.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|