Overview
Rename the .go() method to .send() in the interviewer API across both Python and TypeScript implementations.
Scope
This is an isomorphic change affecting both implementations equally:
Code Changes
Test Updates
Documentation Updates
Examples
Implementation Notes
- Maintain backward compatibility temporarily with deprecation warning, or make breaking change?
- Update version numbers if breaking change
- Verify no
.go() references remain anywhere in the codebase
Search Strategy
# Find all occurrences
grep -r "\.go()" --include="*.py" --include="*.ts" --include="*.md" --include="*.tsx"
Overview
Rename the
.go()method to.send()in the interviewer API across both Python and TypeScript implementations.Scope
This is an isomorphic change affecting both implementations equally:
Code Changes
go()tosend()in interviewer classgo()tosend()in interviewer classTest Updates
.go().go()Documentation Updates
Documentation/CLAUDE.md(root)Python/CLAUDE.mdTypeScript/CLAUDE.mdREADME.mdfilesExamples
Implementation Notes
.go()references remain anywhere in the codebaseSearch Strategy