Repository inventory

copyleftdev/sk1llz

Skills indexed from this repository, with install-style signals scoped to the repo.
59 skills177 GitHub stars0 weekly installsPythonGitHubOwner profile

Overview

This skill encodes Fabrice Bellard's systems-programming philosophy into actionable guidance and code patterns. It focuses on radical minimalism, deep domain mastery, and single-author designs for emulators, compilers, codecs, and other performance-critical systems. Use it to shape architecture, prioritize hot paths, and deliver compact, maintainable implementations.

How this skill works

The skill inspects design intent and implementation choices, recommending minimal viable designs, table-driven structures, integer math, and single-file layouts where appropriate. It suggests concrete patterns: portable C interfaces, direct codegen for compilers/emulators, dynamic translation caches, and fixed-point arithmetic for DSP. It also flags over-engineering, premature optimization, and unnecessary abstractions.

When to use it

  • Building an emulator, dynamic translator, or JIT where code density and speed matter
  • Implementing a compiler or code generator that should be fast and self-hosting
  • Creating codecs or media pipelines with data-driven tables and SIMD fallbacks
  • Prototyping a small, production-capable tool as a solo engineer
  • Refactoring bloat into a single-file or minimal-module design

Best practices

  • Read and master the relevant specification before coding
  • Start with the simplest working implementation and iterate from there
  • Profile first; optimize only measured hot paths
  • Prefer integer or fixed-point math over floating point when feasible
  • Favor data-driven tables and compact state machines over heavy abstractions
  • Keep portability in core code; isolate platform-specific optimizations

Example use cases

  • Write a tiny C compiler that compiles itself and emits direct machine code
  • Implement an x86 or ARM emulator with a translation block cache and TLB-style fast path
  • Create an audio resampler using fixed-point math and table-driven interpolation
  • Build a compact codec implementation with a registration table and runtime SIMD selection
  • Produce a single-file proof-of-concept that boots a minimal OS in a browser

FAQ

No. The guidance favors C for low-level control, but the principles—minimalism, table-driven design, focus on hot paths—apply across languages including Rust and Python prototypes.

When should I avoid extreme minimalism?

Avoid it for large teams needing extensible APIs or when rapid feature growth is expected. Start minimal, then expand with measured needs and clear interfaces.

59 skills

bellard
Code Review

This skill helps you design ultra-minimal, high-performance systems in the Bellard mold, emphasizing deep domain mastery and single-file pragmatism.

DebuggingDesignPerformancePython+2
klabnik
Ai

This skill teaches Rust-style clear, idiomatic coding by writing examples and docs that illuminate concepts and teach as they run.

Code ReviewDocsPythonRust+1
material-design
Data

This skill helps you implement Google Material Design principles to create accessible, delightful interfaces across platforms with consistent elevation,

DesignFrontendPythonReact+2
jane-street
Code Review

This skill helps you build robust, correct-by-construction market systems inspired by Jane Street, using functional patterns, strong types, and explicit error

DebuggingPythonRefactorTesting+1
reitz
Api

This skill helps you design Python APIs in the Kenneth Reitz style, emphasizing simplicity, human-friendly interfaces, and meaningful defaults.

DesignDocsPythonUx+1
ritchie
Debugging

This skill guides you to write portable, clean C-style systems code in the Dennis Ritchie tradition, emphasizing abstractions, safety, and minimal interfaces.

DockerPerformancePythonPython
wadler
Code Review

This skill helps you write Python with Wadler-inspired monadic patterns, guiding type-driven design and clean composable abstractions.

PythonRefactorPython
parent
Code Review

This skill helps you write cleaner C++ by applying Sean Parent's no raw loops philosophy, replacing loops with expressive algorithms for clarity and

PerformanceRefactorPython
kennedy
Code Review

This skill helps you write high-performance Go code with mechanical sympathy and data-oriented design, improving execution understanding and readability.

DataDebuggingGoPerformance+2
torvalds
Code Review

This skill helps you write high-performance systems and kernel-level code with pragmatic design, data-structure focus, and rigorous code review.

DesignPerformancePythonPython
hettinger
Code Review

This skill helps you write idiomatic Python in the Hettinger style, using generators, iterators, and built-ins for clean, efficient code.

DebuggingPerformancePythonRefactor+1
stroustrup
Code Review

This skill helps you write C++ in Stroustrup style, emphasizing type safety, RAII, and zero-overhead abstractions for clear, efficient systems.

DebuggingDesignPerformanceRefactor+1
forensics-team
Analytics

