Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Overide is a lightweight yet powerful CLI tool designed to simplify AI-powered code generation directly within your development workflow. With Overide, 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.
//> <//
patterns for code generationInstall globally using npm or pnpm:
npm install -g overide
# or
pnpm install -g overide
For more installation options, see our installation guide.
Configure your AI platform credentials:
overide config --global
Select an active platform if you've configured multiple:
overide config --select-active
Configure Overide in your project directory:
overide init
Begin monitoring files for code generation:
overide start
Insert 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"]
}
Clone the repository (if you haven't already)
Create feature branches from dev
Make changes and test thoroughly
Create PR to merge into dev
If approved, create PR to merge dev
into staging
If staging tests pass, create PR to merge staging
into main
When merged to main
:
staging
and dev
branchesWe use changesets for version management.
Before submitting a PR from your feature branch, do the following:
pnpm changeset
Follow the prompts to:
When changes with changesets are merged to main
:
staging
branchpatch
: Bug fixes and minor updates (0.0.X)minor
: New features (0.X.0)major
: Breaking changes (X.0.0)npm run dev
# or
pnpm dev
npm run
or pnpm
prefixed:npm run overide [init | config | start]
# or
pnpm overide [init | config | start]
The 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.
npm run build
npm link
npm link -g overide
overide --version
overide init
overide start
# In test project
npm unlink -g overide
# In Overide project
npm unlink
The project uses GitHub Actions for continuous integration and deployment:
CI/CD Pipeline (pipeline.yml
)
main
main
Publish Workflow (publish.yml
)
Triggers on pushes to main
when changes are detected in:
.changeset/**
package.json
Uses changesets for version management
Publishes to npm when changes are detected
Syncs changes back to staging
branch
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.
FAQs
This is a CLI based Code Generation Tool.
We found that overide demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.