All authors
Intense-Visions avatar

Claude Skills by Intense-Visions

github.com/Intense-Visions
2,869 skillsA× 2,850B× 190 installs1,152 views
React Server ComponentsA

> Run components on the server to eliminate client JavaScript and enable direct data access

developmentjavascripttypescript
0
20
React Server RenderingA

> Pre-render React components on the server for improved SEO and initial load performance

developmenttypescriptreact
0
20
React State Management PatternA

> Choose the right state management approach for your React application scale

businesstypescriptgo
0
20
React Static ImportA

> Bundle all dependencies at build time for predictable loading performance

developmenttypescriptgo
0
20
React Suspense PatternA

> Declaratively handle async loading states with React Suspense boundaries

developmenttypescriptreact
0
20
Redux Entity AdapterA

> Normalize entity collections with createEntityAdapter for O(1) lookups and pre-built CRUD reducers

businesstypescriptapi
0
20
Redux Listener MiddlewareA

> React to dispatched actions and state changes with createListenerMiddleware for structured side effects

developmenttypescriptreact
0
20
Redux Persistence PatternA

> Persist and rehydrate Redux state across browser sessions with redux-persist or manual localStorage strategies

developmenttypescriptreact
0
20
Redux Rtk OptimisticA

> Apply optimistic and pessimistic cache updates with onQueryStarted for instant UI feedback with automatic rollback

businesstypescriptapi
0
20
Redux Rtk Query EndpointsA

> Define query and mutation endpoints with cache tag invalidation, response transformation, and auto-generated hooks

developmenttypescriptapi
0
20
Redux Rtk Query SetupA

> Configure RTK Query with createApi and fetchBaseQuery for automatic caching, deduplication, and loading state management

developmenttypescriptreact
0
20
Redux Selectors PatternA

> Derive and memoize computed state with createSelector to avoid redundant calculations and unnecessary re-renders

developmenttypescriptgo
0
20
Redux Slice PatternA

> Organize Redux state into self-contained slices using createSlice for co-located reducers, actions, and selectors

businesstypescriptrefactoring
0
20
Redux Store SetupA

> Configure the Redux store with configureStore, typed hooks, middleware, and Provider wiring

developmenttypescriptreact
0
20
Redux Testing PatternsA

> Test Redux slices, thunks, selectors, and connected components with focused, maintainable test strategies

testingtypescriptreact
0
20
Redux Thunk PatternA

> Handle async operations with createAsyncThunk for structured pending/fulfilled/rejected lifecycle management

businesstypescriptapi
0
20
Redux Typescript PatternsA

> Type Redux state, actions, thunks, and hooks with full inference and minimal manual annotation

developmenttypescriptapi
0
20
Resilience Bulkhead PatternA

> Isolate failures by partitioning resources so one failing component cannot exhaust capacity for others

businesstypescriptjava
0
20
Resilience Chaos TestingA

> Validate resilience by injecting controlled failures to verify that fallbacks, retries, and circuit breakers work under real conditions

devopstypescriptdocker
0
20
Resilience Circuit BreakerA

> Protect services from cascading failures by stopping requests to unhealthy dependencies until they recover

devopstypescriptnode
0
20
Resilience Dead LetterA

> Handle permanently failing messages with dead letter queues for safe inspection, alerting, and reprocessing

documentationtypescriptgo
0
20
Resilience Fallback PatternA

> Provide degraded but functional responses when primary operations fail, ensuring users always get a result

toolstypescriptgo
0
20
Resilience Health ChecksA

> Implement health check endpoints for service readiness, liveness, and dependency monitoring

devopstypescriptkubernetes
0
20
Resilience IdempotencyA

> Ensure safe retries by making operations produce the same result regardless of how many times they execute

businesstypescriptsql
0
20
Resilience Rate LimitingA

> Control request throughput with token bucket, sliding window, and fixed window algorithms to protect services from overload

devopstypescriptgo
0
20
Resilience Retry PatternA

> Handle transient failures with configurable retry strategies, exponential backoff, and jitter

code-qualitytypescriptaws
0
20
Resilience Timeout PatternA

> Prevent resource exhaustion and hung requests with timeouts, AbortController, and deadline propagation

businesstypescriptsql
0
20
Security Abac DesignA

> Evaluate access decisions using attributes of the subject, resource, action, and environment -- eliminating role explosion by expressing authorization as policy rules over contextual data

devopsrustgo
0
20
Security Asymmetric EncryptionA

> Public-key cryptography for key exchange, digital signatures, and identity verification > -- Ed25519 for signatures, X25519 for key exchange, RSA-2048+ only for legacy > compatibility

securityrustgo
0
20
Security Attack TreesA

> Model multi-step adversary strategies as goal-oriented tree decompositions -- revealing which attack paths are cheapest and which defenses yield the highest leverage

