All authors
Intense-Visions avatar

Claude Skills by Intense-Visions

github.com/Intense-Visions
2,869 skillsA× 2,850B× 190 installs1,151 views
Security Log CorrelationA

> Correlate events across multiple log sources to detect attacks that are invisible in any > single log stream -- because attackers do not confine their activities to one system

devopsgoaws
0
20
Security Memory SafetyA

> Memory corruption vulnerabilities account for 70% of critical CVEs in C/C++ codebases -- > choose memory-safe languages by default, and when you cannot, understand the vulnerability > classes and mitigations

developmentjavascripttypescript
0
20
Security Mfa DesignA

> Something you know, something you have, something you are -- combining authentication factors so that compromising one factor alone is insufficient to gain access

securityrustgo
0
20
Security MicrosegmentationA

> Isolate every workload behind its own perimeter -- so compromising the web server does > not hand the attacker the database, the secrets store, and the internal APIs

securityrustgo
0
20
Security Mtls DesignA

> Both sides prove their identity with certificates -- the server authenticates to the > client and the client authenticates to the server, establishing a cryptographically > verified service-to-service channel

securitypythonrust
0
20
Security Penetration TestingA

> Hire skilled attackers to find the vulnerabilities your automated tools and internal reviews > miss -- then fix what they find and verify the fixes

securityrustgo
0
20
Security Post Incident ReviewA

> Organizations that conduct blameless post-incident reviews after every significant security > incident reduce their recurrence rate by identifying systemic weaknesses; organizations that > skip the review are condemned to repeat the same failures with different symptoms

devopsrustgo
0
20
Security Race ConditionsB

> When security depends on the order of operations but the system does not enforce that > order, attackers exploit the gap between check and use -- turning microsecond timing windows > into privilege escalation, double-spend, and data corruption

securitypythonjava
0
20
Security Rbac DesignA

> Assign permissions to roles, assign roles to users -- simple, auditable, and sufficient for most applications when combined with resource-level checks

securitygoexpress
0
20
Security Rebac DesignA

> Model authorization as a graph of relationships -- "User X is an editor of Document Y which belongs to Folder Z owned by Team W" -- enabling inherited permissions that follow resource hierarchies

securitygosql
0
20
Security Sbom ProvenanceA

> Know exactly what is in your software (SBOM) and prove how it was built (provenance) -- because > you cannot secure what you cannot inventory

devopsrustgo
0
20
Security Secrets LifecycleB

> Secrets are born (generated), distributed (delivered to consumers), rotated (replaced on > schedule), and die (revoked and destroyed) -- manage every phase or the secret manages you

devopspythongo
0
20
Security Security ChampionsA

> Scale security knowledge across the engineering organization by embedding trained security > advocates in every development team -- because the security team cannot review every line of > code, but developers can

securityrustgo
0
20
Security Session ManagementA

> Session tokens are bearer credentials -- generate with CSPRNG, bind to client context, enforce idle and absolute timeouts, and regenerate on privilege changes

securityjavascriptpython
0
20
Security Shift Left DesignA

> Find security flaws in the design document, not in the penetration test report -- because > fixing an architecture flaw costs 100x more after deployment than during design

securityrustgo
0
20
Security Symmetric EncryptionA

> AES-256-GCM for most use cases, ChaCha20-Poly1305 when hardware AES is unavailable -- > always use authenticated encryption, never roll your own

securitygoaws
0
20
Security Threat Modeling ProcessA

> End-to-end threat modeling from system decomposition through threat enumeration, risk rating, and mitigation tracking -- the operational backbone of proactive security design

securityrustgo
0
20
Security Threat Modeling StrideA

> Systematic threat identification using the six STRIDE categories -- Spoofing, Tampering, Repudiation, Information Disclosure, Denial of Service, and Elevation of Privilege

securityrustgo
0
20
Security Tls FundamentalsA

> TLS 1.3 with ECDHE key exchange, AES-256-GCM or ChaCha20-Poly1305 ciphers, and valid > certificates -- the minimum bar for all network communication

securityrustgo
0
20
Security Trust BoundariesA

> Every security control exists because data crosses from a trusted zone to a less-trusted one -- identify the boundaries first, then concentrate defenses there

securitypythonrust
0
20
Security Vault PatternsA

> Centralize secrets in a vault, issue dynamic short-lived credentials, encrypt data > through a transit engine, and eliminate long-lived secrets from your infrastructure

securitygosql
0
20
Security Vulnerability DisclosureA

> A vulnerability without a disclosure process is a vulnerability that gets sold to exploit > brokers, dropped as a zero-day, or posted on Twitter -- coordinated disclosure turns > discovered vulnerabilities into patches instead of breaches