This skill analyzes PCAPs from the OSI outward, delivering expert forensics insights with native Linux tools and precise attribution.

DataDevopsPythonScripting+2
peyton-jones
Code Review

This skill helps you write practical, compiler-friendly Haskell and Python alike by teaching laziness, purity, and profiling-driven optimization for real-world

DebuggingPerformancePythonPython
citadel
Design

This skill helps you implement ultra-low-latency trading systems with deterministic execution, kernel bypass networking, and lock-free structures inspired by

DockerInfraKubernetesPerformance+2
vogels
Api

This skill helps you design resilient cloud-native systems using Vogels principles, emphasizing failure handling, eventual consistency, and API-driven

BackendCloudDataDevops+2
mitre-attack
Ai

This skill maps threats to MITRE ATT&CK tactics and techniques to improve detection coverage and threat intelligence.

AnalyticsObservabilityPythonScripting+2
aqr
Ai

This skill helps you build transparent, academically grounded factor investing models in Python, guiding portfolio construction and risk-aware implementation.

AnalyticsCode ReviewDataPython+2
bos
Code Review

This skill helps you write correct, efficient concurrent Rust code by applying Mara Bos-inspired memory-ordering guidance and safe patterns.

DocsPerformancePythonRust+2
lattner
Debugging

This skill helps you build modular compiler infrastructure and progressive lowering, enabling reusable libraries and clearer diagnostics for language tooling.

DesignDocsPerformancePython+1
osmani
Code Review

This skill helps you apply Addy Osmani's performance-first patterns to build fast, well-structured Python apps with thoughtful design.

DesignFrontendPerformancePython+1
jacobson
Code Review

This skill guides you to optimize network performance using Jacobson-inspired congestion control, RTT-based adaptation, and robust traceroute diagnostics.

DebuggingPerformancePythonTesting+1
pall
Ai

This skill helps you design and optimize high-performance JIT compilers and interpreters by applying trace-based, microarchitecture-aware techniques.

AutomationBackendDebuggingPerformance+3
rodriguez
Ai

This skill helps you build threat hunting programs by applying Roberto Rodriguez's playbook with reproducible notebooks, data-driven tests, and open-source

AnalyticsAutomationDataPython+2
roth
Analytics

This skill helps you craft portable detection rules with Sigma and YARA, enabling cross-platform sharing and quality through community-driven patterns.

AutomationCode ReviewCommunityPython+2
matsakis
Debugging

This skill helps you write Rust-style ownership and lifetime guidance in Python, applying Matsakis-inspired patterns to APIs for safer borrows.

DocsPythonRefactorRust+1
jump-trading
Ai

This skill helps you design ultra-low-latency trading systems using FPGA, network optimization, and hardware-software co-design principles.

InfraPerformancePythonPython
blow
Performance

This skill helps you design game engines and languages inspired by Jonathan Blow, prioritizing programmer productivity and compile-time efficiency.

ProductivityPythonPython
ramalho
Code Review

This skill helps you write idiomatic Python in the Ramalho Fluent Python style, focusing on the data model and advanced idioms.

DebuggingPerformancePythonRefactor+2
hashicorp
Cloud

This skill guides platform engineering by embracing the Tao of HashiCorp, focusing on workflows, immutability, and codified, composable infrastructure.

Code ReviewDevopsInfraPython+2
vanrossum
Code Review

This skill helps you write Python code that emphasizes readability and simplicity following Guido van Rossum's Pythonic principles.

FormattingLintingPythonRefactor+1
abramov
Code Review

This skill helps you write predictable, composable React state, colocate data, and use custom hooks to improve developer experience.

DebuggingFrontendJavascriptPerformance+4
bianco
Ai

This skill helps you design threat detection using the Pyramid of Pain and Threat Hunting Maturity Model to maximize adversary pain.

AnalyticsAutomationObservabilitySecurity+1
cro
Ai

This skill helps you write practical Zig code in the style of Loris Cro, emphasizing build system mastery and real-world patterns.

Code ReviewDebuggingPythonTesting+1
bach
Analytics

This skill guides you through exploratory testing in the James Bach style, blending learning, design, and execution to uncover hidden risks.

DebuggingPythonStrategyTesting+1
dean
Backend

This skill helps you design distributed systems at planet scale with Jeff Dean principles, optimizing tail latency and scalability.

CloudDataMonitoringPerformance+1
sutter
Code Review

This skill helps you write robust C++ following Herb Sutter's exceptional principles, emphasizing exception safety, const correctness, and defensive

