A minimal template for AI-powered IDE projects with pre-configured settings for popular AI coding assistants.
Deploy to Cloudflare Pages with Wrangler CLI
Make sure you have the GitHub CLI installed:
# macOS
brew install gh
# Windows
winget install --id GitHub.cli
# Linux (Debian/Ubuntu)
sudo apt install gh
# Authenticate with GitHub
gh auth loginUse the GitHub CLI to create a new repository from this template:
gh repo create my-new-repo --template uratmangun/ai-ide-template --private --clonegh repo create my-new-repo --template uratmangun/ai-ide-template --public --clone| Flag | Description |
|---|---|
--template |
Specify the template repository to use |
--private |
Create a private repository |
--public |
Create a public repository |
--clone |
Clone the new repository to your local machine |
# Create without cloning (useful for remote-only setup)
gh repo create my-new-repo --template uratmangun/ai-ide-template --private
# Clone to a specific directory
gh repo create my-new-repo --template uratmangun/ai-ide-template --private --clone
cd my-new-repoThis template comes pre-configured with:
.agents/skills- Agent skills configurations.cursor/- Cursor IDE settingsindex.html- Template landing page
-
Navigate to your new project:
cd my-new-repo -
Customize the template:
- Update
index.htmlwith your project details - Modify AI assistant configurations as needed
- Update
-
Deploy to Cloudflare Pages with Wrangler CLI (optional):
# Install Wrangler CLI bun add -g wrangler # Authenticate with Cloudflare wrangler login # Create a Pages project (one-time setup) wrangler pages project create my-new-repo # Deploy the current directory wrangler pages deploy . --project-name my-new-repo
Visit the template landing page: https://ai-ide-template.pages.dev
This project is licensed under the MIT License - see the LICENSE file for details.
Made with ❤️ for the AI-assisted development community