← ClaudeAtlas

search-web-implementationlisted

Search the web monorepo (../app) to find how web handles equivalent functionality. Use when implementing mobile features that need to match web behavior, finding web routes, or understanding how web handles a specific feature like statements, portfolios, or user flows.
luigiinred/dotfiles · ★ 1 · Web & Frontend · score 57
Install: claude install-skill luigiinred/dotfiles
# Search Web Implementation Find how the web app handles equivalent functionality to ensure mobile/web consistency. ## Web Monorepo Location The web monorepo is located at `../app` relative to the mobile-app workspace, or at the absolute path `/Users/timmy.garrabrant/Developer/app`. ## Key Directories | Directory | Contents | | ------------- | ------------------------------------------------ | | `client/` | Frontend React/TypeScript code (.tsx, .jsx, .ts) | | `app/` | Rails controllers, views, models | | `engines/` | Rails engines (modular features) | | `subsystems/` | Domain subsystems (business logic) | | `config/` | Routes, configuration | ## Search Strategy ### 1. Find Routes Search Rails routes for URL patterns: ```bash # Search route definitions rg "quarterly_statements|annual_reports" ../app/config/ ../app/engines/*/config/ rg "activity.report|activity-report" ../app/config/ ../app/engines/*/config/ ``` ### 2. Find Frontend Components Search React components in `client/`: ```bash rg "QuarterlyStatement|AnnualReport" ../app/client/ --type tsx --type ts rg "statement.*url|getStatementUrl" ../app/client/ -i ``` ### 3. Find Backend Logic Search subsystems and engines: ```bash rg "def quarterly_statement|quarterly_statements" ../app/subsystems/ ../app/engines/ rg "activity_report|ActivityReport" ../app/subsystems/ ../app/engin