securityrustgo
0
20
Security Audit Log DesignA

> Log the who, what, when, where, and outcome of every security-relevant event in a > structured, tamper-evident format that enables both real-time detection and forensic > reconstruction

securityrustgo
0
20
Security Authentication FlowsA

> Login, registration, password reset, magic links, and SSO -- each flow has distinct attack surfaces and each must be hardened independently

securityjavascriptgo
0
20
Security Capability Based SecurityA

> Replace ambient authority ("who are you?") with explicit capabilities ("what token do you hold?") -- eliminating confused deputy attacks by making every permission a transferable, revocable, unforgeable object

securityjavascriptrust
0
20
Security Certificate ManagementA

> X.509 certificates are the backbone of internet trust -- manage them correctly or accept > that attackers can impersonate any service, intercept any connection, and forge any > identity

devopsrustgo
0
20
Security Ci Security TestingA

> Run SAST, DAST, SCA, and secrets scanning on every commit -- automated security gates that > catch vulnerabilities before they reach production

securityjavascriptpython
0
20
Security Code SigningA

> Sign every artifact you produce and verify every artifact you consume -- because an unsigned > binary could have been built by anyone, including an attacker

devopspythonrust
0
20
Security Compliance LoggingA

> Regulatory frameworks mandate specific logging requirements -- SOC2, GDPR, HIPAA, and > PCI-DSS each define what must be logged, how long logs are retained, and what constitutes > auditable evidence, and failing to meet these requirements carries fines, legal liability, > and loss of certification

devopsrustgo
0
20
Security CraftA

> LLM-judgment critique of security posture for TS/JS source — the ceiling counterpart to `harness-security-scan` (CVE/OWASP rule-based floor) and `harness-security-reviewer` (procedural review). Threat-modeling-as-skill rather than pattern-matching. Critiques whether trust boundaries are respected, where implicit privilege escalation lurks, whether the code defends in depth or just at the gate, whether principle of least authority is honored. Sixth non-design member of the craft-pipeline ini...

devopsrustgo
0
20
Security Credential StorageA

> Argon2id for new systems, bcrypt for broad compatibility -- always salt, consider peppering, tune cost parameters to hardware, and plan hash upgrade paths

securitypythongo
0
20
Security Cryptographic RandomnessA

> Every session token, encryption key, nonce, and CSRF token depends on unpredictable randomness -- use a CSPRNG or accept that attackers will predict your secrets

securityjavascriptpython
0
20
Security Dependency AuditingA

> Your application is 90% third-party code -- scan it for known vulnerabilities, lock it > to exact versions, and have a strategy for when a critical CVE drops on a Friday > afternoon

securitypythonrust
0
20
Security Deserialization AttacksB

> Deserialization reconstructs objects from byte streams -- and in most languages, that > reconstruction executes code, meaning an attacker who controls the serialized input controls > what code runs on your server

securitypythonrust
0
20
Security Environment Variable RisksA

> Environment variables are visible in process listings, inherited by child processes, > captured in crash dumps, and logged by every debugging tool -- they are the worst place > to store secrets

devopspythonrust
0
20
Security Forensics FundamentalsA

> Digital forensics is the discipline of collecting, preserving, and analyzing evidence from > compromised systems -- done correctly, it reveals the full attack narrative; done poorly, it > destroys the evidence needed to understand what happened and prevent recurrence

devopsrustgo
0
20
Security Hashing FundamentalsA

> One-way functions for integrity verification, content addressing, and commitment schemes > -- SHA-256 for interoperability, BLAKE3 for performance, and never MD5 or SHA-1 for > security

securityrustgo
0
20
Security Hmac SignaturesA

> HMAC proves a message was created by someone with the shared secret; digital signatures prove it was created by a specific private key holder -- choose based on whether you need symmetric verification or non-repudiation

securitypythonrust
0
20
Security Hsts PreloadingA

> Tell the browser "never connect to this domain over HTTP, ever" -- and make it permanent > by embedding the directive in every browser's shipped preload list

securitygotesting
0
20
Security Identity VerificationA

> Authentication at login is necessary but insufficient -- continuously evaluate identity > confidence using device trust, behavioral signals, and environmental context throughout > the session

securityrustgo
0
20
Security Incident ContainmentA

> The first 60 minutes of a security incident determine whether the organization loses days > of data or months of data -- containment is not about fixing the vulnerability, it is about > stopping the bleeding while preserving the evidence needed to understand what happened

securitygoshell
0
20
Security Injection FamiliesA

> Every injection vulnerability has the same root cause: untrusted data is interpreted as > code because the boundary between data and instructions was not enforced -- fix the > boundary, fix the bug

developmentjavascriptpython
0
20