@gajae-code/agent-core 0.11.3 → 0.11.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.
@@ -82,6 +82,11 @@ export interface MCPToolSelectionEntry extends SessionEntryBase {
82
82
  /** MCP tool names selected for visibility in discovery mode. */
83
83
  selectedToolNames: string[];
84
84
  }
85
+ export interface DiscoveredBuiltinToolSelectionEntry extends SessionEntryBase {
86
+ type: "discovered_builtin_tool_selection";
87
+ /** Discoverable built-in tool names selected for visibility in discovery mode. */
88
+ selectedToolNames: string[];
89
+ }
85
90
  export interface SessionInitEntry extends SessionEntryBase {
86
91
  type: "session_init";
87
92
  /** Full system prompt sent to the model */
@@ -112,7 +117,7 @@ export interface ConfiguredModelChainEntry extends SessionEntryBase {
112
117
  }
113
118
  export interface CustomCompactionSessionEntries {
114
119
  }
115
- export type SessionEntry = SessionMessageEntry | ThinkingLevelChangeEntry | ModelChangeEntry | ServiceTierChangeEntry | CompactionEntry | BranchSummaryEntry | CustomEntry | CustomMessageEntry | LabelEntry | TtsrInjectionEntry | MCPToolSelectionEntry | SessionInitEntry | ModeChangeEntry | ConfiguredModelChainEntry | CustomCompactionSessionEntries[keyof CustomCompactionSessionEntries];
120
+ export type SessionEntry = SessionMessageEntry | ThinkingLevelChangeEntry | ModelChangeEntry | ServiceTierChangeEntry | CompactionEntry | BranchSummaryEntry | CustomEntry | CustomMessageEntry | LabelEntry | TtsrInjectionEntry | MCPToolSelectionEntry | DiscoveredBuiltinToolSelectionEntry | SessionInitEntry | ModeChangeEntry | ConfiguredModelChainEntry | CustomCompactionSessionEntries[keyof CustomCompactionSessionEntries];
116
121
  export interface ReadonlySessionManager {
117
122
  getBranch(leafId?: string | null): SessionEntry[];
118
123
  getEntry(id: string): SessionEntry | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@gajae-code/agent-core",
4
- "version": "0.11.3",
4
+ "version": "0.11.5",
5
5
  "description": "General-purpose agent with transport abstraction, state management, and attachment support",
6
6
  "homepage": "https://gajae-code.com",
7
7
  "author": "Yeachan-Heo and Gajae Code Contributors",
@@ -32,9 +32,9 @@
32
32
  "fmt": "biome format --write ."
33
33
  },
34
34
  "dependencies": {
35
- "@gajae-code/ai": "0.11.3",
36
- "@gajae-code/natives": "0.11.3",
37
- "@gajae-code/utils": "0.11.3",
35
+ "@gajae-code/ai": "0.11.5",
36
+ "@gajae-code/natives": "0.11.5",
37
+ "@gajae-code/utils": "0.11.5",
38
38
  "@opentelemetry/api": "^1.9.0"
39
39
  },
40
40
  "devDependencies": {
@@ -95,6 +95,12 @@ export interface MCPToolSelectionEntry extends SessionEntryBase {
95
95
  selectedToolNames: string[];
96
96
  }
97
97
 
98
+ export interface DiscoveredBuiltinToolSelectionEntry extends SessionEntryBase {
99
+ type: "discovered_builtin_tool_selection";
100
+ /** Discoverable built-in tool names selected for visibility in discovery mode. */
101
+ selectedToolNames: string[];
102
+ }
103
+
98
104
  export interface SessionInitEntry extends SessionEntryBase {
99
105
  type: "session_init";
100
106
  /** Full system prompt sent to the model */
@@ -140,6 +146,7 @@ export type SessionEntry =
140
146
  | LabelEntry
141
147
  | TtsrInjectionEntry
142
148
  | MCPToolSelectionEntry
149
+ | DiscoveredBuiltinToolSelectionEntry
143
150
  | SessionInitEntry
144
151
  | ModeChangeEntry
145
152
  | ConfiguredModelChainEntry