All authors
Intense-Visions avatar

Claude Skills by Intense-Visions

github.com/Intense-Visions
2,869 skillsA× 2,850B× 190 installs1,163 views
Design Parallax ScrollA

> Scroll-driven depth — rate-differential parallax, scroll-triggered reveals, sticky sections, scroll narrative, performance constraints, motion sensitivity

developmentjavascriptrust
0
20
Design ReadabilityA

> Optimizing for reading — line length (measure), line height (leading), paragraph spacing, text alignment, hyphenation, and reading patterns (F-pattern, Z-pattern)

designgodebugging
0
20
Design Responsive StrategyA

> Responsive as a design decision — content-first breakpoints, progressive disclosure, and treating every viewport as a first-class design target

designgotesting
0
20
Design Responsive TypeA

> Type across viewports — fluid typography with CSS clamp(), viewport-relative scaling, minimum readable sizes, and maintaining hierarchy across breakpoints

developmentjavascriptgo
0
20
Design State DesignA

> UI state inventory — empty, loading, partial, error, success, offline, disabled, read-only, and how each state communicates system status

designrustgo
0
20
Design Token ArchitectureA

> Token taxonomy covering primitive, semantic, and component tokens with naming conventions, aliasing chains, theme switching, and the token-to-code pipeline.

designjavascriptgo
0
20
Design Transitions TimingA

> Temporal design — enter/exit asymmetry, stagger patterns, easing functions (ease-out for enter, ease-in for exit), duration by element size, interruptibility

designjavascriptgo
0
20
Design Type ScaleA

> Mathematical type scales — modular, major third, perfect fourth, golden ratio, custom scales, and when each is appropriate

designgoexpress
0
20
Design Typographic HierarchyA

> Establishing reading order through type — size, weight, color, spacing, case, and position as hierarchy signals

designgoaws
0
20
Design Typography FundamentalsA

> Anatomy of type — x-height, ascenders, descenders, counters, serifs, stroke contrast, optical sizing, and how anatomy affects readability

designgodebugging
0
20
Design Visual HierarchyA

> Directing attention through size, color, contrast, position, isolation, and motion — the system that tells the eye where to go first, second, and third

designrustgo
0
20
Design Web FontsA

> Font loading strategy — performance vs. FOUT/FOIT, variable fonts, subsetting, system font stacks, and font-display options

developmenttypescriptpython
0
20
Design WhitespaceA

> Space as a design element — macro vs. micro whitespace, breathing room, density control, and whitespace as a signal of quality and luxury

designrefactoringdocumentation
0
20
Detect Design DriftA

> Detect design-system drift — hardcoded values where tokens exist, and raw HTML primitives where registered components exist. The rule-based floor of design-pipeline (detect half). Reports findings; never modifies source. Pairs with a separate align-design-system fixer skill (deferred to a sibling sub-project).

designnodeexpress
0
20
Docs CraftA

> LLM-judgment critique of documentation quality — the ceiling counterpart to the rule-based documentation floor (harness-detect-doc-drift / harness-check-docs / harness-docs-pipeline, which enforce existence, link freshness, and coverage). The direct structural twin of harness-design-craft: the floor keeps docs from being broken; docs-craft asks whether they are any good. Emits 3-axis findings (tier × impact × confidence per ADR 0019).

documentationgoapi
0
20
Drizzle Filtering PatternA

> Filter Drizzle queries with eq(), and(), or(), between(), sql template tag, and custom conditions

databasestypescriptsql
0
20
Drizzle MigrationsA

> Manage Drizzle schema evolution with drizzle-kit generate/push/migrate and introspect

databasestypescriptbash
0
20
Drizzle Performance PatternsA

> Optimize Drizzle queries with prepared statements, db.batch(), explain analysis, and join-based N+1 avoidance

databasestypescriptgo
0
20
Drizzle Query BuilderA

> Compose type-safe SQL with Drizzle's fluent query builder for select, insert, update, and delete

databasestypescriptsql
0
20
Drizzle Raw SqlA

> Execute raw SQL safely in Drizzle with the sql template tag, db.execute(), and placeholder()

databasestypescriptrust
0
20
Drizzle Relations PatternA

