Overide is a lightweight yet powerful CLI tool designed to simplify AI-powered code generation directly within your development workflow. With Oi, you can quickly generate, update, and integrate code using predefined prompts, allowing you to focus on the creative aspects of coding while letting AI handle the heavy lifting.
- IDE Agnostic: Works with any IDE or text editor
- AI-Powered Code Generation: Uses OpenAI, DeepSeek, or Groq APIs
- Live File Monitoring: Continuously monitors files for code generation prompts
- Simple Prompting Syntax: Uses intuitive
//> <//patterns for code generation
Install globally using npm or pnpm:
npm install -g overide
# or
pnpm install -g overideFor more installation options, see our installation guide.
Configure your AI platform credentials:
overide config --globalSelect an active platform if you've configured multiple:
overide config --select-activeInitialize Overide in your project directory:
overide initBegin monitoring files for code generation:
overide startInsert prompts in your code:
//> Generate a function that logs 'Hello, World!' <//Overide will generate and insert code:
//- 'Hello, World!' Function
function helloWorld() {
console.log("Hello, World!");
}
//> Accept the changes (y/n): -//Configure Overide using oi-config.json:
{
"name": "project name",
"ignore": ["node_modules", "*.test.js"]
}- Fork and clone the repository
- Create feature branches from
dev - Make changes and test thoroughly
- Submit PR to merge into
dev - Once approved, changes merge to
dev - Periodically,
devmerges tostaging - When ready,
stagingmerges tomainwith version prefix:patch:for bug fixes (0.0.X)minor:for new features (0.X.0)major:for breaking changes (X.0.0)
Example PR titles:
- "patch: Bug fixes for v0.0.6"
- "minor: New features for v0.1.0"
- "major: Breaking changes for v2.0.0"
- Start the development watcher:
npm run dev
# or
pnpm dev- In a separate terminal, run the CLI commands as you normally would, with
npm runorpnpmprefixed:
npm run overide init
# or
pnpm overide initThe development watcher (npm run dev) will automatically rebuild the project when you make changes to the source code, allowing you to test changes in real-time.
- Build and create global link:
npm run build
npm link- Link in test project:
npm link -g overide- Test the production version of the CLI:
overide --version
overide init
overide start- Cleanup:
# In test project
npm unlink -g overide
# In Overide project
npm unlink- Hot Reload: Test changes instantly without manual rebuilds
- Real-time Feedback: See immediate results of code modifications
- Faster Development: Reduce time between changes and testing
- Debugging: Easier to identify and fix issues during development
- Test CLI as if installed globally
- Verify changes before publishing
- Validate package.json bin configuration
- Ensure proper dependency inclusion
- Project Context Management: Local parsers for optimized prompts
- Code Format: Unified diff format for improved insertion
- Multiple File Edit: Support for multi-file operations
- Script Execution: Automated task execution capabilities
Join our Discord to collaborate, share ideas, and stay updated with Overide developments.
Overide is licensed under the GNU GPL-2.0 License. See the LICENSE file for details.