All authors
Intense-Visions avatar

Claude Skills by Intense-Visions

github.com/Intense-Visions
2,869 skillsA× 2,850B× 190 installs1,168 views
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
Detect Doc DriftA

> Detect documentation that has drifted from code. Find stale docs before they mislead developers and AI agents.

code-qualitygonode
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
Docs FleetA

> Autonomous documentation-drift remediation sweep — enumerate the doc-drift/undocumented backlog by composing the existing documentation-floor detectors (`detect-doc-drift`, `harness check-docs`), fold the codebase into independent doc-fix areas, rank them by staleness value, confirm the batch with the human in one up-front round, fan out worktree-isolated subagents that each run the **real** per-area documentation pipeline (`harness-docs-pipeline --fix` to convergence), independently verify...

ai-agentsrustgo
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
Enforce ArchitectureA

> Validate architectural layer boundaries and detect dependency violations. No code may violate layer constraints — this is a hard gate, not a suggestion.

code-qualitytypescriptgo
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
Fleet CommandA

> Conductor for the `-fleet` family — one tier above the members, coordinating the fleets themselves rather than fanning out over an item-queue. It derives the run as a hybrid DAG whose wave boundaries come from a dependency edge **or** an evidence-fidelity exclusivity requirement — either one alone sufficient — instead of accepting a hand-picked order, enforces **one global** leaf-slot budget across every fleet in flight rather than the sum of their per-fleet governors, deconflicts the lanes...

businessrustgo
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
Gof Null ObjectA

> Eliminate null checks by providing default no-op implementations of interfaces.

toolstypescriptgo
0
20
Gof Observer PatternA

> Implement push-based notification between Subject and Observer with typed subscriptions.

developmenttypescriptgo
0
20
Gof Prototype PatternA

> Clone objects using prototype registry and structured clone for deep copy scenarios.

designtypescriptgo
0
20
Gof Proxy PatternA

> Control access to an object using virtual, protection, logging, and caching proxy patterns.

code-qualitytypescriptgo
0
20
Gof SingletonA

> Ensure a class has exactly one instance using module-level singletons and WeakRef patterns.

businesstypescriptgo
0
20
Gof State PatternA

> Replace conditional logic with state objects that delegate behavior to the current state.

developmenttypescriptgo
0
20
Gof Strategy PatternA

> Encapsulate interchangeable algorithms behind a common interface for runtime selection.

businesstypescriptgo
0
20
Gof Template MethodA

> Define an algorithm skeleton in a base class with abstract steps filled by subclasses.

toolstypescriptgo
0
20