> Define Drizzle relations with relations(), one(), many(), references(), and inferred types

databasestypescriptsql
0
20
Drizzle Schema DefinitionA

> Define Drizzle ORM schemas with pgTable/mysqlTable/sqliteTable, column types, indexes, and constraints

databasesjavascripttypescript
0
20
Drizzle TransactionsA

> Execute atomic Drizzle operations with db.transaction(), nested transactions, and rollback semantics

databasestypescriptsql
0
20
Drizzle With NextjsA

> Integrate Drizzle with Next.js using Neon/Vercel Postgres, edge runtime, and connection pooling

databasestypescriptbash
0
20
Events Event SchemaA

> Define and evolve event schemas using a schema registry with Avro, Protobuf, or JSON Schema.

testingtypescript
0
20
Events Event StormingA

> Run event storming workshops to discover domain events, commands, and bounded contexts.

developmenttypescriptdatabase
0
20
Events IdempotencyA

> Handle duplicate message delivery safely using idempotency keys and deduplication stores.

businesstypescriptgo
0
20
Events Kafka PatternsA

> Produce and consume Kafka messages with partitioning, consumer groups, and offset management.

businesstypescriptgo
0
20
Events Message QueueA

> Use message queues for reliable async delivery with competing consumers and dead letter queues.

businesstypescriptnode
0
20
Events Outbox PatternA

> Reliably publish domain events using the transactional outbox and CDC polling approach.

databasestypescriptgo
0
20
Events Pubsub PatternA

> Implement publisher-subscriber communication with topic-based routing and fan-out delivery.

toolstypescript
0
20
Events Redis PubsubA

> Use Redis pub/sub channels and keyspace notifications for lightweight real-time messaging.

toolstypescriptrust
0
20
Events Saga ChoreographyA

> Coordinate distributed workflows through event chains and compensation events without an orchestrator.

businesstypescriptreact
0
20
Events Sse PatternA

> Stream one-way server events to browsers using Server-Sent Events and EventSource.

toolstypescriptnode
0
20
Events Webhooks PatternA

> Implement reliable webhook delivery with retry backoff, signature verification, and queuing.

developmenttypescriptsql
0
20
Events Websocket PatternA

> Implement bidirectional real-time communication using WebSocket protocol and Socket.io.

businesstypescript
0
20
Gof Abstract FactoryA

> Create families of related objects through factory interfaces without coupling to concrete types.

developmenttypescriptgo
0
20
Gof Adapter PatternA

> Wrap incompatible interfaces to make them work together without modifying source code.

developmenttypescriptgo
0
20
Gof Bridge PatternA

> Separate abstraction from implementation to allow them to vary independently.

code-qualitytypescriptgo
0
20
Gof Builder PatternA

> Construct complex objects step-by-step using fluent builders and director classes.

businesstypescriptgo
0
20
Gof Chain Of ResponsibilityA

> Pass requests along a handler chain with short-circuit and async chain support.

code-qualitytypescriptgo
0
20
Gof Command PatternA

> Encapsulate operations as command objects to support undo, redo, and command queuing.

businesstypescriptgo
0
20
Gof Composite PatternA

> Compose objects into tree structures and treat individual and composite objects uniformly.

toolstypescriptgo
0
20
Gof Decorator PatternA

> Attach additional behavior to objects at runtime by wrapping them in decorator objects.

developmenttypescriptgo
0
20
Gof Facade PatternA

> Provide a simplified interface to a complex subsystem to reduce coupling for clients.

developmenttypescriptgo
0
20
Gof Factory MethodA

> Define a factory interface that subclasses use to decide which object to instantiate.

toolstypescriptgo
0
20
Gof Flyweight PatternA

> Share fine-grained objects to reduce memory usage by separating intrinsic and extrinsic state.

developmentjavascripttypescript
0
20
Gof Iterator PatternA

> Traverse collections with Symbol.iterator and generators for lazy, composable sequences.

toolstypescriptgo
0
20
Gof Mediator PatternA

> Decouple components by routing communication through a central mediator or event bus.

developmenttypescriptgo
0
20
Gof Memento PatternA

> Capture and restore object state using mementos for undo history and time-travel.

code-qualitytypescriptgo
0
20