This feature was already implemented in commit af7bcba (PR #20, 2026-02-25) as part of "feat: Add schema enrichment fields to symbol index".
File: src/cache/mod.rs
pub decorators: String,File: src/sqlite_export.rs (line 222)
decorators TEXT DEFAULT '',File: src/sqlite_export.rs (lines 373, 399)
stmt.execute(params![
// ... other fields ...
entry.decorators,
// ... more fields ...
])File: src/shard.rs (line 907)
decorators: symbol_info.decorators.join(","),All requirements from issue #24 are complete:
- ✅
decorators: Stringfield inSymbolIndexEntry - ✅
decorators TEXTcolumn in nodes table - ✅ Populated in
flush_node_batch()
The issue description is outdated and the feature is fully functional in the main branch.