
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
cooker 
123
a minimalism style version manager for static files.
$ sudo npm install cooker -g
// watch files change and create zipfile automatically
$ cooker or $ cooker ./demo
// create cooker.configs.json
$ cooker -c
// fill cooker.configs.json and rewatch changes
$ cooker
// update version by youself
$ cooker up
var cooker = require('cooker');
// using cooker to watch psd changes
cooker.watch('./psd',function(changes){
console.log(changes);
});
// watch file changes and created when new psd added.
cooker.watch('./psd',function(changes){
// if new psd added to './psd'
if (changes.type == 'new') {
// using defalut zip config
cooker.zip('./psd',function(zipfile){
// zipfile should be 'psd_v0.0.x.zip'
console.log(zipfile)
})
}
});
config [Object] or [String] :
ingore: [Array] : filetypes to ignore.dir: [String] : dir for watchcallback [Function]
errchanges: [Array] list every changes here.config [Object] or [String]:
fileDir: [String] dir wanna to zipdist: [String] mv zip file to selected dist dirstart: [Number] : like 0.0.1 or 1.0.0divider: [String] : divider that divide filename from version-stamps , e.g: "-" or "." or ("_" -> "filename_v0.1.0" )afterfix : [String] : string after version-stamp. e.g: "filename_v1.0.1_2013-20-20.zip"fileDir [String]callback [Function]
errpkg zipped package dir$ git clone https://github.com/turingou/cooker.git
$ cd cooker
$ npm install
$ npm test
0.0.1 logo addedFAQs
a minimalism style version manager for static files
The npm package cooker receives a total of 12 weekly downloads. As such, cooker popularity was classified as not popular.
We found that cooker demonstrated a not healthy version release cadence and project activity because the last version was released 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
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.