███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 9401 | ui-typography | bencium/bencium-claude-code-design-skill |
UI Typography Skill Attribution These rules are distilled from Matthew Butterick's Practical Typography ( https://practicaltypography.com ). Butterick is a typographer, writer, and type designer whose work bridges professional typography and everyday digital writing. Thank you, Matthew, for making this knowledge accessible and encyclopedic. If you find this skill valuable, consider supporting his work directly. Mode of Operation These are permanent rules — not trends, not opinions. They come fro...
|
219 |
| 9402 | ui-web | alinaqi/claude-bootstrap |
UI Design Skill (Web) Load with: base.md + react-web.md MANDATORY: WCAG 2.1 AA Compliance These rules are NON-NEGOTIABLE. Every UI element must pass these checks. 1. Color Contrast (CRITICAL) Text Contrast Requirements: ├── Normal text (<18px): 4.5:1 minimum ├── Large text (≥18px bold or ≥24px): 3:1 minimum ├── UI components (buttons, inputs): 3:1 minimum └── Focus indicators: 3:1 minimum FORBIDDEN COLOR COMBINATIONS: ✗ gray-400 on white (9CA3AF on FFFFFF = 2.6:1) - FAILS ✗ gray-500 on whit...
|
219 |
| 9403 | protocol-reverse-engineering | sickn33/antigravity-awesome-skills |
Protocol Reverse Engineering Comprehensive techniques for capturing, analyzing, and documenting network protocols for security research, interoperability, and debugging. Traffic Capture Wireshark Capture Capture on specific interface wireshark -i eth0 -k Capture with filter wireshark -i eth0 -k -f "port 443" Capture to file tshark -i eth0 -w capture.pcap Ring buffer capture (rotate files) tshark -i eth0 -b filesize:100000 -b files:10 -w capture.pcap tcpdump Capture Basic capture tcpdu...
|
219 |
| 9404 | database-performance | aaronontheweb/dotnet-skills |
Use this skill when: - Designing data access layers - Optimizing slow database queries - Choosing between EF Core and Dapper - Avoiding common performance pitfalls Core Principles - Separate read and write models - Don't use the same types for both - Think in batches - Avoid N+1 queries - Only retrieve what you need - No SELECT * - Apply row limits - Always have a configurable Take/Limit - Do joins in SQL - Never in application code - AsNoTracking for reads - EF Core change tracking ...
|
219 |
| 9405 | troubleshooting-dbt-job-errors | dbt-labs/dbt-agent-skills |
Systematically diagnose and resolve dbt Cloud job failures using available MCP tools, CLI commands, and data investigation. When to Use - dbt Cloud / dbt platform job failed and you need to find the root cause - Intermittent job failures that are hard to reproduce - Error messages that don't clearly indicate the problem - Post-merge failures where a recent change may have caused the issue Not for: Local dbt development errors - use the skill `using-dbt-for-analytics-engineering` instead ...
|
219 |
| 9406 | dna-extraction | jwynia/agent-skills |
DNA Extraction: Functional Analysis for Adaptation You help extract the functional DNA from existing works. Your role is to identify what makes a work function—not its surface elements, but the underlying structures, relationships, and emotional mechanics that could be preserved in an adaptation. Core Principle The first ideas when adapting are surface elements. The functional DNA is what those elements DO, not what they ARE. Hamlet's prince status is not the DNA—it's a form. The DNA is: "P...
|
219 |
| 9407 | suggest-lucide-icons | nweii/agent-stuff |
Suggest the most relevant icons from the [Lucide open source icon pack](https://lucide.dev) to symbolize a concept or fit specific UI placements. I am skilled in symbolic interpretation and mental associations across culture, symbology, science, and design. Input Provide one or both: - Concept: The idea, action, or meaning to represent - Screenshot: UI context showing where icons are needed Process - Brainstorm associations Key ideas and visual metaphors related to the concept - Conte...
|
219 |
| 9408 | managing-astro-deployments | astronomer/agents |
No SKILL.md available for this skill. View on GitHub
|
219 |
| 9409 | gpui-event | longbridge/gpui-component |
Overview GPUI provides event system for component coordination: Event Mechanisms: Custom Events: Define and emit type-safe events Observations: React to entity state changes Subscriptions: Listen to events from other entities Global Events: App-wide event handling Quick Start Define and Emit Events [derive(Clone)] enum MyEvent { DataUpdated(String), ActionTriggered, } impl MyComponent { fn update_data(&mut self, data: String, cx: &mut Context<Self>) { self.data = data.clo...
|
219 |
| 9410 | xxe-xml-external-entity | yaklang/hack-skills |
SKILL: XML External Entity Injection (XXE) — Expert Attack Playbook AI LOAD INSTRUCTION : Expert XXE techniques. Covers all injection contexts (SOAP, REST JSON→XML parsers, Office files, SVG), OOB exfiltration (critical when direct read fails), blind XXE detection, and XXE-to-SSRF chain. Base models often miss OOB and non-XML context XXE. For real-world CVE chains, Office docx XXE step-by-step, PHP expect:// RCE, and Solr XXE+RCE, load the companion SCENARIOS.md . 0. RELATED ROUTING Also load: u...
|
219 |
| 9411 | cors-cross-origin-misconfiguration | yaklang/hack-skills |
SKILL: CORS Misconfiguration — Credentialed Origins, Reflection, and Trust Boundary Errors AI LOAD INSTRUCTION : Use this skill when browsers can access authenticated APIs cross-origin. Focus on reflected origins, credentialed requests, wildcard trust, parser mistakes, and origin allowlist bypasses. For JSONP hijacking deep dives, same-origin policy internals, honeypot de-anonymization, and CORS vs JSONP comparison, load the companion SCENARIOS.md . Extended Scenarios Also load SCENARIOS.md when...
|
219 |
| 9412 | path-traversal-lfi | yaklang/hack-skills |
SKILL: Path Traversal / Local File Inclusion (LFI) — Expert Attack Playbook AI LOAD INSTRUCTION : Expert path traversal and LFI techniques. Covers encoding bypass sequences, OS differences, filter bypass, PHP wrapper exploitation, log poisoning to RCE, and the critical distinction between path traversal (read only) vs LFI (execution). Base models miss encoding chains and RCE escalation paths. 0. RELATED ROUTING Before deep exploitation, you can first load: upload insecure files when the primary ...
|
219 |
| 9413 | gpd-release-flow | rudrankriyam/app-store-connect-cli-skills |
Release flow (Google Play) Use this skill when you need to upload a build, publish to a track, or manage rollout. Preconditions Ensure credentials are set ( GPD_SERVICE_ACCOUNT_KEY ). Use a new version code for each upload. Always pass --package explicitly. Preferred end-to-end commands Upload and release to a track gpd publish upload app.aab --package com.example.app gpd publish release --package com.example.app --track internal --status completed Promote between tracks gpd publish promote --pa...
|
218 |
| 9414 | nexus-query | haaaiawd/nexus-skills |
nexus-query — 代码结构精准查询 "改之前先算清楚——数字比猜测更有力。" 本 Skill 将 extract_ast.py 、 git_detective.py 、 query_graph.py 三个脚本 封装成一个 开发辅助工具 :按需生成数据、精确回答问题。 📌 和 nexus-mapper 的区别 维度 nexus-mapper nexus-query 目的 为 AI 建立项目持久记忆( .nexus-map/ ) 为开发者回答当下的具体问题 时机 项目初期,一次性全量探测 开发中,随时按需调用 输出 结构化知识库文档 精准文本答案(秒级出结果) 前提 需要运行完整 PROBE 五阶段 仅需 ast_nodes.json 存在即可 nexus-query 是 nexus-mapper 的轻量伴侣 :如果 .nexus-map/ 已存在,直接复用; 如果不存在,先运行 extract_ast.py 生成 ast_nodes.json,再开始查询。 📌 何时调用 场景 调用 「这个文件有哪些类/方法,依赖什么」 ✅ 「改这个接口/模块,哪些文件受影响」 ✅ 「这个改动的...
|
218 |
| 9415 | symfony:messenger-retry-failures | makfly/superpowers-symfony |
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:messenger-retry-failures<div
|
218 |
| 9416 | error-analysis | hamelsmu/evals-skills |
Error Analysis Guide the user through reading LLM pipeline traces and building a catalog of how the system fails. Overview Collect ~100 representative traces Read each trace, judge pass/fail, and note what went wrong Group similar failures into categories Label every trace against those categories Compute failure rates to prioritize what to fix Core Process Step 1: Collect Traces Capture the full trace: input, all intermediate LLM calls, tool uses, retrieved documents, reasoning steps, and final...
|
218 |
| 9417 | technical-design-doc-creator | tech-leads-club/agent-skills |
Technical Design Doc Creator You are an expert in creating Technical Design Documents (TDDs) that clearly communicate software architecture decisions, implementation plans, and risk assessments following industry best practices. When to Use This Skill Use this skill when: User asks to "create a TDD", "write a design doc", or "document technical design" User asks to "criar um TDD", "escrever um design doc", or "documentar design técnico" Starting a new feature or integration project Designing a s...
|
218 |
| 9418 | mcp-management | mrgoonie/claudekit-skills |
MCP Management Skill for managing and interacting with Model Context Protocol (MCP) servers. Overview MCP is an open protocol enabling AI agents to connect to external tools and data sources. This skill provides scripts and utilities to discover, analyze, and execute MCP capabilities from configured servers without polluting the main context window. Key Benefits: Progressive disclosure of MCP capabilities (load only what's needed) Intelligent tool/prompt/resource selection based on task req...
|
218 |
| 9419 | academic-writing-style | shining319/claude-code-single-person-workflow |
Academic Writing Style Transform provided information into well-written academic assignments that match the user's natural writing style, avoiding obvious AI patterns while maintaining professional quality. Core Approach Generate content that reads naturally and fluently, with: Clear chapter organization using descriptive headings Natural topic progression without rigid "firstly...secondly...finally" structures Moderate use of first-person perspective appropriate to assignment type Specific ...
|
218 |
| 9420 | dotnet | mindrally/skills |
.NET Development Guidelines You are an expert in .NET backend development with deep knowledge of C, ASP.NET Core, Entity Framework Core, and modern .NET practices. Code Style and Structure Write concise, idiomatic C code with accurate examples Follow .NET conventions and best practices Use object-oriented programming with proper encapsulation Prefer LINQ for collection operations Structure code according to Clean Architecture principles Project Structure src/ Domain/ Entities, val...
|
218 |
| 9421 | anthropic-claude-development | mindrally/skills |
Anthropic Claude API Development You are an expert in Anthropic Claude API development, including the Messages API, tool use, prompt engineering, and building production-ready applications with Claude models. Key Principles Write concise, technical responses with accurate Python examples Use type hints for all function signatures Follow Claude's usage policies and guidelines Implement proper error handling and retry logic Never hardcode API keys; use environment variables Setup and Configurati...
|
218 |
| 9422 | turbopack-bundler | mindrally/skills |
Turbopack Bundler You are an expert in Turbopack, the incremental bundler optimized for JavaScript and TypeScript, written in Rust and built into Next.js. Follow these guidelines when working with Turbopack. Core Principles Turbopack is designed for incremental computation and caching Function-level caching through the Turbo engine Native Rust performance for fast builds Built-in support for TypeScript and JSX Optimized for Next.js integration Abstracts away webpack configurations Project Stru...
|
218 |
| 9423 | responsive-design | mindrally/skills |
Responsive Design When to use this skill New website/app : Layout design for combined mobile-desktop use Legacy improvement : Converting fixed layouts to responsive Performance optimization : Image optimization per device Multiple screens : Tablet, desktop, and large screen support Instructions Step 1: Mobile-First Approach Design from small screens and progressively expand. Example : /* Default: Mobile (320px~) */ .container { padding : 1 rem ; font-size : 14 px ; } .grid { display : grid ; gri...
|
218 |
| 9424 | jax-best-practices | mindrally/skills |
JAX Best Practices You are an expert in JAX for high-performance numerical computing and machine learning. Core Principles Follow functional programming patterns Use immutability and pure functions Leverage JAX transformations effectively Optimize for JIT compilation Key Transformations jax.jit Use for just-in-time compilation to optimize performance Avoid side effects in jitted functions Use static_argnums for compile-time constants jax.vmap Vectorize operations over batch dimensions Avoid ex...
|
218 |
| 9425 | sql-best-practices | mindrally/skills |
SQL Best Practices Core Principles Write clear, readable SQL with consistent formatting and meaningful aliases Prioritize query performance through proper indexing and optimization Implement security best practices to prevent SQL injection Use transactions appropriately for data integrity Document complex queries with inline comments Query Writing Standards Formatting and Style Use uppercase for SQL keywords (SELECT, FROM, WHERE, JOIN) Place each major clause on a new line for readability Use me...
|
218 |
| 9426 | spring-boot | mindrally/skills |
Spring Boot You are an expert in Java programming, Spring Boot, Spring Framework, Maven, JUnit, and related Java technologies. Code Style and Structure Write clean, efficient, and well-documented Java code using Spring Boot conventions Follow RESTful API design patterns for web services Use descriptive method and variable names following camelCase convention Structure applications with consistent package organization (controllers, services, repositories, models, configurations) Spring Boot Speci...
|
218 |
| 9427 | logging-best-practices | mindrally/skills |
Logging Best Practices Skill Version: 1.0.0 Purpose This skill provides guidelines for implementing effective logging in applications. It focuses on wide events (also called canonical log lines) - a pattern where you emit a single, context-rich event per request per service, enabling powerful debugging and analytics. When to Apply Apply these guidelines when: Writing or reviewing logging code Adding console.log, logger.info, or similar Designing logging strategy for new services Setting up...
|
218 |
| 9428 | cpp | mindrally/skills |
C++ Development Guidelines You are an expert in modern C++ development with deep knowledge of C++17/20 standards, memory management, and high-performance programming. Code Style and Structure Write clean, modern C++ code following C++17/20 standards Use meaningful variable and function names Follow the Single Responsibility Principle Prefer composition over inheritance Keep functions small and focused Naming Conventions Use PascalCase for classes and structs Use camelCase for functions, variab...
|
218 |
| 9429 | speech-adaptation | jwynia/agent-skills |
Speech Adaptation Purpose Transform comprehensive written content into purposeful spoken guidance. Speech requires 3-5x compression while maintaining functional value. Apply when converting written content to audio, podcasts, presentations, or voice assistant responses. Core Principle Lead with value, earn attention. Listeners can't skim. Front-load what matters and offer expansion rather than exhaustive delivery. Functional Intent Detection Parse the original question/content for intent: ...
|
218 |
| 9430 | adaptation-synthesis | jwynia/agent-skills |
Adaptation Synthesis: Function-First Creative Translation You help synthesize new works from extracted functional DNA documents. Your role is to map extracted functions to new forms that serve those functions in a different context—without falling into surface-level translation traps. Core Principle Successful adaptation serves the original functions through new forms. Failed adaptation copies surface elements while losing what made them work. The orthogonality principle from cliche-transcen...
|
218 |
| 9431 | autoship | vercel-labs/autoship |
Automated Releases with autoship Core Workflow Every release follows this pattern: Configure : autoship add <name> (one-time setup) Release : autoship <name> (interactive) or autoship <name> -t patch -y (automated) The tool handles the complete release cycle: Clone repository Analyze changes and suggest release type (patch/minor/major) Generate AI-powered changeset description Create and merge changeset PR Wait for and merge Version Packages PR Trigger npm publish Requirements Before using autos...
|
218 |
| 9432 | gh-pages-deploy | aviz85/claude-skills-library |
GitHub Pages Deployment Deploy static frontend websites to GitHub Pages using the GitHub CLI. Prerequisites GitHub CLI (gh) installed and authenticated Git installed A frontend project (HTML, CSS, JS) ready to deploy Deployment Workflow 1. Initialize Git Repository (if needed) git init git add . git commit -m "Initial commit" 2. Create GitHub Repository Create public repo (required for free GitHub Pages) gh repo create <repo-name> --public --source=. --push 3. Enable GitHub Pages Enable Gi...
|
218 |
| 9433 | qiskit | davila7/claude-code-templates |
Qiskit Overview Qiskit is the world's most popular open-source quantum computing framework with 13M+ downloads. Build quantum circuits, optimize for hardware, execute on simulators or real quantum computers, and analyze results. Supports IBM Quantum (100+ qubit systems), IonQ, Amazon Braket, and other providers. Key Features: 83x faster transpilation than competitors 29% fewer two-qubit gates in optimized circuits Backend-agnostic execution (local simulators or cloud hardware) Comprehensive a...
|
218 |
| 9434 | pydeseq2 | davila7/claude-code-templates |
PyDESeq2 Overview PyDESeq2 is a Python implementation of DESeq2 for differential expression analysis with bulk RNA-seq data. Design and execute complete workflows from data loading through result interpretation, including single-factor and multi-factor designs, Wald tests with multiple testing correction, optional apeGLM shrinkage, and integration with pandas and AnnData. When to Use This Skill This skill should be used when: Analyzing bulk RNA-seq count data for differential expression Comp...
|
218 |
| 9435 | lamindb | davila7/claude-code-templates |
LaminDB Overview LaminDB is an open-source data framework for biology designed to make data queryable, traceable, reproducible, and FAIR (Findable, Accessible, Interoperable, Reusable). It provides a unified platform that combines lakehouse architecture, lineage tracking, feature stores, biological ontologies, LIMS (Laboratory Information Management System), and ELN (Electronic Lab Notebook) capabilities through a single Python API. Core Value Proposition: Queryability: Search and filter data...
|
218 |
| 9436 | hmdb-database | davila7/claude-code-templates |
HMDB Database Overview The Human Metabolome Database (HMDB) is a comprehensive, freely available resource containing detailed information about small molecule metabolites found in the human body. When to Use This Skill This skill should be used when performing metabolomics research, clinical chemistry, biomarker discovery, or metabolite identification tasks. Database Contents HMDB version 5.0 (current as of 2025) contains: 220,945 metabolite entries covering both water-soluble and lipid-so...
|
218 |
| 9437 | string-database | davila7/claude-code-templates |
STRING Database Overview STRING is a comprehensive database of known and predicted protein-protein interactions covering 59M proteins and 20B+ interactions across 5000+ organisms. Query interaction networks, perform functional enrichment, discover partners via REST API for systems biology and pathway analysis. When to Use This Skill This skill should be used when: Retrieving protein-protein interaction networks for single or multiple proteins Performing functional enrichment analysis (GO, KE...
|
218 |
| 9438 | nosql-expert | davila7/claude-code-templates |
NoSQL Expert Patterns (Cassandra & DynamoDB) Overview This skill provides professional mental models and design patterns for distributed wide-column and key-value stores (specifically Apache Cassandra and Amazon DynamoDB). Unlike SQL (where you model data entities), or document stores (like MongoDB), these distributed systems require you to model your queries first. When to Use Designing for Scale: Moving beyond simple single-node databases to distributed clusters. Technology Selection: Evalu...
|
218 |
| 9439 | internal-comms | davila7/claude-code-templates |
When to use this skill To write internal communications, use this skill for: 3P updates (Progress, Plans, Problems) Company newsletters FAQ responses Status reports Leadership updates Project updates Incident reports How to use this skill To write any internal communication: Identify the communication type from the request Load the appropriate guideline file from the examples/ directory: examples/3p-updates.md - For Progress/Plans/Problems team updates examples/company-newsletter.md - For compan...
|
218 |
| 9440 | linux production shell scripts | davila7/claude-code-templates |
Linux Production Shell Scripts Purpose Provide production-ready shell script templates for common Linux system administration tasks including backups, monitoring, user management, log analysis, and automation. These scripts serve as building blocks for security operations and penetration testing environments. Prerequisites Required Environment Linux/Unix system (bash shell) Appropriate permissions for tasks Required utilities installed (rsync, openssl, etc.) Required Knowledge Basic bash scripti...
|
218 |
| 9441 | git-pr-workflows-onboard | sickn33/antigravity-awesome-skills |
Onboard You are an expert onboarding specialist and knowledge transfer architect with deep experience in remote-first organizations, technical team integration, and accelerated learning methodologies. Your role is to ensure smooth, comprehensive onboarding that transforms new team members into productive contributors while preserving institutional knowledge. Use this skill when Working on onboard tasks or workflows Needing guidance, best practices, or checklists for onboard Do not use this skill...
|
218 |
| 9442 | tdd-workflows-tdd-red | sickn33/antigravity-awesome-skills |
Write comprehensive failing tests following TDD red phase principles. [Extended thinking: Generates failing tests that properly define expected behavior using test-automator agent.] Use this skill when Starting the TDD red phase for new behavior You need failing tests that capture expected behavior You want edge case coverage before implementation Do not use this skill when You are in the green or refactor phase You only need performance benchmarks Tests must run against production systems Instr...
|
218 |
| 9443 | performance-testing-review-ai-review | sickn33/antigravity-awesome-skills |
AI-Powered Code Review Specialist You are an expert AI-powered code review specialist combining automated static analysis, intelligent pattern recognition, and modern DevOps practices. Leverage AI tools (GitHub Copilot, Qodo, GPT-5, Claude 4.5 Sonnet) with battle-tested platforms (SonarQube, CodeQL, Semgrep) to identify bugs, vulnerabilities, and performance issues. Use this skill when Working on ai-powered code review specialist tasks or workflows Needing guidance, best practices, or checklists...
|
218 |
| 9444 | cloud-penetration-testing | sickn33/antigravity-awesome-skills |
Cloud Penetration Testing Purpose Conduct comprehensive security assessments of cloud infrastructure across Microsoft Azure, Amazon Web Services (AWS), and Google Cloud Platform (GCP). This skill covers reconnaissance, authentication testing, resource enumeration, privilege escalation, data extraction, and persistence techniques for authorized cloud security engagements. Prerequisites Required Tools Azure tools Install-Module -Name Az -AllowClobber -Force Install-Module -Name MSOnline -Force In...
|
218 |
| 9445 | indicator-expert | marketcalls/openalgo-indicator-skills |
OpenAlgo Indicator Expert Skill Environment Python with openalgo, pandas, numpy, plotly, dash, streamlit, numba Data sources: OpenAlgo (Indian markets via client.history() , client.quotes() , client.depth() ), yfinance (US/Global) Real-time: OpenAlgo WebSocket ( client.connect() , subscribe_ltp , subscribe_quote , subscribe_depth ) Indicators: openalgo.ta (ALWAYS — 100+ Numba-optimized indicators) Charts: Plotly with template="plotly_dark" Dashboards: Plotly Dash with dash-bootstrap-components O...
|
218 |
| 9446 | supabase-automation | sickn33/antigravity-awesome-skills |
Supabase Automation via Rube MCP Automate Supabase operations including database queries, table schema inspection, SQL execution, project and organization management, storage buckets, edge functions, and service health monitoring through Composio's Supabase toolkit. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Supabase connection via RUBE_MANAGE_CONNECTIONS with toolkit supabase Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : ...
|
218 |
| 9447 | study-habits | jackjin1997/clawforge |
Study Habits Learning that sticks—through science, not stubbornness. What it does This skill transforms how you absorb and retain information by combining proven cognitive techniques with persistent session tracking: Study Session Tracking - Logs when you study, what topic, duration, and effectiveness rating for accountability and pattern recognition Technique Suggestions - Recommends study methods based on your learning goal (memorization vs. deep understanding vs. skill practice) Spaced Repeti...
|
218 |
| 9448 | ccg | yeachan-heo/oh-my-claudecode |
CCG - Claude-Codex-Gemini Tri-Model Orchestration CCG routes through the canonical /ask skill ( /ask codex + /ask gemini ), then Claude synthesizes both outputs into one answer. Use this when you want parallel external perspectives without launching tmux team workers. When to Use Backend/analysis + frontend/UI work in one request Code review from multiple perspectives (architecture + design/UX) Cross-validation where Codex and Gemini may disagree Fast advisor-style parallel input without team ru...
|
218 |
| 9449 | repomix-safe-mixer | daymade/claude-code-skills |
Repomix Safe Mixer Overview Safely package codebases with repomix by automatically detecting and removing hardcoded credentials. This skill prevents accidental credential exposure when packaging code with repomix. It scans for hardcoded secrets (API keys, database credentials, tokens), reports findings, and ensures safe packaging. When to use: When packaging code with repomix for distribution, creating shareable reference packages, or whenever security concerns exist about hardcoded credentia...
|
218 |
| 9450 | ftd-detector | tradermonty/claude-trading-skills |
FTD Detector Skill Purpose Detect Follow-Through Day (FTD) signals that confirm a market bottom, using William O'Neil's proven methodology. Generates a quality score (0-100) with exposure guidance for re-entering the market after corrections. Complementary to Market Top Detector: Market Top Detector = defensive (detects distribution, rotation, deterioration) FTD Detector = offensive (detects rally attempts, bottom confirmation) When to Use This Skill English: User asks "Is the market bottoming?"...
|
218 |