
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
claude-binary-plugin
Advanced tools
Toolkit for compiling complex single-file executable Claude Code plugins
Build Claude Code plugins that compile to single-file Bun executables. Define hooks and commands with a declarative pipeline system, Zod-validated inputs/outputs, and built-in OpenTelemetry observability.
init scaffolding to go from zero to working plugin in under a minutebun add claude-binary-plugin
Requires Bun >= 1.3.9 and Zod >= 4.3.5 as a peer dependency.
Scaffold a new plugin project:
bunx claude-binary-plugin init my-plugin
Or define a plugin manually:
// plugin.config.ts
import { ClaudeBinaryPlugin } from "claude-binary-plugin";
import { z } from "zod";
const plugin = ClaudeBinaryPlugin.create({
prefix: "MY_PLUGIN",
options: z.object({
TIMEOUT_MS: z.coerce.number().default(30000),
}),
hooks: {
PreToolUse: [{
name: "security",
tools: ["Bash"],
pipeline: "./hooks/security.hook.ts",
}],
},
});
export default plugin;
Build the plugin:
bunx claude-binary-plugin build
Comprehensive documentation is available in the docs directory:
ClaudeBinaryPlugin.create() deep divebuild and init command optionsFAQs
Toolkit for compiling complex single-file executable Claude Code plugins
We found that claude-binary-plugin 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

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.