cyber-y2k — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited cyber-y2k (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.
"Y2K, but seen through a distorted, modern lens. Darker, glitchier, and highly holographic."
Use this sub-style when the user's request matches the aesthetic described above. This is a child reference of the design-it skill and is not meant to be triggered directly.
body {
background-color: #050505;
color: #fff;
}
/* Holographic button */
.cyber-y2k-btn {
background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
background-size: 1800% 1800%;
animation: rainbow 18s ease infinite;
color: #fff;
font-weight: 900;
text-transform: uppercase;
border: 1px solid rgba(255,255,255,0.5);
border-radius: 30px;
padding: 16px 32px;
mix-blend-mode: screen; /* Makes it interact with background */
}
@keyframes rainbow {
0%{background-position:0% 82%}
50%{background-position:100% 19%}
100%{background-position:0% 82%}
}
/* RGB Split text effect */
.glitch-text {
position: relative;
font-family: 'Courier New', monospace;
font-size: 3rem;
font-weight: bold;
}
.glitch-text::before, .glitch-text::after {
content: attr(data-text);
position: absolute;
top: 0; left: 0;
opacity: 0.8;
}
.glitch-text::before {
color: #0ff;
z-index: -1;
transform: translate(-3px, 2px);
}
.glitch-text::after {
color: #f0f;
z-index: -2;
transform: translate(3px, -2px);
}struct CyberY2KView: View {
@State private var rotation: Double = 0
var body: some View {
ZStack {
Color.black.ignoresSafeArea()
VStack(spacing: 40) {
// Glitch Text
ZStack {
Text("SYSTEM.ERROR")
.font(.custom("Courier New", size: 40).bold())
.foregroundColor(.cyan)
.offset(x: -3, y: 2) // RGB split channel 1
Text("SYSTEM.ERROR")
.font(.custom("Courier New", size: 40).bold())
.foregroundColor(.pink)
.offset(x: 3, y: -2) // RGB split channel 2
Text("SYSTEM.ERROR")
.font(.custom("Courier New", size: 40).bold())
.foregroundColor(.white)
}
// Holographic Button
Button(action: {}) {
Text("ENTER MATRIX")
.font(.headline.weight(.black))
.foregroundColor(.white)
.padding(.horizontal, 32)
.padding(.vertical, 16)
.background(
AngularGradient(
gradient: Gradient(colors: [.red, .yellow, .green, .cyan, .blue, .purple, .red]),
center: .center,
angle: .degrees(rotation)
)
)
.cornerRadius(30)
.overlay(RoundedRectangle(cornerRadius: 30).stroke(Color.white.opacity(0.5), lineWidth: 1))
}
.onAppear {
withAnimation(.linear(duration: 5).repeatForever(autoreverses: false)) {
rotation = 360
}
}
}
}
}
}Text views in a ZStack. Give the bottom ones .cyan and .pink colors and slightly .offset() them.AngularGradient bound to a rotating @State variable to achieve the iridescent CD-ROM holographic effect.class CyberY2KScreen extends StatefulWidget {
@override
State<CyberY2KScreen> createState() => _CyberY2KScreenState();
}
class _CyberY2KScreenState extends State<CyberY2KScreen> with SingleTickerProviderStateMixin {
late AnimationController _controller;
@override
void initState() {
super.initState();
_controller = AnimationController(vsync: this, duration: const Duration(~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.