skynight137
- 5 skills
- 0 followers
- 6 hours ago last updated
- ▌ Karpathy · skynight137 bundleBehavioral guidelines to reduce common LLM coding mistakes. Use when writing, reviewing, or refactoring code — any feature, bug fix, or restructuring request. Apply these to avoid overcomplication, make surgical changes, surface assumptions, and define verifiable success criteria.
- ▌ Replit Nix · skynight137Replit + Nix: getting system libs from /nix/store — replit.nix vs nix-env, warm/cold store, the full transitive LD_LIBRARY_PATH closure (REPLIT_LD_LIBRARY_PATH alone is never enough), nix eval/path-info gotchas. Use when a Replit workload needs shared libs (GTK/X11/ALSA/...) or 'cannot open shared object file' appears.
- ▌ Replit Knowledge · skynight137Replit sandbox platform facts (no Nix): $HOME wiped on recreate, work lives in $REPL_HOME, XDG_*_HOME pre-set by the platform, .replit/.bashrc config, npm package firewall, REPL_* env vars, replit shutdown. Use before persisting data, choosing paths, or debugging wiped-data / npm-404 on Replit.
- ▌ Camofox On Replit · skynight137 bundleOne-command anti-detection Firefox scraping server (Camoufox) on a Replit/Nix sandbox. Use when you need to open/verify bot-hardened sites (Cloudflare/Turnstile/WAF-protected, DuckDuckGo, etc.) that plain Chromium can't pass, or when the user wants a persistent headed-Firefox session with CDP. Provisions, provisions libs, and launches everything in a single script.
- ▌ Replit Playwright Chromium · skynight137 bundlePlaywright (Chromium) on Replit without any browser download: Replit ships a Playwright-managed Chromium in the Nix store at $REPLIT_PLAYWRIGHT_CHROMIUM_EXECUTABLE. Use when playwright install fails/hangs, or when you need headless Chromium via executable_path or a CDP daemon.