All authors
v0idOS avatar

Claude Skills by v0idOS

github.com/v0idOS
18 skillsA× 180 installs1 views
Build DeityA

Focuses strictly on reducing compilation, bundling, and CI/CD pipeline execution times.

developmentnodedocker
0
2
Concurrency DeityA

This skill is designed to deliberately cause race conditions and deadlocks, prove they exist, and then secure the codebase using proper synchronization primitives.

developmentgoperformance
0
2
Database DeityA

This skill optimizes database queries and ORM interactions, focusing on index usage, query planning, and eliminating the N+1 query problem.

developmentsqldatabase
0
2
Memory DeityA

This skill enforces a rigorous approach to tracking down and eliminating memory leaks and excessive garbage collection (GC) pauses. Do not guess where the leak is; prove it with memory profiling.

developmentpythongo
0
2
Network DeityA

Optimizes API endpoints, payload sizes, and network latency. Standard REST calls are slow; we make them instantaneous.

developmentapiperformance
0
2
Performance DeityA

This skill enforces a rigorous, math-driven approach to code optimization. The agent is forbidden from guessing what makes code faster. It must prove it through benchmarking.

developmentpythongo
0
2
Stress Test DeityA

This skill acts as a Red Team. Its goal is to intentionally break the user's application by passing extreme edge cases, massive payloads, and simulating network failures.

developmentgodatabase
0
2
Telemetry DeityA

Local benchmarking is useless if production fails. This skill forces the AI to instrument code with proper observability so you have X-Ray vision in production.

developmentperformance
0
2
Ui DeityA

Ensures frontend components (React, Vue, HTML/CSS) render at a flawless 60 FPS without dropping frames or triggering unnecessary re-renders.

developmentjavascriptjava
0
2
BuildA

Reduce CI/CD build times. Analyzes Dockerfiles, Webpack/Vite configs, and GitHub Actions workflows to identify the slowest step and apply targeted caching and build optimizations.

developmentnodedocker
0
2
ConcurrencyA

Detect and fix race conditions and deadlocks. Fires thousands of concurrent requests to prove thread-unsafety, then applies the minimal synchronization primitive needed.

development
0
2
DatabaseA

Diagnose and fix slow database queries. Runs EXPLAIN ANALYZE, identifies missing indexes, eliminates N+1 ORM patterns, and provides exact CREATE INDEX statements.

databasesgosql
0
2
MemoryA

Detect and fix memory leaks. Instruments memory tracking across thousands of iterations, proves the leak with growth data, identifies the uncollected reference, and verifies the fix.

developmentpythonshell
0
2
NetworkA

Reduce API payload sizes and network latency. Profiles byte sizes, enforces compression and HTTP caching, and migrates heavy endpoints to GraphQL or protobuf when warranted.

developmentapi
0
2
OptimizeA

Benchmark, analyze, and optimize a function's execution time. Produces a before/after performance table with real numbers. Never presents a change without proving it is faster.

code-qualitygobash
0
2
Stress TestA

Stress test and harden code against extreme inputs, malformed data, and simulated infrastructure failures. Acts as a red team. Documents every crash, then hardens the boundary.

developmentdatabase
0
2
TelemetryA

Add production observability to a function. Wraps it in an OpenTelemetry or Sentry trace span, injects execution metadata, and proposes a concrete alert rule with threshold and severity.

development
0
2
UiA

Fix UI rendering performance issues. Audits React re-renders, migrates animations to GPU-composited CSS properties, and virtualizes long lists. Target is 60 FPS.

developmentjavascriptjava
0
2