
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
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 OpenAI credentials:
overide config --global
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.
1.0.0
--path
option in init
and start
commands. This allows user to initialise and start overide in any target path on a system.FAQs
This is a CLI based Code Generation Tool.
The npm package overide receives a total of 2 weekly downloads. As such, overide popularity was classified as not popular.
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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.