
Security News
OpenClaw Skill Marketplace Emerges as Active Malware Vector
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.
Get git tail hashes from your repository in reverse chronological order
It sucks when you could do git show HEAD but not git show TAIL. git-tails comes to the rescue!
Did you know that there could be more than one tails in your git repository?
$ npm install --save git-tails
var gitTails = require('git-tails');
gitTails(function(err, data) {
console.log(data);
//=> ['0cd33254f2df29272323dca4f052be70d9659174']
});
gitTails.sync()
//=> ['0cd33254f2df29272323dca4f052be70d9659174']
$ npm install --global git-tails
$ git-tails
0cd33254f2df29272323dca4f052be70d9659174
To get the earliest tail you just need to do
gitTails(function(err, data) {
console.log(data[data.length - 1]);
//=> '0cd33254f2df29272323dca4f052be70d9659174'
});
If you know there is only one tails you could do
$ git show `git-tails`
Just like git show HEAD.
MIT © Steve Mao
FAQs
Get git tail hashes from your repository in reverse chronological order
We found that git-tails 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
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.