generated from MrSphay/codex-agent-repository-kit
37 lines
520 B
Markdown
37 lines
520 B
Markdown
# Static Site Profile
|
|
|
|
Use when the repository produces static HTML/CSS/JS output.
|
|
|
|
## Checks
|
|
|
|
Look for:
|
|
|
|
- broken asset paths,
|
|
- missing responsive viewport,
|
|
- inaccessible contrast,
|
|
- large unoptimized images,
|
|
- external scripts without a clear reason,
|
|
- generated output directory.
|
|
|
|
## Commands
|
|
|
|
Common examples:
|
|
|
|
```text
|
|
INSTALL_COMMAND = npm install
|
|
DEV_COMMAND = npm run dev
|
|
LINT_COMMAND = npm run lint
|
|
BUILD_COMMAND = npm run build
|
|
```
|
|
|
|
## Artifacts
|
|
|
|
Common output directories:
|
|
|
|
```text
|
|
dist/
|
|
build/
|
|
public/
|
|
```
|
|
|