Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@

- Null-pointer crash in GenericAnalyzer when chunk content is undefined.
- Tree-sitter symbol extraction now treats node offsets as UTF-8 byte ranges and evicts cached parsers on failures/timeouts.
- **Post-merge integration gaps** (v1.8 audit): Removed orphaned `get_component_usage` source file, deleted phantom allowlist entry, removed dead guidance strings referencing the deleted tool. Added fallback decision card when `intelligence.json` is absent during edit-intent searches, now returns `ready: false` with actionable guidance instead of silently skipping.

## [1.6.2] - 2026-02-17

Expand Down
2 changes: 1 addition & 1 deletion internal-docs
4 changes: 2 additions & 2 deletions src/core/search-quality.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function assessSearchQuality(
nextSteps: [
'Try a narrower query with one concrete symbol, route, or file hint.',
'Apply search filters (framework/language/componentType/layer).',
'Use get_component_usage for dependency or wiring lookups.'
'Use get_symbol_references to find where a specific symbol is used across the codebase.'
]
};
}
Expand Down Expand Up @@ -76,7 +76,7 @@ export function assessSearchQuality(
nextSteps: [
'Add one or two concrete symbols, routes, or file hints to the query.',
'Apply filters (framework/language/componentType/layer) to narrow candidates.',
'Use get_component_usage when the question is about wiring or usages.'
'Use get_symbol_references when the question is about where a symbol or function is used.'
]
})
};
Expand Down
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ const LEGACY_PATHS = {
export const INDEX_CONSUMING_TOOL_NAMES = [
'search_codebase',
'get_symbol_references',
'get_component_usage',
'detect_circular_dependencies',
'get_team_patterns',
'get_codebase_metadata'
Expand Down
108 changes: 0 additions & 108 deletions src/tools/get-component-usage.ts

This file was deleted.

Loading
Loading