
Security News
Node.js Drops Bug Bounty Rewards After Funding Dries Up
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.
@chimp-stack/core
Advanced tools
> Shared configuration and environment loader for the growing chimp toolchain.
Shared configuration and environment loader for the growing chimp toolchain.
This package contains the core logic for reading .chimprc config files, loading environment variables, and handling shared behavior between tools like git-chimp, doc-chimp, and review-chimp.
Install via npm:
npm install @chimp-stack/core
Or in a monorepo:
npm install --workspace=@chimp-stack/core
In your tool package (e.g., git-chimp, review-chimp), import and use the helpers:
import { loadChimpConfig, getEnv } from '@chimp-stack/core';
const config = loadChimpConfig('gitChimp');
const env = getEnv();
.chimprcThis package looks for a .chimprc file in the current project or in your home directory (~/.chimprc).
{
"gitChimp": {
"model": "gpt-4",
"tone": "dry sarcasm",
"prMode": "draft"
},
"reviewChimp": {
"severity": "high"
}
}
The structure is namespaced per tool. You can override values via CLI flags if needed.
| Function | Description |
|---|---|
loadChimpConfig(scope) | Loads config for the given tool (gitChimp, docChimp, etc) from .chimprc |
getEnv() | Validates and returns required environment variables (e.g., OPENAI_API_KEY) |
resolveChimpConfigPath() | Returns the resolved file path of the active .chimprc |
npm run build
This uses tsup to emit both ESM and CJS output to dist/.
npm run lint
This package can be independently published from the monorepo (if applicable) using npm publish or through CI pipelines like semantic-release.
If used inside a Turborepo or other monorepo setup, make sure its package.json has a name field and correct main/exports paths for npm publishing.
git-chimp – commit & PR generatordoc-chimp – auto-documentation from commits and code
sourcereview-chimp – coming soon: let the monkey do your code reviewscore – this package“Because even the best engineers deserve a monkey on their shoulder.”
FAQs
> Shared configuration and environment loader for the growing chimp toolchain.
The npm package @chimp-stack/core receives a total of 10 weekly downloads. As such, @chimp-stack/core popularity was classified as not popular.
We found that @chimp-stack/core 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
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.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.