
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.
create-bl-theme
Advanced tools
CLI tool to scaffold Better Lyrics themes.
npm install -g create-bl-theme
Or use directly with npx:
npx create-bl-theme@latest my-theme
create-bl-theme [theme-name]
The CLI will prompt you for:
# Validate a local directory
create-bl-theme validate ./my-theme
# Validate directly from a GitHub repository
create-bl-theme validate https://github.com/username/theme-repo
The validator checks:
# Bump patch version (1.0.0 → 1.0.1)
create-bl-theme bump patch
# Bump minor version (1.0.0 → 1.1.0)
create-bl-theme bump minor
# Bump major version (1.0.0 → 2.0.0)
create-bl-theme bump major
# Bump in a specific directory
create-bl-theme bump patch ./my-theme
# Check if theme is registered and ready to publish
create-bl-theme publish
# Check a specific directory
create-bl-theme publish ./my-theme
The publish command:
my-theme/
├── metadata.json # Theme metadata (required)
├── style.rics # Your styles in RICS format (required)
├── DESCRIPTION.md # Rich description (optional, takes precedence)
├── shader.json # Shader config (if enabled)
├── README.md # Theme documentation
└── images/ # Screenshots (required)
└── preview.png
Themes use RICS - a lightweight CSS preprocessor with full CSS parity. RICS adds variables, nesting, and mixins while staying close to standard CSS.
Any valid CSS is also valid RICS, so you can write plain CSS if you prefer.
$accent: #ff6b6b;
.lyrics-container {
background: rgba(0, 0, 0, 0.8);
.lyrics-line {
color: $accent;
&.active {
font-weight: bold;
}
}
}
Note: Both
.ricsand.cssfiles are supported. The validator prefers.ricsif both exist.
You can provide your theme description in two ways:
description field in metadata.json - Simple, inline description for basic themesDESCRIPTION.md file - For richer descriptions with formatting (recommended for longer descriptions)If both exist, DESCRIPTION.md takes precedence. At least one must be present.
Better Lyrics supports GitHub Flavored Markdown (GFM) in DESCRIPTION.md, so you can use:
Edit style.rics - Add your custom styles using RICS or plain CSS. Use browser DevTools to inspect Better Lyrics elements and find the right selectors.
Add screenshots - Place at least one preview image in images/. Recommended size: 1280x720 (16:9 aspect ratio).
Update metadata.json - Ensure all fields are correct before submission.
Test locally - Install your theme via "Install from URL" in Better Lyrics using your local path or GitHub repo URL.
Resources:
index.json:
{
"themes": [
{ "repo": "your-username/your-theme-repo" }
]
}
After your theme is registered, install the Better Lyrics Themes GitHub App on your repo. This enables automatic updates:
create-bl-theme bump patchUse create-bl-theme publish to check your publishing status.
MIT
FAQs
CLI tool to scaffold Better Lyrics themes
We found that create-bl-theme 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
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.