A production-ready starter pack for vanilla HTML/CSS/JS websites with 3 preconfigured AI coding assistants. Skip the setup, start building.
- 3 AI Agents, 1 Workflow - Claude Code, Gemini CLI, and Codex CLI all share identical slash commands
- Mandatory Brief-First Approach - Enforces proper requirements gathering before coding
- 15 Built-in Audits - SEO, accessibility, performance, responsive design, security, and more
- Media Optimization Pipeline - Scripts for image/video compression ready to use
- Professional Standards - BEM CSS, semantic HTML5, WCAG AA compliance baked in
| Agent | Config File | Commands | Settings |
|---|---|---|---|
| Claude Code CLI | CLAUDE.md |
.claude/commands/*.md |
.claude/settings.local.json |
| Gemini CLI | GEMINI.md |
.gemini/commands/*.toml |
.gemini/settings.json |
| Codex CLI | CODEX.md |
.codex/prompts/*.md |
.codex/config.toml |
| Script | Purpose | Usage |
|---|---|---|
watch.js |
CSS/JS file watcher with auto-minify | node _scripts/watch.js |
auto-minify-css.js |
CSS minification (one-time or watch) | node _scripts/auto-minify-css.js |
minify-js.js |
JavaScript minification (Terser) | node _scripts/minify-js.js |
optimize-images.js |
Image optimization (Sharp) - AVIF/WebP/JPG | node _scripts/optimize-images.js |
optimize-video.js |
Video optimization (FFmpeg) - WebM/MP4 | node _scripts/optimize-video.js |
snapshot_code.ps1 |
Project code snapshot | PowerShell script |
snapshot_structure.ps1 |
Directory structure snapshot | PowerShell script |
run-codex.ps1 |
Codex CLI wrapper (sets CODEX_HOME) | .\_scripts\run-codex.ps1 |
| Guide | Description |
|---|---|
guide-automation.md |
Watch & minify workflow setup |
guide-media-optimization.md |
Image/video optimization pipeline |
guide-claude-mem.md |
Claude Memory plugin (persistent cross-session memory) |
notes-claude-mem.md |
Claude Memory quick reference |
| File | Purpose |
|---|---|
.editorconfig |
Code formatting standards (UTF-8, LF, 2-space indent) |
.gitattributes |
Git line ending rules |
.gitignore |
Starter pack gitignore (AI configs committed) |
.gitignore.template |
User project gitignore (AI configs ignored) |
- Node.js 18+ (for helper scripts)
- At least one AI CLI installed (see Installation below)
# macOS/Linux
curl -fsSL https://claude.ai/install.sh | sh
# Or via npm
npm install -g @anthropic-ai/claude-codenpm install -g @google/gemini-clinpm install -g @openai/codexnpm init -y
npm install -D terser sharp ffmpeg-static# In project directory
claude# In project directory
gemini
# With optional system prompt override:
export GEMINI_SYSTEM_MD=1 # Linux/macOS
$env:GEMINI_SYSTEM_MD="1" # Windows PowerShell
gemini# Recommended: Use the PowerShell wrapper (sets CODEX_HOME)
.\_scripts\run-codex.ps1
# Or directly (requires manual CODEX_HOME)
$env:CODEX_HOME=".codex"
codexAll three agents share the same command set for consistency.
| Command | Description |
|---|---|
/stage-brief |
Start Stage 1: Ask 8-12 discovery questions (zero code) |
/stage-vision |
Start Stage 2: Propose visual direction (palette, typography, layout) |
/mode-quick-fix |
Quick fix mode: Skip brief, go straight to minimal fix |
/readme-generate |
Generate professional README.md + LICENSE (DominDev branding) |
| Command | Output | Description |
|---|---|---|
/audit-seo |
_docs/report-seo.md |
SEO + technical audit |
/audit-a11y |
_docs/report-a11y.md |
Accessibility (WCAG/ARIA/keyboard/focus) |
/audit-performance |
_docs/report-performance.md |
Core Web Vitals + performance |
/audit-responsive |
_docs/report-responsive.md |
Responsive design + mobile UX |
/audit-assets |
_docs/report-assets.md |
Image/font optimization opportunities |
/audit-html |
_docs/report-html.md |
HTML semantics + correctness |
/audit-css |
_docs/report-css.md |
CSS conventions + best practices |
| Command | Output | Description |
|---|---|---|
/content-copy-ux |
_docs/report-copy-ux.md |
Copy review + UX improvements |
/content-form-review |
_docs/report-forms.md |
Form validation + accessibility |
| Command | Output | Description |
|---|---|---|
/project-cleanup |
_docs/report-project-cleanup.md |
Repository organization review |
/security-basics |
_docs/report-security-basics.md |
Frontend security baseline |
/deploy-checklist |
_docs/checklist-deploy.md |
Pre-deployment verification |
Settings in .claude/settings.local.json provide broad permissions for trusted projects:
- Auto-approval for most operations
- File edit, bash, web fetch allowed
- Helper script execution permitted
Use the --approval-mode=yolo flag for broad access:
gemini --approval-mode=yoloConfiguration in .codex/config.toml:
model = "gpt-5.2-codex"- Recommended for ChatGPT account (usegpt-4ofor OpenAI API)approval_policy = "never"- Auto-approvalsandbox_mode = "danger-full-access"- Full filesystem accessmodel_reasoning_effort = "medium"- Balanced reasoning/speed
Available models:
- ChatGPT account:
gpt-5.2-codex,gpt-5.1-codex-max,gpt-5.1-codex-mini,gpt-5.2 - OpenAI API:
gpt-4o,gpt-4-turbo,gpt-3.5-turbo
Warning: All three agents are configured with broad permissions. Use only in trusted projects!
All agents enforce the same development standards:
- Semantic HTML5
- One
<h1>per page - Correct heading hierarchy
- Accessibility-first approach
- BEM methodology
- CSS custom properties (
:rootvariables) - CSS Grid + Flexbox
- Full responsiveness (1024/768/480/360px breakpoints)
- No Tailwind unless explicitly requested
- Vanilla JS (no frameworks)
DOMContentLoadedinitializationIntersectionObserverfor scroll reveals- Mobile hamburger menu pattern
- UX: Nielsen heuristics
- Accessibility: WCAG AA compliance (contrast, keyboard, focus, reduced motion)
- Performance: Core Web Vitals mindset (no render-blocking, lazy-load, minimal JS)
- Commit messages: imperative mood, max 72 chars
- Format:
type(scope): description - Example:
fix(css): correct mobile nav overflow
This starter pack includes two gitignore files:
- AI configs (
CLAUDE.md,.claude/, etc.) are NOT ignored - This allows the starter pack to include all configuration files
- AI configs ARE ignored
- After copying the starter pack to a new project:
# Linux/macOS
mv .gitignore.template .gitignore
# Windows
ren .gitignore.template .gitignoreThis ensures your project-specific AI configurations stay local and don't get committed to your project's repository.
Start the CSS/JS watcher for automatic minification:
node _scripts/watch.jsOr use VS Code: Ctrl+Shift+B → "Watch & Minify Assets"
Images (generates AVIF/WebP/JPG in 4 sizes):
node _scripts/optimize-images.js
# Input: assets/img/originals/
# Output: assets/img/optimized/Video (generates WebM/MP4):
node _scripts/optimize-video.js
# Input: assets/video/originals/
# Output: assets/video/optimized/See _docs/guide-media-optimization.md for HTML usage examples.
ai-starter-vanilla/
├── .claude/ # Claude Code CLI config
│ ├── commands/*.md # Slash command definitions
│ └── settings.local.json # Project settings
├── .gemini/ # Gemini CLI config
│ ├── commands/*.toml # Slash command definitions
│ └── settings.json # Project settings
├── .codex/ # Codex CLI config
│ ├── prompts/*.md # Slash command definitions
│ ├── config.toml # Project settings
│ └── AGENTS.md # Agent guidance
├── _docs/ # Documentation & reports
│ ├── guide-*.md # Guides
│ ├── report-*.md # Audit reports (generated)
│ └── notes-*.md # Quick references
├── _scripts/ # Helper scripts
│ ├── watch.js # File watcher
│ ├── optimize-images.js # Image optimization
│ ├── optimize-video.js # Video optimization
│ └── ... # Other utilities
├── CLAUDE.md # Claude Code operating rules
├── GEMINI.md # Gemini CLI operating rules
├── CODEX.md # Codex CLI operating rules
├── .editorconfig # Code formatting
├── .gitattributes # Git line endings
├── .gitignore # Starter pack gitignore
├── .gitignore.template # User project gitignore
├── LICENSE # MIT License
└── README.md # This file
Created and maintained by DominDev.
This starter pack combines best practices from professional web development with the power of AI coding assistants. It enforces a brief-first workflow, ensuring proper requirements gathering before any code is written.
This project is licensed under the MIT License - see the LICENSE file for details.