- Property and method search with auto-detection (SCF-004)
- Search for object properties using dot notation:
scip-finder MyThing.myProp - Search for class methods using parentheses:
scip-finder MyThing.method() - Wildcard search matches both properties and methods:
scip-finder process - No special flags required - backward compatible with existing symbol search
- Search for object properties using dot notation:
- Enhanced symbol parsing to preserve SCIP suffix type information
- Query engine now supports suffix-aware filtering for properties and methods
- Better support for object-oriented codebases with property/method navigation
- Extracted SCIP format module into dedicated value objects (
SymbolParser,SymbolIndexKey,SuffixType) - Fixed layer violation by moving
handleFromFilterfromutils/index.tstocli/index.ts - All 184 tests passing across 9 test suites
- README updated with property and method search examples
- Architecture documentation expanded in
docs/CRs/SCF-004/
- Type-aware symbol search using SCIP indexes
- Fast queries on large codebases (<100k LOC in <1 second)
- Flexible filtering by defining file (
--from) or folder (--folder) - Multiple output formats: grep-like text or structured JSON
- Zero-config SCIP file discovery
- Auto-discovery of
index.scipin current directory