ui-design-system

Warn

Audited by Runlayer on Feb 21, 2026

Risk Level: MEDIUM
Scan Summary
Max Score
78%
Files
2
Flagged
1
Chunks
3
Flagged Files (1)
scripts/design_token_generator.pyHIGH
78.3%

Malicious tool definition detected

Description: #!/usr/bin/env python3 """ Design Token Generator Creates consistent design system tokens for colors, typography, spacing, and more """ import json from typing import Dict, List, Tuple import colorsys class DesignTokenGenerator: """Generate comprehensive design system tokens""" def __init__(self): self.base_unit = 8 # 8pt grid system self.type_scale_ratio = 1.25 # Major third self.base_font_size = 16 def generate_complete_system(self, brand_color: str = "#0066CC", style: str = "mode

Tool: scripts/design_token_generator.py [2/2] Description: 0.04)', '2xl': '0 25px 50px -12px rgba(0, 0, 0, 0.25)', 'inner': 'inset 0 2px 4px 0 rgba(0, 0, 0, 0.06)' }, 'classic': { 'none': 'none', 'sm': '0 1px 2px rgba(0, 0, 0, 0.1)', 'DEFAULT': '0 2px 4px rgba(0, 0, 0, 0.1)', 'md': '0 4px 8px rgba(0, 0, 0, 0.1)', 'lg': '0 8px 16px rgba(0, 0, 0, 0.1)', 'xl': '0 16px 32px rgba(0, 0, 0, 0.1)' } } return shadow_styles.get(style, shadow_styles['modern']) def generate_animation_tokens(self) -> Dict: "

Passed Files (1)Click to expand
SKILL.mdOK
10.1%

Tool passed security scan

Audit Metadata
Max File Score
78%
Classification
UNKNOWN_SERVER
Files Scanned
2
Files Flagged
1
Chunks Analyzed
3
Analyzed
Feb 21, 2026, 03:47 AM
Security Audit — runlayer — ui-design-system