
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@bonvoy/plugin-ai
Advanced tools
AI-generated release notes summary for bonvoy changelogs. Prepends a human-readable summary above the conventional changelog.
npm install @bonvoy/plugin-ai
// bonvoy.config.js
export default {
plugins: [
['@bonvoy/plugin-ai', { provider: 'openai' }]
]
};
Set the API key as an environment variable:
OPENAI_API_KEY=sk-...
The plugin adds a blockquote summary after the version header:
## [0.9.0] - 2026-02-10
> Adds automatic rollback for failed releases and improves error messages.
> If a publish fails mid-way, bonvoy now undoes all completed steps automatically.
### ✨ Features
- add rollback & recovery for failed releases
### 🐛 Bug Fixes
- improve error messages for rollback status
The conventional changelog below remains unchanged.
Three providers are supported, each using native fetch with zero extra dependencies.
| Provider | Default Model | Env Var |
|---|---|---|
openai | gpt-4o-mini | OPENAI_API_KEY |
anthropic | claude-sonnet-4-20250514 | ANTHROPIC_API_KEY |
gemini | gemini-2.0-flash | GEMINI_API_KEY |
// Anthropic
['@bonvoy/plugin-ai', { provider: 'anthropic' }]
// Gemini
['@bonvoy/plugin-ai', { provider: 'gemini' }]
// Custom model
['@bonvoy/plugin-ai', { provider: 'openai', model: 'gpt-4o' }]
| Option | Type | Required | Description |
|---|---|---|---|
provider | 'openai' | 'anthropic' | 'gemini' | Yes | LLM provider |
model | string | No | Model name (uses provider default) |
apiKey | string | No | API key (defaults to env var) |
promptTemplate | string | No | Custom prompt with {packageName}, {version}, {commitList} placeholders |
maxTokens | number | No | Max response tokens (default: 200) |
afterChangelog hook)--dry-run mode (no API cost)MIT
FAQs
🚢 AI-generated release notes summary for bonvoy changelogs
We found that @bonvoy/plugin-ai demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.