Skip to main content

Skills in diesem Repository

deathrashed/agents - Seite 26

SkillsMP hat 1.032 Skills aus deathrashed/agents gesammelt. Öffne einen Skill, um Quelle und Details zu prüfen.

deathrashed/agents

Es werden 32 von 1.032 gesammelten Skills angezeigt.

Beruf
Webentwickler
Beschreibung

Tailwind CSS animations and transitions including built-in utilities and custom keyframes. PROACTIVELY activate for: (1) animate-* utilities (spin, ping, pulse, bounce), (2) custom @keyframes via @theme animate, (3) transition utilities (transition, duration,…

Quellsprache: Englisch

Aktualisiert
Beruf
Webentwickler
Beschreibung

Tailwind CSS debugging and troubleshooting common issues. PROACTIVELY activate for: (1) classes not applying / no styles in browser, (2) JIT mode not picking up dynamic class names (string concatenation), (3) v3-to-v4 migration errors, (4) PostCSS…

Quellsprache: Englisch

Aktualisiert
Beruf
Webentwickler
Beschreibung

Tailwind CSS integration with React, Vue, Next.js, Svelte, Angular, and other frameworks. PROACTIVELY activate for: (1) Tailwind in React (Vite, CRA), (2) Tailwind in Next.js (App Router, Pages Router), (3) Tailwind in Vue 3 / Nuxt, (4) Tailwind in SvelteKit,…

Quellsprache: Englisch

Aktualisiert
Beruf
Webentwickler
Beschreibung

Tailwind CSS v4 fundamentals — installation, CSS-first configuration, and 2025-2026 best practices. PROACTIVELY activate for: (1) installing Tailwind v4 (Vite plugin, PostCSS, CLI), (2) CSS-first configuration with @theme, (3) @import "tailwindcss" syntax,…

Quellsprache: Englisch

Aktualisiert
Beruf
Web- und digitale Schnittstellendesigner
Beschreibung

Mobile-first responsive design patterns with Tailwind CSS v4 (2025-2026). PROACTIVELY activate for: (1) mobile-first design with Tailwind breakpoints (sm:, md:, lg:, xl:, 2xl:), (2) responsive utility ordering (default = mobile, then breakpoints), (3)…

Quellsprache: Englisch

Aktualisiert
Beruf
Webentwickler
Beschreibung

Tailwind CSS performance optimization including v4 improvements. PROACTIVELY activate for: (1) Tailwind v4 Oxide engine performance, (2) Lightning CSS minification, (3) reducing CSS bundle size, (4) content config tuning to avoid scanning unused files, (5)…

Quellsprache: Englisch

Aktualisiert
Beruf
Webentwickler
Beschreibung

Tailwind CSS plugins — official plugins and custom plugin development. PROACTIVELY activate for: (1) @tailwindcss/typography (prose), (2) @tailwindcss/forms, (3) @tailwindcss/aspect-ratio (now built-in), (4) @tailwindcss/container-queries, (5) writing custom…

Quellsprache: Englisch

Aktualisiert
Beruf
Web- und digitale Schnittstellendesigner
Beschreibung

Tailwind CSS responsive design and dark mode patterns (2025-2026). PROACTIVELY activate for: (1) dark mode setup (class-based vs media-query, dark: variant), (2) toggling dark mode at runtime (data-theme, html.dark), (3) prefers-color-scheme handling, (4)…

Quellsprache: Englisch

Aktualisiert
Beruf
Netzwerk- und Computersystemadministratoren
Beschreibung

OpenTofu (Terraform open-source fork) guide and migration. PROACTIVELY activate for: (1) OpenTofu installation and tofu CLI usage, (2) migrating from Terraform CLI to OpenTofu, (3) provider compatibility between Terraform and OpenTofu, (4) state file…

Quellsprache: Englisch

Aktualisiert
Beruf
Netzwerk- und Computersystemadministratoren
Beschreibung

Terraform task patterns — common workflows and pipeline steps. PROACTIVELY activate for: (1) terraform init/plan/apply/destroy workflows, (2) terraform fmt and validate in CI, (3) workspace management (terraform workspace), (4) remote state backends (Azure…

Quellsprache: Englisch

Aktualisiert
Beruf
Softwarequalitätssicherungsanalysten und -tester
Beschreibung

Vitest 3 features and migration from Vitest 2 (2025). PROACTIVELY activate for: (1) Vitest 3 stable features, (2) workspace mode for monorepos, (3) test annotations and reporter API, (4) projects configuration, (5) browser mode in Vitest 3, (6) inline…

Quellsprache: Englisch

Aktualisiert
Beruf
Softwarequalitätssicherungsanalysten und -tester
Beschreibung

Windows and Git Bash testing compatibility for Vitest, Playwright, and MSW. PROACTIVELY activate for: (1) Vitest tests failing on Windows but passing on Linux, (2) Playwright on Windows with Git Bash quirks, (3) MSW intercept issues across shells, (4) path…

Quellsprache: Englisch

Aktualisiert
Beruf
Datenbankarchitekten
Beschreibung

Advanced T-SQL patterns and techniques for SQL Server and Azure SQL. PROACTIVELY activate for: (1) writing CTEs and recursive queries, (2) APPLY operator (CROSS APPLY, OUTER APPLY), (3) MERGE statement and OUTPUT clause, (4) temporal tables…

Quellsprache: Englisch

Aktualisiert
Beruf
Datenbankadministratoren
Beschreibung

Azure SQL Database optimization and platform-specific features. PROACTIVELY activate for: (1) Azure SQL Database optimization, (2) DTU vs vCore selection and right-sizing, (3) automatic tuning (force last good plan, create/drop index), (4) Hyperscale tier and…

Quellsprache: Englisch

Aktualisiert
Beruf
Datenbankarchitekten
Beschreibung

SQL Server index design and optimization strategies. PROACTIVELY activate for: (1) designing indexes for new tables, (2) clustered vs nonclustered index selection, (3) columnstore index optimization (clustered, nonclustered), (4) filtered indexes for partial…

Quellsprache: Englisch

Aktualisiert
Beruf
Datenbankadministratoren
Beschreibung

T-SQL query optimization for SQL Server and Azure SQL Database. PROACTIVELY activate for: (1) optimizing slow queries, (2) SARGability and index-seek vs scan, (3) query hints (OPTION RECOMPILE, FORCESEEK, MAXDOP, OPTIMIZE FOR), (4) parameter sniffing problems…

Quellsprache: Englisch

Aktualisiert
Beruf
Datenbankarchitekten
Beschreibung

Complete T-SQL function reference for SQL Server and Azure SQL Database. PROACTIVELY activate for: (1) string functions (CONCAT_WS, STRING_SPLIT, STRING_AGG, TRIM, REPLACE, LEFT/RIGHT/SUBSTRING), (2) date/time functions (DATEADD, DATEDIFF, FORMAT, DATETRUNC,…

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

C# scripting in Unity for gameplay, behavior, and engine integration. PROACTIVELY activate for: (1) writing Unity C# scripts, (2) MonoBehaviour lifecycle (Awake/OnEnable/Start/Update/FixedUpdate/LateUpdate), (3) coroutines and async/await in Unity, (4)…

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

Unity Editor tooling, build automation, and asset pipeline customization. PROACTIVELY activate for: (1) writing custom Editor scripts, (2) custom inspectors and PropertyDrawer attributes, (3) EditorWindow creation, (4) ScriptedImporter for custom asset types,…

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

Unity game modding architecture and mod-loading systems. PROACTIVELY activate for: (1) adding modding support to a Unity game, (2) Asset Bundles for mods, (3) Addressables for mod content, (4) Lua scripting via MoonSharp, (5) Harmony patching for runtime IL…

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

Unity multiplayer networking with NGO, Mirror, Photon, and Fish-Net. PROACTIVELY activate for: (1) building Unity multiplayer games, (2) Netcode for GameObjects (NGO) setup and patterns, (3) Mirror networking, (4) Photon PUN and Photon Fusion, (5) Fish-Net…

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

Unity performance optimization for slow games, stutters, and FPS drops. PROACTIVELY activate for: (1) game is slow, stuttering, or has FPS drops, (2) Unity Profiler analysis, (3) Frame Debugger and draw-call investigation, (4) batching (static, dynamic, GPU…

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

Unity shaders, materials, and rendering pipelines (URP/HDRP/Built-in). PROACTIVELY activate for: (1) writing shaders in Shader Graph, HLSL, or ShaderLab, (2) URP and HDRP shader authoring, (3) custom render pipeline work (SRP), (4) lighting setup (baked vs…

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

Unity UI development with UGUI and UI Toolkit. PROACTIVELY activate for: (1) building Unity user interfaces, (2) UGUI (Canvas, RectTransform, anchors), (3) UI Toolkit (USS, UXML, VisualElement), (4) EventSystem and input handling, (5) common UI components…

Quellsprache: Englisch

Aktualisiert
Beruf
Schriftsteller und Autoren
Beschreibung

Master hook creation and audience retention for viral video success. PROACTIVELY activate for: (1) Video hook optimization, (2) Opening second strategies, (3) Audience retention improvement, (4) Attention capture techniques, (5) Psychological triggers, (6)…

Quellsprache: Englisch

Aktualisiert
Beruf
Marktforschungsanalysten und Marketingspezialisten
Beschreibung

Complete YouTube long-form video optimization for maximum watch time, SEO, and viral potential. PROACTIVELY activate for: (1) YouTube video strategy, (2) Long-form content planning, (3) Watch time optimization, (4) YouTube SEO, (5) Thumbnail design strategy,…

Quellsprache: Englisch

Aktualisiert
Beruf
Marktforschungsanalysten und Marketingspezialisten
Beschreibung

Deep understanding of TikTok, YouTube, Instagram, and Facebook algorithms for 2025-2026. PROACTIVELY activate for: (1) Algorithm optimization, (2) Platform-specific strategy, (3) Content distribution understanding, (4) Engagement signal optimization, (5) Cold…

Quellsprache: Englisch

Aktualisiert
Beruf
Marktforschungsanalysten und Marketingspezialisten
Beschreibung

Complete short-form video optimization for TikTok, Instagram Reels, YouTube Shorts, and Facebook Reels. PROACTIVELY activate for: (1) TikTok content strategy, (2) Instagram Reels optimization, (3) YouTube Shorts creation, (4) Facebook Reels strategy, (5)…

Quellsprache: Englisch

Aktualisiert
Beruf
Netzwerk- und Computersystemadministratoren
Beschreibung

Complete Windows file path troubleshooting knowledge for Claude Code on Git Bash and Windows environments. PROACTIVELY activate for: (1) file path errors on Windows, (2) backslash vs forward slash issues, (3) Edit/Write/Read tool failures, (4) MINGW path…

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

NestJS best practices and architecture patterns for building production-ready applications. This skill should be used when writing, reviewing, or refactoring NestJS code to ensure proper patterns for modules, dependency injection, security, and performance.

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

React/TypeScript component style guide. Use when writing, refactoring, or reviewing React components, especially around props typing, state boundaries, shared local state with Jotai atoms, API types, query/mutation contracts, navigation, memoization,…

Quellsprache: Englisch

Aktualisiert
Beruf
Softwareentwickler
Beschreibung

Tailwind CSS v4.1+ rules and best practices. Use when writing, reviewing, refactoring, or upgrading Tailwind CSS classes and styles, especially v4 utility migrations, layout spacing, typography, responsive variants, dark mode, gradients, CSS variables, and…

Quellsprache: Englisch

Aktualisiert
Es werden 32 von 1.032 gesammelten Skills angezeigt.