When starting work on a new Xcode project, if no CLAUDE.md exists in the project root, create one with:
- Project overview and purpose
- Key architecture decisions
| esphome: | |
| name: ld2410-esp32 | |
| friendly_name: ld2410-esp32 | |
| esp32: | |
| board: esp32dev | |
| framework: | |
| type: arduino | |
| # Enable logging |
| /** | |
| * Customized HTML5 local storage class with additional functionality. | |
| */ | |
| export class LocalStorage | |
| { | |
| // Public Methods | |
| // -------------------------------------------------------------------------------------- // | |
| /** | |
| * Checks if the browser supports local storage. | |
| * @returns true if the local storage is supported; false otherwise. |
| /** | |
| * @author Muhammad Faisal | |
| * @description Service for getting data. | |
| */ | |
| // Angular Imports | |
| import { Injectable } from '@angular/core'; | |
| import { HttpErrorResponse } from '@angular/common/http'; | |
| import { forkJoin as observableForkJoin, Observable } from 'rxjs'; |
| /** | |
| * @author Muhammad FAISAL | |
| * @description Controls the display of html contents only during development mode. | |
| * @example <button development-only>Some Button</button> | |
| */ | |
| // Angular Imports | |
| import { Directive, OnInit, ElementRef, isDevMode } from '@angular/core'; | |
| // Define class for the Directive |
| // Mocked Service | |
| angular.module('mock.users', []). | |
| factory('UserService', function($q) { | |
| var userService = {}; | |
| userService.get = function() { | |
| return { | |
| id: 8888, | |
| name: "test user" | |
| } |
| /* ============================================================= | |
| * bootstrap-scrollspy.js v2.0.1 | |
| * http://twitter.github.com/bootstrap/javascript.html#scrollspy | |
| * ============================================================= | |
| * Copyright 2012 Twitter, Inc. | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * |
| using System; | |
| using System.Collections.Generic; | |
| using System.Globalization; | |
| using System.Linq; | |
| using System.Linq.Expressions; | |
| namespace BetterFacetedSearchAPI | |
| { | |
| class Program | |
| { |