All authors
Intense-Visions avatar

Claude Skills by Intense-Visions

github.com/Intense-Visions
2,869 skillsA× 2,850B× 190 installs1,156 views
Js Mixin PatternA

> Add reusable behaviors to classes without deep inheritance chains

toolsjavascripttypescript
0
20
Js Module PatternA

> Encapsulate private state and expose a public API using closures or ES modules

developmentjavascriptjava
0
20
Js Observer PatternA

> Notify subscribers automatically when an observable object's state changes

developmentjavascriptjava
0
20
Js Prototype PatternA

> Share properties and methods across instances via the prototype chain

developmentjavascriptgo
0
20
Js Provider PatternA

> Make shared data available to multiple consumers without prop-drilling

developmentjavascriptjava
0
20
Js Proxy PatternA

> Intercept and control object property access with ES6 Proxy

businessjavascriptjava
0
20
Js Revealing Module PatternA

> Define all logic privately and selectively reveal only the public API

developmentjavascriptjava
0
20
Js Singleton PatternA

> Ensure a class has only one instance and provide a global access point

testingjavascriptjava
0
20
Js State PatternA

> Allow an object to alter its behavior when its internal state changes

developmentjavascriptgo
0
20
Js Static ImportA

> Use static import declarations to load ES modules at parse time for tree-shaking and static analysis

developmentjavascriptjava
0
20
Js Strategy PatternA

> Define a family of algorithms and make them interchangeable without altering the client

businessjavascriptgo
0
20
Js Template Method PatternA

> Define the skeleton of an algorithm in a base class and let subclasses override specific steps

businessjavascriptgo
0
20
Js Visitor PatternA

> Add new operations to object structures without modifying the objects

businessjavascriptgo
0
20
Knowledge CraftA

