All authors
Intense-Visions avatar

Claude Skills by Intense-Visions

github.com/Intense-Visions
2,869 skillsA× 2,850B× 190 installs1,182 views
Harness Test DataA

> Test factories, fixtures, database seeding, and test data isolation. Establishes patterns for creating realistic, composable test data without coupling tests to specific database states.

developmentjavascripttypescript
0
20
Harness Ux CopyA

> Audit microcopy, error messages, and UI strings for voice/tone consistency, clarity, and actionability. Produces a structured report with specific rewrites and a project voice guide when none exists.

developmentgoreact
0
20
Harness VerificationA

> 3-level evidence-based verification. No completion claims without fresh evidence. "Should work" is not evidence.

testingpythonrust
0
20
Harness VerifyA

> Binary pass/fail quick gate. Runs test, lint, typecheck — returns structured result. No judgment calls, no deep analysis. Pass or fail.

testinggonode
0
20
Harness Visual RegressionA

> Screenshot comparison, visual diff detection, and baseline management. Catches unintended CSS regressions, layout shifts, and rendering inconsistencies before they reach production.

testingtypescriptgo
0
20
Harness Workflow AuditA

> Audit `.github/workflows/*.yml` for quality and hygiene: stale path filters, missing gates, permission scoping, script injection, action pinning, self-trigger loops, and ratchet calibration. Every check taxonomy entry is grounded in defect patterns observed in downstream repos, where each defect silently broke a gate and was only caught by manual review.

testingtypescriptrust
0
20
Ideate FleetA

> Strategy-grounded ideation fan-out at the head of the `-fleet` spine — compose `STRATEGY.md` tracks and supplied opportunity areas into a queue of disjoint themes, confirm the batch with the human in one up-front round, fan out worktree-isolated subagents that each run the **real** `harness-ideate` pipeline for one theme to its ranked artifact, collect every artifact back out of its worktree, independently re-derive every ranking instead of trusting a subagent's report, and hand back **one ...

businessrustgo
0
20
Initialize Test Suite ProjectA

> Scaffold or migrate a test-suite project — API, E2E/UI, or shared test library. Owns test-suite-specific archetype selection, shared-library vs in-repo scaffolding decision, layer variants, tag taxonomy, reporter stack, and custom report. Cross-cutting concerns (adoption level, personas, AGENTS.md base template, i18n, knowledge graph, roadmap nudge, final commit) delegate to `harness-initialize-project`.

testingtypescriptgo
0
20
Issue FleetA

> Autonomous open-issue-backlog **intake** orchestrator — enumerate the open-issue queue, triage each issue (label, dedup, route, prioritize), confirm the destructive closes with the human in one up-front round, fan out concurrency-governed triage subagents over queue slices, independently re-derive every mutation from the issue's own signals, and hand the downstream fleets a clean, ranked, deduped, routed queue. The fleet never silently closes an issue and never trusts a subagent's self-repo...

documentationrustgo
0
20
Js Abstract Factory PatternA

> Create families of related objects without specifying their concrete classes

toolsjavascriptjava
0
20
Js Adapter PatternA

> Convert the interface of a class into another interface that clients expect

toolsjavascriptjava
0
20
Js Bridge PatternA

> Decouple abstraction from implementation so both can vary independently

developmentjavascriptgo
0
20
Js Chain Of Responsibility PatternA

> Pass a request along a chain of handlers until one handles it

toolsjavascriptjava
0
20
Js Command PatternA

> Encapsulate operations as objects to support undo, queue, and logging

toolsjavascriptjava
0
20
Js Composite PatternA

> Compose objects into tree structures and treat individual objects and composites uniformly

businessjavascriptjava
0
20
Js Constructor PatternA

> Use constructor functions or ES6 classes to create and initialize objects

toolsjavascriptgo
0
20
Js Decorator PatternA

> Extend object behavior dynamically without modifying its source

toolsjavascriptjava
0
20
Js Dynamic ImportA

> Load ES modules on demand with import() to reduce initial bundle size and enable code splitting

developmentjavascriptjava
0
20
Js Facade PatternA

> Provide a simplified interface to a complex subsystem

developmentjavascriptgo
0
20
Js Factory PatternA

> Create objects via a factory function without exposing instantiation logic to callers

toolsjavascriptjava
0
20
Js Flyweight PatternA

> Share common state across many fine-grained objects to reduce memory usage

businessjavascriptjava
0
20
Js Iterator PatternA

> Traverse a collection sequentially without exposing its internal structure

toolsjavascriptjava
0
20
Js Mediator Middleware PatternA

> Route component interactions through a central mediator to reduce direct coupling

developmentjavascriptgo
0
20
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