claudeAgent.ts ×6

Frontier kind: Code frontier

unlabeled · c_82d657ddec68

2 tests · 56993 LOC · 346 files · introduces 0 tests · 17 LOC · 3 files

Introduces — evidence that enters the hierarchy at this concept

Code
8 ranges17 lines · 3 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
5776 ranges56993 lines · 346 files · Browse complete extent
All tests (intent)
2 testsBrowse complete intent

Neighbourhood graph

The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.

Introduced files, introduced tests, and structurally relevant concept specialization

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

No tests are introduced at this concept. Its intent tests are introduced by other concepts.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

3 files ranked by introduced lines: 17 introduced LOC across 8 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

src/vs/platform/agentHost/node/claude/claudeAgent.ts 13 introduced LOC · 6 ranges

Open complete file

357 */
358 private _findChat(session: URI, chat: URI | undefined): ClaudeAgentSession | undefined {
359 > const entry = this._sessions.get(AgentSession.id(session)); claudeAgent.ts
360 > if (!entry) {
361 return undefined;
362 }
363 > return entry.getChat((chat ?? URI.parse(buildDefaultChatUri(session))).toString()); claudeAgent.ts
364 > }
365
366 private _getChatContext(chatOrSession: URI): { session: URI; sessionId: string; chatKey: string; target: ClaudeAgentSession | undefined; isPeerChat: boolean } {
1443 return AgentSession.id(session);
1444 }
1445 > const inMemory = this._findChat(session, chatUri)?.sessionId; claudeAgent.ts
1446 if (inMemory) {
1447 > return inMemory; claudeAgent.ts
1448 > }
1449 return this._resolveChatBacking(chatUri)?.sdkSessionId;
1450 }
1693 const context = this._getChatContext(chat);
1694 if (context.isPeerChat) {
1695 > const sdkId = await this._resolveChatSdkId(parentSessionUri, chat); claudeAgent.ts
1696 > if (!sdkId) {
1697 return [];
1698 }
1699 > const turns = await this._reconstructTurns(sdkId, chat, context.target); claudeAgent.ts
1700 > const sideChat = this._resolveChatBacking(chat)?.sideChat;
1701 > return stripSideChatContext(turns.slice(sideChat?.inheritedTurnCount ?? 0), sideChat);
1702 > }
1703
1704 const sess = context.target;
src/vs/platform/agentHost/node/agentPeerChats.ts 2 introduced LOC · 1 range

Open complete file

292 /** Uniform lookup: the chat's session (default OR peer) by its chat-URI key. */
293 getChat(chatKey: string): TSession | undefined {
294 > return this._chats.get(chatKey)?.ownSession; agentPeerChats.ts
295 > }
296
297 /** Uniform lookup with default-vs-peer identity from the entry that resolved the chat. */
src/vs/platform/agentHost/node/claude/claudeSubagentRegistry.ts 2 introduced LOC · 1 range

Open complete file

245 function extractAgentIdPair(part: ResponsePart): { toolCallId: string; agentId: string } | undefined {
246 if (part.kind !== ResponsePartKind.ToolCall) {
247 > return undefined; claudeSubagentRegistry.ts
248 > }
249 const state = part.toolCall;
250 if (!SUBAGENT_TOOL_NAMES.has(state.toolName)) {