> LLM-judgment critique of knowledge-entry quality. Critiques `docs/knowledge/` entries (EXCLUDING `decisions/` — that's spec-craft's territory) against a curated rubric catalog: does this state a load-bearing FACT or paraphrase the code? Would deleting it lose specific signal? Does it earn its place in the knowledge graph as `business_fact` / `business_rule` / `business_concept` / `business_decision`? Fifth non-design member of the craft-pipeline initiative. Emits 3-axis findings (tier × imp...

businesssqlnode
0
20
Microservices Api GatewayA

> Route, aggregate, and secure client requests through an API gateway or BFF pattern.

developmenttypescriptexpress
0
20
Microservices Bulkhead PatternA

> Isolate failures with bulkheads using thread pools and semaphores to protect shared resources.

businesstypescriptapi
0
20
Microservices Circuit BreakerA

> Prevent cascading failures with circuit breaker, half-open state, and fallback logic.

designtypescriptgo
0
20
Microservices Config ServerA

> Centralize configuration, feature flags, and secrets management across services.

devopstypescriptsql
0
20
Microservices Cqrs PatternA

> Separate read and write models to optimize query and command performance independently.

businesstypescriptreact
0
20
Microservices DecompositionA

> Design service boundaries using bounded contexts, DDD, and functional cohesion principles.

businesstypescriptgo
0
20
Microservices Distributed TracingA

> Propagate trace context and emit spans across services using OpenTelemetry.

developmenttypescriptgo
0
20
Microservices Event SourcingA

> Store state as an immutable sequence of events with projections, snapshots, and replay.

toolstypescriptgo
0
20
Microservices Health CheckA

> Implement /health and /ready endpoints for liveness and readiness probes in containers.

databasestypescriptexpress
0
20
Microservices Outbox PatternA

> Guarantee at-least-once event delivery using a transactional outbox and polling publisher.

databasestypescriptsql
0
20
Microservices Saga PatternA

> Coordinate distributed transactions using choreography and orchestration sagas with compensation.

businesstypescriptgo
0
20
Microservices Service DiscoveryA

> Implement service registration and dynamic discovery with health checks in microservices.

devopstypescriptkubernetes
0
20
Microservices Sidecar PatternA

> Inject cross-cutting concerns like observability and security via a sidecar proxy.

devopstypescriptgo
0
20
Microservices Strangler FigA

> Migrate monoliths incrementally using the strangler fig pattern with facade routing.

developmenttypescriptgo
0
20
Mobile Animation PatternsA

> Create fluid 60fps animations with React Native Reanimated using shared values, worklets, and layout animations

developmentjavascriptgo
0
20
Mobile Deployment PatternsA

> Deploy React Native apps with EAS Build, EAS Submit, OTA updates, and automated CI/CD pipelines

developmentjavascripttypescript
0
20
Mobile Expo SetupA

> Set up and configure Expo projects with managed workflow, EAS Build, development builds, and config plugins

developmenttypescriptgo
0
20
Mobile Flatlist PatternsA

> Build performant scrollable lists with FlatList, SectionList, and FlashList for large data sets

developmentbashreact
0
20
Mobile Gesture HandlingA

> Implement touch gestures with React Native Gesture Handler for swipe, pan, pinch, and long press interactions

developmentjavascriptjava
0
20
Mobile Native ModulesA

> Bridge native platform APIs into React Native with Expo Modules API and Turbo Modules

developmentjavascripttypescript
0
20
Mobile Navigation PatternA

> Implement stack, tab, and drawer navigation in React Native with type-safe routing and deep linking

developmenttypescriptreact
0
20
Mobile Network PatternsA

> Handle network requests, offline support, caching, and connectivity monitoring in React Native

businesstypescriptgo
0
20
Mobile Performance PatternsA

> Optimize React Native app performance with profiling, memoization, lazy loading, and native thread management

developmentjavascripttypescript
0
20
Mobile Push NotificationsA

> Implement push notifications with Expo Notifications, Firebase Cloud Messaging, and Apple Push Notification Service

developmenttypescriptgo
0
20
Mobile Storage PatternsA

> Persist data on mobile with AsyncStorage, SecureStore, MMKV, and SQLite for different use cases

businesstypescriptgo
0
20
Mobile Testing PatternsA

> Test React Native apps with Jest, React Native Testing Library, and Detox for unit, integration, and E2E coverage

testingtypescriptbash
0
20
Naming CraftA

> LLM-judgment skill that critiques identifier names — variables, functions, types, and files — for clarity, concreteness, weight, and predictive power. First member of the craft-pipeline initiative. Uses a curated rubric catalog seeded from Martin / Beck / Karlton. Emits 3-axis findings (tier × impact × confidence per ADR 0019).

ai-agentspythonrust
0
20
Nestjs Config ModuleA

> Manage environment config with ConfigModule.forRoot, ConfigService, and Joi schema validation

testingtypescriptbash
0
20
Nestjs Controller PatternA

> Define HTTP route handlers with @Controller, method decorators, params, and versioning

businesstypescriptexpress
0
20
Nestjs Dependency InjectionA

> Master NestJS DI container with tokens, useClass/useValue/useFactory providers

businesstypescriptnode
0
20
Nestjs Dto ValidationA

> Validate request payloads with class-validator, class-transformer, and DTO patterns

toolstypescriptbash
0
20
Nestjs Event DrivenA

> Build event-driven systems with EventEmitter2, CQRS module, CommandBus, and QueryBus

toolstypescriptgo
0
20
Nestjs Exception FiltersA

> Handle errors globally with @Catch, ExceptionFilter, and custom exception hierarchies

toolstypescriptdatabase
0
20
Nestjs Graphql IntegrationA

> Build GraphQL APIs with GraphQLModule, @Resolver, @Query/@Mutation, @ObjectType, and DataLoader

developmenttypescriptbash
0
20
Nestjs Guards PatternA

> Protect routes with @UseGuards, CanActivate, JWT guards, and role-based access control

securitytypescriptapi
0
20
Nestjs Interceptors PatternA

> Transform responses and add cross-cutting behavior with NestInterceptor and CallHandler

businesstypescriptapi
0
20