33 lines
1.0 KiB
Markdown
33 lines
1.0 KiB
Markdown
# AGENTS.md
|
|
|
|
## Project Overview
|
|
|
|
Shiloh Echo retreat website. A static site built with plain HTML, CSS, and JavaScript — no build step or framework.
|
|
|
|
## Structure
|
|
|
|
- `index.html` — main landing page
|
|
- `schedule.html` — schedule/service times page
|
|
- `css/` — stylesheets
|
|
- `js/` — JavaScript files
|
|
- `components/` — reusable HTML components
|
|
- `assets/` — images and static assets
|
|
|
|
## Commands
|
|
|
|
- No build, test, or lint commands. Open `.html` files directly in a browser to preview.
|
|
|
|
## Conventions
|
|
|
|
- Plain HTML/CSS/JS only. Do not introduce frameworks (React, Vue, Tailwind, etc.) unless explicitly requested.
|
|
- Keep changes minimal and consistent with the existing code style.
|
|
- Prefer editing existing files over creating new ones.
|
|
- Do not add comments to code unless asked.
|
|
- Never commit changes unless explicitly requested.
|
|
|
|
## Working on this repo
|
|
|
|
- Read the relevant file fully before editing to understand context.
|
|
- Match existing indentation, naming, and formatting.
|
|
- Verify links and paths still resolve after structural changes.
|