@compilr-dev/sdk 0.10.21 → 0.10.22

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.
@@ -83,6 +83,15 @@ export const CAPABILITY_PACKS = {
83
83
  estimatedPromptTokens: 0,
84
84
  estimatedToolTokens: 300,
85
85
  },
86
+ consult: {
87
+ id: 'consult',
88
+ label: 'Agent Consult',
89
+ tools: ['consult'],
90
+ readOnly: false,
91
+ promptModules: [],
92
+ estimatedPromptTokens: 0,
93
+ estimatedToolTokens: 300,
94
+ },
86
95
  guide: {
87
96
  id: 'guide',
88
97
  label: 'CLI Documentation',
@@ -28,6 +28,7 @@ const TOOL_NAMES = {
28
28
  DELEGATE_BACKGROUND: 'delegate_background',
29
29
  DELEGATION_STATUS: 'delegation_status',
30
30
  HANDOFF: 'handoff',
31
+ CONSULT: 'consult',
31
32
  // CLI guide
32
33
  COMPILR_GUIDE: 'compilr_guide',
33
34
  // Meta-tools
@@ -493,6 +494,7 @@ export const TOOL_PROFILES = {
493
494
  'tasks',
494
495
  'interaction',
495
496
  'handoff',
497
+ 'consult',
496
498
  'guide',
497
499
  'subagents',
498
500
  'meta',
@@ -522,6 +524,7 @@ export const TOOL_PROFILES = {
522
524
  'shell',
523
525
  'interaction',
524
526
  'handoff',
527
+ 'consult',
525
528
  'guide',
526
529
  'subagents',
527
530
  'meta',
@@ -536,6 +539,7 @@ export const TOOL_PROFILES = {
536
539
  'file_write',
537
540
  'interaction',
538
541
  'handoff',
542
+ 'consult',
539
543
  'guide',
540
544
  'subagents',
541
545
  'meta',
@@ -553,6 +557,7 @@ export const TOOL_PROFILES = {
553
557
  'tasks',
554
558
  'interaction',
555
559
  'handoff',
560
+ 'consult',
556
561
  'guide',
557
562
  'subagents',
558
563
  'meta',
@@ -570,6 +575,7 @@ export const TOOL_PROFILES = {
570
575
  'tasks',
571
576
  'interaction',
572
577
  'handoff',
578
+ 'consult',
573
579
  'guide',
574
580
  'subagents',
575
581
  'meta',
@@ -585,6 +591,7 @@ export const TOOL_PROFILES = {
585
591
  'tasks',
586
592
  'interaction',
587
593
  'handoff',
594
+ 'consult',
588
595
  'guide',
589
596
  'subagents',
590
597
  'meta',
@@ -607,6 +614,7 @@ export const TOOL_PROFILES = {
607
614
  'tasks',
608
615
  'interaction',
609
616
  'handoff',
617
+ 'consult',
610
618
  'guide',
611
619
  'subagents',
612
620
  'meta',
@@ -629,6 +637,7 @@ export const TOOL_PROFILES = {
629
637
  'tasks',
630
638
  'interaction',
631
639
  'handoff',
640
+ 'consult',
632
641
  'guide',
633
642
  'subagents',
634
643
  'meta',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compilr-dev/sdk",
3
- "version": "0.10.21",
3
+ "version": "0.10.22",
4
4
  "description": "Universal agent runtime for building AI-powered applications",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",