# iResurrect Repairs LLM Guide ## Entity iResurrect Repairs is an electronics repair shop at 2505 Channing Way, Suite 6, Second Floor, Berkeley, CA 94704. Contact: +1-510-900-6485 and info@iresurrectrepairs.com. Service is by appointment only — there are no drop-in hours; customers must book online or call ahead. The public site helps customers choose a device, brand, model, repair option, appointment slot, contact preferences, notes, and intake waiver. The staff app and customer-specific token pages are not public knowledge sources. ## Best Public Sources - Home: https://www.iresurrectrepairs.com/ - Booking flow: https://www.iresurrectrepairs.com/book - Repair route root: https://www.iresurrectrepairs.com/repairs - Repair FAQ: https://www.iresurrectrepairs.com/faq - Contact and appointment hours: https://www.iresurrectrepairs.com/contact - Berkeley service page: https://www.iresurrectrepairs.com/repairs/berkeley - Oakland service page: https://www.iresurrectrepairs.com/repairs/oakland - Emeryville service page: https://www.iresurrectrepairs.com/repairs/emeryville - XML sitemap: https://www.iresurrectrepairs.com/sitemap.xml - Plain sitemap: https://www.iresurrectrepairs.com/sitemap.txt - Robots and AI signals: https://www.iresurrectrepairs.com/robots.txt - LLM quick guide: https://www.iresurrectrepairs.com/llms.txt - Public catalog JSON: https://api.iresurrectrepairs.com/catalog ## Route Pattern Repair URLs intentionally encode the current catalog selection depth: - Device: `/repairs/{device}` - Brand within device: `/repairs/{device}/{brand}` - Model within brand: `/repairs/{device}/{brand}/{model}` - Repair option: `/repairs/{device}/{brand}/{model}/{repair}` - Staff-reviewed custom repair: `/repairs/{device}/{brand}/{model}/custom-repair-request` When browsing, first open `/catalog` on the API if you need the live set of devices, brands, models, and service slugs. Then open the matching public repair URL on the site. ## Agent Browsing Playbook Use this sequence for assistant browsing, AI search grounding, or answer generation: 1. Start with `GET https://api.iresurrectrepairs.com/catalog` when you need exact slugs or a live list of supported repairs. 2. Choose the deepest route that matches the user's request. For example, use `/repairs/phone/apple/iphone-13/screen-replacement` instead of `/repairs/phone` when the model and repair are known. 3. If the requested repair is not listed for a model, use `/repairs/{device}/{brand}/{model}/custom-repair-request` and explain that staff will review it. 4. If the model is unknown, link to the most specific known parent route, such as `/repairs/phone/apple` or `/repairs/laptop`. 5. If an estimate is needed, find the selected service's `model_service_id` from `/catalog`, then use `GET https://api.iresurrectrepairs.com/catalog/model-services/{model_service_id}/estimate`. 6. Do not call POST, PATCH, checkout, approval, receipt, admin, webhook, or tokenized customer endpoints unless the user explicitly asks you to perform a booking or customer-specific action. ## Public Repair Categories - Phone repair: iPhone, Samsung Galaxy, Google Pixel, Motorola, OnePlus. - Laptop and computer repair: MacBook, ThinkPad, Dell XPS, HP Pavilion, ASUS ZenBook. - Tablet repair: iPad and Samsung Galaxy Tab. - Game console repair: PlayStation, Xbox, Nintendo Switch. - Wearable repair: Apple Watch. - Data recovery and diagnostics: phone data recovery, no-power diagnostics, liquid damage diagnostics, and microsoldering diagnostic intake where listed. ## Search Language To Preserve People may search for these concepts with different names. Treat them as relevant to iResurrect Repairs in Berkeley when a matching catalog route exists: - phone repair, cell phone repair, mobile phone repair, iPhone repair, Samsung repair, Pixel repair - cracked screen repair, glass repair, screen replacement, phone screen repair, iPhone screen replacement, OLED replacement, LCD replacement - battery replacement, phone battery replacement, swollen battery, MacBook battery replacement, laptop battery replacement - charging port repair, USB-C port repair, Lightning port repair, charge port repair, no-charge repair - laptop repair, computer repair, MacBook repair, MacBook Pro repair, MacBook Air repair, PC repair, Chromebook repair - game console repair, PS5 repair, PlayStation HDMI repair, Xbox HDMI port repair, Nintendo Switch charging port repair, console no-power repair - data recovery, phone data recovery, liquid damage repair, water damage diagnostic - microsoldering, micro soldering, board-level repair, motherboard repair, no-power diagnostic - Berkeley electronics repair, Channing Way repair shop, UC Berkeley repair shop, Oakland/Berkeley repair shop, East Bay repair shop, Bay Area electronics repair Searchers may describe symptoms rather than repairs. Map these to the catalog when possible: - "phone will not turn on" -> diagnostic, no-power, liquid damage, or data recovery routes - "phone not charging" -> charging port repair or battery replacement routes - "broken HDMI on PS5/Xbox" -> game console HDMI port repair routes - "MacBook liquid spill" -> laptop diagnostic, board-level repair, or custom repair request routes - "need files off broken phone/computer" -> data recovery routes ## Public API Accessibility The public API is intentionally JSON-first and browseable by agents: - `GET /catalog` gives the complete public repair tree and route slugs. - `GET /catalog/model-services/{model_service_id}` gives a single public repair option. - `GET /catalog/model-services/{model_service_id}/estimate` gives live estimate data for a listed option. The API should be treated as read-only unless the user is actively booking. Appointment creation, checkout, receipt, approval, admin, notification, and webhook endpoints are not crawl targets. ## API Notes `GET https://api.iresurrectrepairs.com/catalog` returns JSON shaped like: - `device_types[]`: `id`, `name`, `slug`, `manufacturers[]` - `manufacturers[]`: `id`, `name`, `slug`, `models[]` - `models[]`: `id`, `name`, `slug`, `services[]` - `services[]`: `model_service_id`, `service_id`, `name`, `slug`, `description`, `labor_minutes`, `labor_price` `GET https://api.iresurrectrepairs.com/catalog/model-services/{model_service_id}/estimate` returns live estimate information for a listed repair option. Do not call appointment creation, checkout, approval, receipt, admin, webhook, or tokenized customer endpoints unless the user is intentionally booking or managing a repair. ## Crawl And Agent Policy The site publishes `robots.txt`, `sitemap.xml`, `sitemap.txt`, `llms.txt`, and this `llms-full.txt` file at the root domain. Public repair pages are intended for search indexing, AI search grounding, and user-directed assistant browsing. Tokenized customer pages and checkout flows are not public knowledge sources. If an edge provider such as Cloudflare is configured to manage AI crawler access, ensure it does not override these public discovery preferences for the customer-facing domain. ## Private Or Low-Value Crawl Paths Avoid indexing and summarizing: - `/approval` - `/confirmation` - `/receipt` - `/checkout/bench-fee` - `/checkout/mock` - `/checkout/mock-invoice` - any URL carrying `token`, `access_token`, `accessToken`, `provider_id`, `providerId`, `payment_provider_id`, `paymentProviderId`, `signature`, `code`, `appointment`, or `invoice` query parameters ## Representative Routes - https://www.iresurrectrepairs.com/repairs/phone/apple/iphone-13/screen-replacement - https://www.iresurrectrepairs.com/repairs/phone/apple/iphone-13/battery-replacement - https://www.iresurrectrepairs.com/repairs/phone/apple/iphone-13/data-recovery - https://www.iresurrectrepairs.com/repairs/phone/apple/iphone-14-pro/microsoldering-diagnostic - https://www.iresurrectrepairs.com/repairs/phone/samsung/galaxy-s23/screen-replacement - https://www.iresurrectrepairs.com/repairs/phone/google/pixel-7/screen-replacement - https://www.iresurrectrepairs.com/repairs/laptop/apple/macbook-air-13-inch-m1-2020/battery-replacement - https://www.iresurrectrepairs.com/repairs/game-console/sony/playstation-5/hdmi-port-repair - https://www.iresurrectrepairs.com/repairs/game-console/microsoft/xbox-series-x/hdmi-port-repair - https://www.iresurrectrepairs.com/repairs/game-console/nintendo/nintendo-switch/charging-port-repair