# AGENTS.md

## Directory structure

- **Root (`/`)**: Main entry point
- **All files at root level**: Static HTML pages for different community topics (restaurants, parks, events, etc.) plus shared `site.css` and `site.js`
- No backend or build pipeline

## Developer commands

- **Local dev**: Preview any page in browser: `xdg-open filename.html`
- **No build step**: HTML files are served directly
- **No CI configured**
- **No test framework**: Not a web app, just static pages

## Styling

- Most pages still have inline CSS, but `site.css` is the shared visual system now.
- `site.js` owns shared interactions like the menu, search/filtering, modal, and back-to-top button.

## Git conventions

No standardized branch/Pull request conventions documented.

## Known gotchas

- No external toolchain or build system
- Direct `xdg-open` is the primary way to preview content
