promptFilesLocator.ts ×1

Frontier kind: Joint frontier

unlabeled · c_e280ced538a6

2 tests · 30537 LOC · 163 files · introduces 2 tests · 26 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
1 range26 lines · 1 files
Tests
2 tests

Contains — complete concept membership

All code (extent)
3409 ranges30537 lines · 163 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.

2 tests introduced at this concept.

Introduced code

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

1 file ranked by introduced lines: 26 introduced LOC across 1 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

src/vs/workbench/contrib/chat/common/promptSyntax/utils/promptFilesLocator.ts 26 introduced LOC · 1 range

Open complete file

378 */
379 public async getHookSourceFolders(): Promise<readonly IResolvedPromptSourceFolder[]> {
380 > const configuredLocations = this.getPromptSourceFolders(PromptsType.hook); promptFilesLocator.ts
381 >
382 > // Ignore claude folders since they aren't first-class supported, so we don't want to create invalid formats
383 > // Check for .claude as an actual path segment (starts with ".claude/" or contains "/.claude/")
384 > const allowedHookFolders = configuredLocations.filter(loc =>
385 > !loc.path.startsWith('.claude/') && !loc.path.includes('/.claude/')
386 > );
387 >
388 > // Convert to absolute locations with metadata
389 > const absoluteLocations = await this.toAbsoluteLocations(PromptsType.hook, allowedHookFolders);
390 >
391 > // Deduplicate by search root, keeping the first occurrence
392 > const seen = new ResourceSet();
393 > const result: IResolvedPromptSourceFolder[] = [];
394 > for (const location of absoluteLocations) {
395 > // For hook configs, entries are directories unless the path ends with .json (specific file)
396 > // Default entries have filePattern, user entries don't but are still directories
397 > // searchRoot already points to the correct directory or specific file to use in both cases
398 > if (!seen.has(location.searchRoot)) {
399 > seen.add(location.searchRoot);
400 > result.push({ ...location, uri: location.searchRoot, filePattern: undefined });
401 > }
402 > }
403 >
404 > return result;
405 > }
406
407 /**