A tool to generate AI agent configuration files (AGENTS.md) for your projects.
- Interactive questionnaire to capture project details
- Live preview of generated configuration
- Customizable tech stack, frameworks, and best practices
- Sub-agent configuration suggestions
- Dark theme with Mindera-inspired design
# Navigate to the agent-generator directory
cd agent-generator
# Start a local server (Python 3)
python3 -m http.server 8000
# Open in browser
# Visit: http://localhost:8000# Install http-server globally (one time)
npm install -g http-server
# Navigate to the agent-generator directory
cd agent-generator
# Start server
http-server -p 8000
# Open in browser
# Visit: http://localhost:8000- Install "Live Server" extension in VS Code
- Open the
agent-generatorfolder in VS Code - Right-click on
index.html - Select "Open with Live Server"
The application loads template files (JSON, markdown) using JavaScript fetch API.
Modern browsers block these requests when opening HTML files directly (file:// protocol) for security reasons (CORS policy).
Running a local server solves this by serving files over HTTP.
-
Fill out the questionnaire sections:
- Basic Information (project name, description, structure)
- Tech Stack (select your technologies)
- Testing Frameworks
- Best Practices
- Code Style & Linters
- Workflows & Commands
-
Watch the live preview update as you type
-
Toggle sections on/off using checkboxes
-
Download the generated
AGENTS.mdfile -
Preview and download suggested sub-agent configurations
- HTML5
- CSS3 (with dark theme and gold accents)
- Vanilla JavaScript (ES6+)
- No build process required
MIT