DebuggingPerformanceRefactorTesting+1
kleppmann
Ai

This skill helps you design data-intensive systems by applying Kleppmann-style trade-offs, ensuring reliability, observability, and scalable data architectures.

AnalyticsAutomationDataDatabase+3
beck-tdd
Code Review

This skill helps you adopt Kent Beck's test-driven development discipline, guiding red-green-refactor, small steps, and emergent design for reliable Python

PythonRefactorTestingUnit Tests+1
nichols
Code Review

This skill helps you write practical, safe, and maintainable Rust code in the spirit of Carol Nichols, with clear explanations and real-world patterns.

DocsFormattingLintingRust+2
stepanov
Ai

This skill helps you design reusable algorithms following Stepanov's generic programming, focusing on minimal requirements, concepts, and iterator-based

Code ReviewDocsPythonTesting+1
levien
Ai

This skill helps you design declarative, GPU-accelerated native UIs with synchronized trees and Rust patterns inspired by Raph Levien.

FrontendPerformancePythonRust+1
stonebraker
Analytics

This skill guides database architecture design inspired by Stonebraker, emphasizing workload-specific, shared-nothing, and durable, extensible storage and

DataDatabaseDesignPerformance+2
s2-geometry
Ai

This skill helps you build geospatial services with S2 by indexing and querying spherical data using Hilbert-based cell IDs for efficient proximity and

BackendDataPythonPython
fielding
Api

This skill helps you design durable REST APIs by applying Fielding's constraints to ensure statelessness, hypermedia, caching, and uniform interfaces.

DesignPythonRestPython
helland
Backend

This skill helps design scalable distributed data systems inspired by Pat Helland, emphasizing idempotency, entity-based design, and messaging over distributed

CloudDataDesignPython+1
lampson
Api

This skill helps you make architectural decisions and design evolving APIs using Butler Lampson's abstraction, interfaces, and security principles.

BackendDesignPythonSecurity+1
beazley
Ai

This skill helps you write advanced Python in the Beazley style, emphasizing generators, coroutines, metaprogramming, and deep interpreter understanding.

Code ReviewDebuggingPerformancePython+2
renaissance
Ai

This skill helps you design and test Renaissance-style statistical arbitrage systems using rigorous backtesting, signal integration, and robust risk management.

AnalyticsDataPythonScripting+2
turon
Api

This skill helps you design user-friendly public APIs and async Rust interfaces with Turon-inspired patterns for safe, ergonomic usage.

DesignRustPython
swing-trading
Ai

This skill helps you identify Minervini-style swing setups by applying SEPA principles, VCP patterns, and strict risk controls for stock momentum trades.

AnalyticsDataPythonStrategy+1
hickey
Ai

This skill helps you design simple, immutable data oriented Python code inspired by Rich Hickey, making state explicit and maintainable.

DataPythonPython
cox
Ci Cd

This skill helps you design Go packages and tooling with Russ Cox's correctness and compatibility principles, emphasizing reproducible builds and stable APIs.

Code ReviewDesignGoPython+2
meyers
Code Review

This skill helps you write robust C++ code by applying Meyers Effective C++ guidelines for safer, clearer, and more maintainable interfaces.

DebuggingDocsPerformancePython+3
continuous-fuzzing
Automation

This skill helps you implement Google's continuous fuzzing framework with OSS-Fuzz and ClusterFuzz to automate bug discovery and CI/CD integration.

Ci CdDevopsSecurityTesting+1
alexandrescu
Code Review

This skill helps you apply Andrei Alexandrescu's Modern C++ Design, promoting policy-based templates and compile-time abstractions for zero-runtime overhead.

DebuggingPerformancePythonRefactor+1
hoare
Ai

This skill helps you design safe, memory-efficient Rust code inspired by Graydon Hoare's vision, emphasizing ownership, zero-cost abstractions, and practical

PerformancePythonRustSecurity+1
property-based
Ai

This skill helps you apply John Hughes property-based testing concepts to Python code, generating inputs, checking invariants, and shrinking failures.

DebuggingPythonTestingPython
virtu
Ai

This skill helps you design and optimize Virtu-style execution systems by modeling market microstructure, routing intelligently, and measuring execution

AnalyticsBackendPythonPython
More from this maintainer
Other repositories and skills published under the same GitHub owner.
Skills library
Jump back to the full directory or explore grouped topics.
Built by
VeilStrat
AI signals for GTM teams
© 2026 VeilStrat. All rights reserved.All systems operational