@compilr-dev/sdk 0.10.21 → 0.10.23

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
@@ -172,6 +173,13 @@ export const TOOL_GROUPS = {
172
173
  tier: 'direct',
173
174
  note: 'Hand off current task to another specialist or coordinator',
174
175
  },
176
+ consult: {
177
+ label: 'Agent Consult',
178
+ tools: [TOOL_NAMES.CONSULT],
179
+ readOnly: false,
180
+ tier: 'direct',
181
+ note: 'Ask another specialist a focused question without giving up the conversation',
182
+ },
175
183
  guide: {
176
184
  label: 'CLI Documentation',
177
185
  tools: [TOOL_NAMES.COMPILR_GUIDE],
@@ -493,6 +501,7 @@ export const TOOL_PROFILES = {
493
501
  'tasks',
494
502
  'interaction',
495
503
  'handoff',
504
+ 'consult',
496
505
  'guide',
497
506
  'subagents',
498
507
  'meta',
@@ -522,6 +531,7 @@ export const TOOL_PROFILES = {
522
531
  'shell',
523
532
  'interaction',
524
533
  'handoff',
534
+ 'consult',
525
535
  'guide',
526
536
  'subagents',
527
537
  'meta',
@@ -536,6 +546,7 @@ export const TOOL_PROFILES = {
536
546
  'file_write',
537
547
  'interaction',
538
548
  'handoff',
549
+ 'consult',
539
550
  'guide',
540
551
  'subagents',
541
552
  'meta',
@@ -553,6 +564,7 @@ export const TOOL_PROFILES = {
553
564
  'tasks',
554
565
  'interaction',
555
566
  'handoff',
567
+ 'consult',
556
568
  'guide',
557
569
  'subagents',
558
570
  'meta',
@@ -570,6 +582,7 @@ export const TOOL_PROFILES = {
570
582
  'tasks',
571
583
  'interaction',
572
584
  'handoff',
585
+ 'consult',
573
586
  'guide',
574
587
  'subagents',
575
588
  'meta',
@@ -585,6 +598,7 @@ export const TOOL_PROFILES = {
585
598
  'tasks',
586
599
  'interaction',
587
600
  'handoff',
601
+ 'consult',
588
602
  'guide',
589
603
  'subagents',
590
604
  'meta',
@@ -607,6 +621,7 @@ export const TOOL_PROFILES = {
607
621
  'tasks',
608
622
  'interaction',
609
623
  'handoff',
624
+ 'consult',
610
625
  'guide',
611
626
  'subagents',
612
627
  'meta',
@@ -629,6 +644,7 @@ export const TOOL_PROFILES = {
629
644
  'tasks',
630
645
  'interaction',
631
646
  'handoff',
647
+ 'consult',
632
648
  'guide',
633
649
  'subagents',
634
650
  '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.23",
4
4
  "description": "Universal agent runtime for building AI-powered applications",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",