Beaunifi — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Beaunifi (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
An MCP (Model Context Protocol) server that intelligently beautifies and minifies JavaScript and CSS files. It can detect if a file is minified and automatically beautify it before processing, then re-minify it afterward.
# Navigate to the project directory
cd E:\Projects\OSP\beaunifi
# Create virtual environment and install dependencies
uv venv
uv pip install -e ".[dev]"pip install -e .Add to your Claude Code settings:
{
"mcpServers": {
"beaunifi": {
"command": "uv",
"args": [
"run",
"--python",
"python",
"-m",
"beaunifi.server"
],
"cwd": "E:\\Projects\\OSP\\beaunifi"
}
}
}Or use the provided config file:
# Copy the config to Claude Code directory
cp mcp-configs/claude-code.json ~/.claude/mcp-servers/beaunifi.jsonAdd to your Cursor settings (~/.cursor/mcp.json):
{
"mcpServers": {
"beaunifi": {
"command": "uv",
"args": [
"run",
"--python",
"python",
"-m",
"beaunifi.server"
],
"cwd": "E:\\Projects\\OSP\\beaunifi"
}
}
}Add to your Antigravity MCP config:
{
"name": "beaunifi",
"transport": {
"type": "stdio",
"command": "uv",
"args": ["run", "--python", "python", "-m", "beaunifi.server"],
"cwd": "E:\\Projects\\OSP\\beaunifi"
}
}beautify_jsBeautify JavaScript code
Parameters:
code (string): JavaScript code to beautifyindent_size (number, optional): Indentation size (default: 2)minify_jsMinify JavaScript code
Parameters:
code (string): JavaScript code to minifybeautify_cssBeautify CSS code
Parameters:
code (string): CSS code to beautifyindent_size (number, optional): Indentation size (default: 2)minify_cssMinify CSS code
Parameters:
code (string): CSS code to minifyis_minifiedCheck if code appears to be minified
Parameters:
code (string): Code to checkfile_type (string): Either "js" or "css"smart_processSmart workflow: auto-detect minification, beautify if needed, and re-minify
Parameters:
code (string): Code to processfile_type (string): Either "js" or "css"action (string): Action to perform ("read", "edit", or "write")modifications (string, optional): Modifications to apply (for "edit" action)from beaunifi.utils import beautify_js, minify_js, is_minified
# Check if code is minified
code = "function test(){return 1}"
if is_minified(code, "js"):
pretty = beautify_js(code)
# ... make edits ...
final = minify_js(pretty)When using with an MCP client:
"Please beautify this minified JS file: [code]"
"Minify this CSS for production: [code]"
"Smart process this file - detect if minified and handle appropriately: [code]"The smart_process tool provides an intelligent workflow:
This is perfect for AI assistants that need to edit minified files without losing the minification.
# Run tests
uv run pytest
# Type checking
uv run mypy src/beaunifi
# Linting
uv run ruff check src/beaunifiMIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.