
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
@skills-supply/agents-toml
Advanced tools
Parser and validator for agents.toml manifest files.
npm install @skills-supply/agents-toml
import { parse, parseOrThrow } from "@skills-supply/agents-toml"
const result = parse(`
[package]
name = "my-skills"
version = "1.0.0"
[agents]
claude-code = true
[dependencies]
superpowers = "superpowers@1.0.0"
`)
if (result.ok) {
console.log(result.value.package?.name) // "my-skills"
console.log(result.value.agents.get("claude-code")) // true
console.log(result.value.dependencies.get("superpowers"))
// { type: "registry", name: "superpowers", version: "1.0.0" }
}
// Or throw on error:
const manifest = parseOrThrow(tomlString)
A TOML-based manifest file that lets you:
[package]
name = "my-skills"
version = "1.0.0"
[agents]
claude-code = true
[dependencies]
superpowers = "superpowers-marketplace/superpowers@1.0.0"
local-tools = { path = "../my-local-tools" }
| Type | Syntax | Example |
|---|---|---|
| Registry | "[@org/]name@version" | "superpowers@1.0.0" |
| GitHub | { gh = "owner/repo", tag = "v1.0" } | { gh = "user/skills", branch = "main" } |
| Git | { git = "https://...", rev = "abc" } | { git = "https://gitlab.com/o/r", tag = "v1" } |
| Local | { path = "..." } | { path = "../local-skills" } |
| Plugin | { type = "claude-plugin", ... } | { type = "claude-plugin", plugin = "x", marketplace = "o/r" } |
Access the generated JSON schema:
import schema from "@skills-supply/agents-toml/schema.json"
parse(contents: string): ParseResult<ValidatedManifest>Parses and validates an agents.toml string. Returns a result object:
type ParseResult<T> =
| { ok: true; value: T }
| { ok: false; error: ParseError }
parseOrThrow(contents: string): ValidatedManifestSame as parse, but throws on error.
All Zod schemas are exported for custom validation:
import {
ManifestSchema,
PackageSchema,
AgentsSchema,
DependenciesSchema,
// ...
} from "@skills-supply/agents-toml"
FAQs
Parser and validator for agents.toml manifest files
The npm package @skills-supply/agents-toml receives a total of 81 weekly downloads. As such, @skills-supply/agents-toml popularity was classified as not popular.
We found that @skills-supply/agents-toml 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.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.