A CLAUDE.md is just a markdown file at the root of your repo. Copy the content below into your own project's CLAUDE.md to give your agent the same context.
npx versuz@latest install realworld-apps-angular-realworld-example-app --kind=claude-mdcurl -o CLAUDE.md https://raw.githubusercontent.com/realworld-apps/angular-realworld-example-app/HEAD/CLAUDE.md# Angular RealWorld Example App ## Commands ```bash bun run setup # Init submodules + install deps (run after clone or after realworld submodule update) bun run start # Dev server at localhost:4200 bun run test # Unit tests (Vitest) bun run test:e2e # E2E tests (Playwright) bun run format # Format code with Prettier bun run format:check # Check formatting without writing ``` ## Code Style - Run `bun run format` before presenting code to the user. ## Debug Interface E2E tests use `window.__conduit_debug__` to access app state. See `e2e/helpers/debug.ts` for helpers and implementation examples for Angular/React/Vue.