0xbigboss/claude-code▌
13 approved skills in this repository
react-best-practices
Frontend
React patterns for hooks, effects, refs, and component design with escape hatch guidance. \n \n Effects synchronize with external systems only (WebSocket, third-party libraries, browser APIs); most component logic should avoid Effects entirely \n Common anti-patterns: derived state, expensive calculations, prop-change resets, and event handling all belong outside Effects—use render calculations, useMemo, key props, and event handlers instead \n Effect dependencies must never be suppressed; use u
zig-best-practices
Productivity
Follows type-first, functional, and error handling patterns from CLAUDE.md. This skill covers Zig-specific idioms only.
ios-device-screenshot
Productivity
Take screenshots from physical iOS devices connected via USB using pymobiledevice3.
tamagui-best-practices
Frontend
Tamagui v1.x patterns beyond fundamentals: Config v4, compiler optimization, compound components, and gotchas.
nix-best-practices
Productivity
Standard flake.nix structure:
playwright-best-practices
Testing
When running Playwright tests from Claude Code or any CLI agent, always use minimal reporters to prevent verbose output from consuming the context window.
python-best-practices
Backend
Type-first Python development using dataclasses, discriminated unions, NewType, and Protocol to make illegal states unrepresentable. \n \n Define data models and function signatures before implementation; use frozen dataclasses, Literal-based discriminated unions, and NewType for domain primitives to prevent invalid states at type-check time \n Leverage Protocol for structural typing, TypedDict for external data shapes, and exhaustive pattern matching with match statements to catch incomplete lo
openai-image-gen
AI/ML
Generate images using OpenAI's DALL-E 3 API via command line.
tilt
Productivity
Before investigating issues or verifying deployments, check resource health:
web-fetch
Productivity
Fetch web content as clean markdown using markdown-native endpoints, selector-based HTML extraction, or bundled fallback parsing. \n \n Prioritizes markdown-native responses (content-type: text/markdown) before falling back to HTML extraction \n Includes pre-configured selectors for common documentation sites (Anthropic, MDN, GitHub) and a generic fallback for article/main content regions \n Provides html2markdown with CSS selector support for fine-grained content isolation, excluding navigation
axe-ios-simulator
Productivity
AXe is a single-binary CLI for iOS Simulator automation via Apple's Accessibility APIs and HID.
go-best-practices
Backend
Follows type-first, functional, and error handling patterns from CLAUDE.md. This skill covers language-specific idioms only.
typescript-best-practices
Backend
TypeScript patterns for type-first development, making illegal states unrepresentable, and exhaustive handling. \n \n Use discriminated unions, branded types, and const assertions to encode business rules in the type system and prevent invalid states at compile time \n Validate at system boundaries with Zod schemas as single source of truth; infer TypeScript types automatically to keep types and validation in sync \n Enforce exhaustive handling with never checks in switch statements and default