securitygosql
0
20
Security Zero Trust PrinciplesA

> No implicit trust based on network position, VPN status, or previous authentication -- every request is authenticated, authorized, and encrypted regardless of origin

securityrustgo
0
20
Spec CraftA

> LLM-judgment critique of spec quality (proposals + ADRs) against a curated rubric catalog from the spec-quality canon. Per-section critique with rubric-to-section mapping. Second member of the craft-pipeline initiative; highest-leverage craft skill because spec quality compounds across the entire planning → implementation → review lifecycle below it. Emits 3-axis findings (tier × impact × confidence per ADR 0019).

businessgoapi
0
20
State Context PatternA

> Manage shared state with React Context and useReducer for prop-drilling avoidance and scoped state

developmenttypescriptgo
0
20
State Jotai AtomsA

> Build bottom-up atomic state with Jotai for granular, composable React state management

developmenttypescriptreact
0
20
State Selection PatternsA

> Select and derive state efficiently to minimize component re-renders across any state management library

businesstypescriptgo
0
20
State Server Client SyncA

> Separate server state from client state and synchronize them with TanStack Query and local stores

businesstypescriptreact
0
20
State Zustand DevtoolsA

> Debug Zustand stores with Redux DevTools integration for time-travel debugging and action inspection

developmenttypescriptnode
0
20
State Zustand ImmerA

> Write mutable-style state updates in Zustand stores with the Immer middleware for cleaner nested mutations

toolstypescriptgo
0
20
State Zustand PersistA

> Persist Zustand store to localStorage or custom storage with automatic rehydration and migration support

developmenttypescriptbackend
0
20
State Zustand ReactA

> Optimize Zustand re-renders with selectors, shallow comparison, useShallow, and transient subscriptions

developmenttypescriptgo
0
20
State Zustand SlicesA

> Split large Zustand stores into composable slice functions for modular, maintainable state management

businesstypescriptgo
0
20
State Zustand StoreA

> Create lightweight global stores with Zustand's create function for minimal-boilerplate state management

developmentjavascripttypescript
0
20
Svelte Adapter ConfigA

> Deploy SvelteKit to any platform by selecting and configuring the correct adapter in svelte.config.js

devopsjavascripttypescript
0
20
Svelte Component CompositionA

> Build flexible components in Svelte 5 using snippets, {@render}, typed children props, and named content areas

developmenttypescriptshell
0
20
Svelte Error PagesA

> Handle 404s, auth failures, and unexpected crashes in SvelteKit with +error.svelte, the error() helper, and handleError hooks

developmenttypescriptgo
0
20
Svelte Form ActionsA

> Process HTML form submissions server-side using SvelteKit actions with progressive enhancement via use:enhance

developmentjavascripttypescript
0
20
Svelte Load FunctionsA

> Fetch route data before rendering using SvelteKit's load functions — server-only, universal, streaming, and invalidation patterns

securitytypescriptapi
0
20
Svelte Performance PatternsA

> Minimize bundle size, reduce perceived latency, and handle large datasets efficiently in SvelteKit applications

developmentjavascripttypescript
0
20
Svelte Routing PatternA

> Build SvelteKit routes using the file-system convention with +page.svelte, +layout.svelte, route groups, and dynamic segments

developmenttypescriptgo
0
20
Svelte Runes PatternA

> Declare reactive state, derived values, and side effects in Svelte 5 using the runes API ($state, $derived, $effect, $props, $bindable)

developmenttypescriptreact
0
20
Svelte Server HooksA

> Intercept every request, populate locals, modify responses, and handle errors using SvelteKit's hooks.server.ts

businesstypescriptgo
0
20
Svelte State ManagementA

> Choose the right state scope in SvelteKit: component-local runes, context API for subtree isolation, and module-level state for true singletons

developmenttypescriptreact
0
20
Svelte Stores PatternA

> Share reactive state across any component tree using writable, readable, and derived stores with the Svelte store contract

developmenttypescriptreact
0
20
Svelte Testing PatternsA

> Test Svelte 5 components with Vitest and @testing-library/svelte — render, user events, store mocking, and async tick flushing

testingtypescriptbash
0
20
Svelte Transitions AnimationsA

> Add enter/exit animations, list reordering motion, and spring physics to Svelte elements using built-in and custom transitions

developmentjavascripttypescript
0
20
Tanstack Cache ManagementA

> Directly read, write, and remove cache entries with QueryClient methods

businesstypescriptgo
0
20
Tanstack Dependent QueriesA

> Chain queries that depend on each other's results using the enabled flag and useQueries

developmenttypescriptreact
0
20
Tanstack DevtoolsA

> Inspect cache state, query status, and network activity using the React Query DevTools panel

developmenttypescriptgo
0
20