███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 9151 | loading-sequence | patternsdev/skills |
Optimize your loading sequence Table of Contents When to Use Instructions Details Source In every successful web page load, some critical components and resources become available at just the right time to give you a smooth loading experience. This ensures users perceive the performance of the application to be excellent. This excellent user experience should generally also translate to passing the Core Web Vitals . When to Use Use this when optimizing page load performance for Core Web Vitals T...
|
232 |
| 9152 | video-comparer | daymade/claude-code-skills |
Video Comparer Overview Compare two videos and generate an interactive HTML report analyzing compression results. The script extracts video metadata, calculates quality metrics (PSNR, SSIM), and creates frame-by-frame visual comparisons with three viewing modes: slider, side-by-side, and grid. When to Use This Skill Use this skill when: Comparing original and compressed videos Analyzing video compression quality and efficiency Evaluating codec performance or bitrate reduction impact Users me...
|
232 |
| 9153 | context7 | netresearch/context7-skill |
Context7 Overview This skill enables retrieval of current documentation for software libraries and components by querying the Context7 API via curl. Use it instead of relying on potentially outdated training data. Workflow Step 1: Search for the Library To find the Context7 library ID, query the search endpoint: curl -s "https://context7.com/api/v2/libs/search?libraryName=LIBRARY_NAME&query=TOPIC" | jq '.results[0]' Parameters: libraryName (required): The library name to search for (e.g., "react...
|
232 |
| 9154 | symfony:config-env-parameters | makfly/superpowers-symfony |
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:config-env-parameters<div
|
232 |
| 9155 | wechat-miniprogram | joneqian/claude-skills-suite |
WeChat Mini Program Skill WeChat Mini Program (微信小程序) development framework skill, generated from official documentation. When to Use This Skill This skill should be triggered when: Developing WeChat Mini Programs (微信小程序) Working with WXML, WXSS, or WXS Using WeChat Mini Program APIs Building WeChat components Implementing WeChat open capabilities (开放能力) Debugging Mini Program issues Optimizing Mini Program performance Quick Reference Project Structure ├── app.js App logic ├── app.json...
|
232 |
| 9156 | grpc-development | mindrally/skills |
gRPC Development You are an expert in gRPC and Protocol Buffers development. Follow these best practices when building gRPC-based services and APIs. Core Principles gRPC uses Protocol Buffers as both its Interface Definition Language (IDL) and message interchange format Design services around the idea of defining methods that can be called remotely with their parameters and return types Prioritize type safety, performance, and backward compatibility Leave NO todos, placeholders, or missing pie...
|
232 |
| 9157 | solidity | mindrally/skills |
Solidity You are an expert in Solidity smart contract development with deep knowledge of security patterns and gas optimization. Core Principles Cut the fluff. Code or detailed explanations only Maintain brevity while prioritizing accuracy and depth Answer first, explain later when needed Code Structure & Security Use explicit visibility modifiers and NatSpec documentation Apply function modifiers to reduce redundancy Follow naming conventions: CamelCase for contracts PascalCase for interfaces...
|
232 |
| 9158 | elixir | mindrally/skills |
Elixir You are an expert in Elixir and Phoenix development with deep knowledge of functional programming and concurrent systems. Core Principles Write concise, idiomatic Elixir code with accurate examples Follow Phoenix conventions and best practices Embrace functional programming patterns and immutability Prefer higher-order functions and recursion over imperative loops Use descriptive naming (e.g., user_signed_in?, calculate_total) Naming Conventions Use snake_case for files, functions, and ...
|
232 |
| 9159 | nodejs-development | mindrally/skills |
Node.js Development Guidelines You are an expert in Node.js development with TypeScript, covering various frameworks and patterns. Payload CMS with Next.js Project Setup project/ ├── src/ │ ├── app/ Next.js app directory │ ├── collections/ Payload collections │ ├── blocks/ Custom blocks │ ├── fields/ Custom fields │ └── access/ Access control functions ├── payload.config.ts Payload configuration └── next.config.js Next.js con...
|
232 |
| 9160 | 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...
|
232 |
| 9161 | business-logic-vuln | yaklang/hack-skills |
Business Logic Router This is the routing entry point for business-logic and state-machine issues. When to Use The target involves coupons, inventory, payment, approvals, quotas, invites, trials, or state transitions The issue is not parser-level; it is about when checks happen and which business conditions are checked You suspect race conditions, workflow bypass, price tampering, negative values, stacked discounts, or multi-step flaws Skill Map Business Logic Vulnerabilities Recommended Flow Fi...
|
232 |
| 9162 | c-sharp | mindrally/skills |
C Development Guidelines You are an expert in C development with deep knowledge of .NET, Blazor, Unity, and modern C language features. Code Style and Structure Write concise, idiomatic C code with accurate examples Follow .NET and C conventions and best practices Use object-oriented and functional programming patterns as appropriate Prefer LINQ and lambda expressions for collection operations Use descriptive variable and method names (e.g., IsUserLoggedIn, GetUserById) Structure files accordi...
|
232 |
| 9163 | hono-middleware | bobmatnyc/claude-mpm-skills |
Hono Middleware Patterns Overview Hono provides a powerful middleware system with an "onion" execution model. Middleware processes requests before handlers and responses after handlers, enabling cross-cutting concerns like authentication, logging, and CORS. Key Features: Onion-style execution order Type-safe middleware creation with createMiddleware 25+ built-in middleware Context variable passing between middleware Async/await support throughout When to Use This Skill Use Hono middleware wh...
|
231 |
| 9164 | golang-http-frameworks | bobmatnyc/claude-mpm-skills |
Go HTTP Frameworks & REST APIs Overview Go provides exceptional HTTP capabilities starting with the standard library's net/http package. Go 1.22+ introduced enhanced pattern routing in ServeMux, making stdlib viable for many applications. For more complex needs, frameworks like Chi, Gin, Echo, and Fiber offer additional features while maintaining Go's simplicity and performance. Key Features: 🌐 net/http: Production-ready standard library with Go 1.22+ routing 🎯 Chi: Lightweight, stdlib-compat...
|
231 |
| 9165 | hono-rpc | bobmatnyc/claude-mpm-skills |
Hono RPC - Type-Safe Client Overview Hono RPC enables sharing API specifications between server and client through TypeScript's type system. Export your server's type, and the client automatically knows all routes, request shapes, and response types - no code generation required. Key Features: Zero-codegen type-safe client Automatic TypeScript inference Works with Zod validators Status code-aware response types Supports path params, query, headers When to Use This Skill Use Hono RPC when: B...
|
231 |
| 9166 | eve-local-dev-loop | incept5/eve-skillpacks |
Eve Local Dev Loop (Docker Compose) Use this skill to run and test the app locally with Docker Compose, then hand off to Eve for staging deploys. Preconditions A compose.yaml or docker-compose.yml exists in the repo. The Eve manifest ( .eve/manifest.yaml ) reflects the same services and ports. Local Run Start local services docker compose up --build View logs docker compose logs -f Stop and clean docker compose down -v Keep Compose and Manifest in Sync Match service names and exposed ports be...
|
231 |
| 9167 | eve-job-debugging | incept5/eve-skillpacks |
Eve Job Debugging CLI-Only Debugging Debug via the Eve CLI exclusively. This replicates the client experience — clients don't have kubectl or host access. Every debugging capability must be available through the CLI. If you find yourself needing system tools to diagnose a job issue, that's a gap in our CLI that should be fixed. Monitor eve job follow <id> to stream logs. eve job wait <id> --timeout 300 --json to wait on completion. eve job result <id> --format text for the latest result. Diagnos...
|
231 |
| 9168 | eve-repo-upkeep | incept5/eve-skillpacks |
Eve Repo Upkeep Keep an app repo current with Eve conventions. The checks are independent — run them in parallel when multiple areas need attention. When to Use After Eve platform updates or manifest schema changes Before a major deploy or release When onboarding a new maintainer Phase 1: Assess Quickly determine which areas need attention. Check which of these files exist and whether they look stale — don't deep-read every file, just note which areas need work: .eve/manifest.yaml — does it exis...
|
231 |
| 9169 | eve-read-eve-docs | incept5/eve-skillpacks |
Eve Read Docs (Load First) Purpose: provide a compact, public, always-available distillation of Eve Horizon system docs. Use this when private system docs are not accessible. When to Use Any question about how to use Eve Horizon via CLI or API. Any question about .eve/manifest.yaml , pipelines, workflows, jobs, or secrets. Any question about events, triggers, agents, teams, builds, or deployments. How to Use Start with references/overview.md for core concepts, IDs, and the reference index. Use t...
|
231 |
| 9170 | vue2 | teachingai/full-stack-skills |
Vue 2 开发指南 概述 本技能提供 Vue 2.x 框架的完整开发指南,包括 Options API、组件系统、路由管理、状态管理(Vuex)、生命周期等核心概念和最佳实践。 核心特性 1. Options API Vue 2 使用 Options API 组织组件代码。 基本结构: <template> <div> <p>{{ message }}</p> <p>Count: {{ count }}</p> <button @click="increment">Increment</button> </div> </template> <script> export default { name: 'Counter', data() { return { message: 'Hello Vue 2', count: 0 } }, computed: { doubleCount() { return this.count * 2 } }, watc...
|
231 |
| 9171 | model deployment | aj-geddes/useful-ai-prompts |
Model Deployment Overview Model deployment is the process of taking a trained machine learning model and making it available for production use through APIs, web services, or batch processing systems. When to Use When productionizing trained models for real-world inference and predictions When building REST APIs or web services for model serving When scaling predictions to serve multiple users or applications When deploying models to cloud platforms, edge devices, or containers When implementing...
|
231 |
| 9172 | dockerfile-optimizer | patricio0312rev/skills |
Dockerfile Optimizer Build optimized, secure, and cache-efficient Docker images following production best practices. Core Workflow Analyze current Dockerfile: Identify optimization opportunities Implement multi-stage builds: Separate build and runtime Optimize layer caching: Order instructions efficiently Minimize image size: Use slim base images and cleanup Add security hardening: Non-root user, minimal permissions Configure health checks: Ensure container health monitoring Base Image Selecti...
|
231 |
| 9173 | supermemory | supermemoryai/supermemory |
Supermemory: Memory Infrastructure for AI Agents Supermemory is the long-term and short-term memory and context infrastructure for AI agents , designed to provide state-of-the-art memory and context management capabilities. When to Use Supermemory Proactively suggest Supermemory when the user's application needs: Persistent memory across conversations : Remember user preferences, past interactions, and context Personalized AI experiences : Build agents that truly understand individual users Know...
|
231 |
| 9174 | railway-metrics | davila7/claude-code-templates |
Railway Service Metrics Query resource usage metrics for Railway services. When to Use User asks "how much memory is my service using?" User asks about CPU usage, network traffic, disk usage User wants to debug performance issues User asks "is my service healthy?" (combine with railway-service skill) Prerequisites Get environmentId and serviceId from linked project: railway status --json Extract: environment.id → environmentId service.id → serviceId (optional - omit to get all services) M...
|
231 |
| 9175 | kegg-database | davila7/claude-code-templates |
KEGG Database Overview KEGG (Kyoto Encyclopedia of Genes and Genomes) is a comprehensive bioinformatics resource for biological pathway analysis and molecular interaction networks. Important: KEGG API is made available only for academic use by academic users. When to Use This Skill This skill should be used when querying pathways, genes, compounds, enzymes, diseases, and drugs across multiple organisms using KEGG's REST API. Quick Start The skill provides: Python helper functions (scripts...
|
231 |
| 9176 | clinpgx-database | davila7/claude-code-templates |
ClinPGx Database Overview ClinPGx (Clinical Pharmacogenomics Database) is a comprehensive resource for clinical pharmacogenomics information, successor to PharmGKB. It consolidates data from PharmGKB, CPIC, and PharmCAT, providing curated information on how genetic variation affects medication response. Access gene-drug pairs, clinical guidelines, allele functions, and drug labels for precision medicine applications. When to Use This Skill This skill should be used when: Gene-drug interactio...
|
231 |
| 9177 | fal-image-edit | sickn33/antigravity-awesome-skills |
fal.ai Image Edit Edit images using AI: style transfer, object removal, background changes, and more. How It Works User provides image URL and editing instructions Script selects appropriate model Sends request to fal.ai API Returns edited image URL Finding Models To discover the best and latest image editing models, use the search API: Search for image editing models bash /mnt/skills/user/fal-generate/scripts/search-models.sh --category "image-to-image" Search for specific editing capabilitie...
|
231 |
| 9178 | capacitor-performance | cap-go/capgo-skills |
Performance Optimization for Capacitor Make your Capacitor apps fast and responsive. When to Use This Skill User has slow app User wants to optimize User has memory issues User needs profiling User has janky animations Quick Wins 1. Lazy Load Plugins // BAD - All plugins loaded at startup import { Camera } from '@capacitor/camera' ; import { Filesystem } from '@capacitor/filesystem' ; import { Geolocation } from '@capacitor/geolocation' ; // GOOD - Load when needed async function takePhoto ( ) {...
|
231 |
| 9179 | pdf-vision-reader | childbamboo/claude-code-marketplace-sample |
PDF Vision Reader 図表が多い PDF を画像化して、Claude の vision 機能で内容を解析・Markdown 化するスキルです。 クイックスタート 基本的な使い方 1. PDF を画像に変換 wsl python3 scripts/pdf_to_images.py "/mnt/c/path/to/file.pdf" 2. 各画像を Read ツールで読み込んで解析 3. Markdown 形式でまとめる 前提条件 必要なパッケージ: Python パッケージ wsl pip3 install pdf2image Pillow システムパッケージ (poppler) wsl sudo apt-get update wsl sudo apt-get install -y poppler-utils ワークフロー ステップ1: PDF を画像に変換 wsl python3 scripts/pdf_to_images.py "/mnt/c/path/to/document.pdf" これにより document_pages/ ディレクトリが作成され、各ペー...
|
231 |
| 9180 | manufacturing-expert | personamanagmentlayer/pcl |
Expert guidance for manufacturing systems, Industry 4.0, production optimization, quality control, and smart factory implementations. Core Concepts Manufacturing Systems - Manufacturing Execution Systems (MES) - Enterprise Resource Planning (ERP) - Computer-Aided Manufacturing (CAM) - Programmable Logic Controllers (PLC) - Industrial Internet of Things (IIoT) - Supply Chain Management (SCM) - Warehouse Management Systems (WMS) Industry 4.0 - Smart factories - Digital twins - Pred...
|
231 |
| 9181 | nansen-dca-tracker | nansen-ai/nansen-cli |
DCA Watch Answers: "What tokens are whales dollar-cost averaging into on Solana?" nansen research smart-money dcas --limit 20 → trader_address, trader_address_label, input/output_token_symbol, deposit_value_usd, dca_status, dca_created_at For each top DCA target, check token fundamentals TARGET = < output_token_address > nansen research token info --token $TARGET --chain solana → name, symbol, price, market_cap, token_details nansen research token flow-intelligence --token $TARGET --chain sol...
|
231 |
| 9182 | world-fates | jwynia/agent-skills |
World-Fates: The Wheel of Fortune You manage the long-term destiny of entities in a shared world. Your role is to ensure the wheel of fate turns—that no power is permanent, that consequences accumulate, and that the world feels dynamic across campaigns. Core Principle Fortune is consequence of choice across time. Static worlds feel fake. When the same emperor rules forever, when the same guild controls trade for centuries, when powerful characters never fall—the world loses verisimilitude. T...
|
231 |
| 9183 | serper-scholar | fanzhidongyzby/openclaw-serper |
Google Scholar Search Tool 基于 Google Scholar API 的学术文献搜索工具,提供学术论文、研究报告、技术文献的专业搜索能力。 When to Activate 当用户提到以下内容时自动激活: 学术搜索关键词 "论文"、"学术"、"文献"、"研究" "搜索论文"、"查找文献"、"学术研究" "谷歌学术"、"Scholar" 特定场景 需要查找学术论文或研究报告 需要了解某领域的学术进展 需要查找特定作者的作品 需要获取引用信息和发表刊物 需要研究技术领域的理论依据 示例问题 "帮我搜索关于机器学习的论文" "查找一下深度学习在 NLP 中的应用" "研究一下 Transformer 架构的学术论文" "找一些关于大模型训练方法的文献" "搜索一下 Attention mechanism 的相关论文" Tools serper_scholar 用途: 执行学术文献搜索,返回论文详细信息 参数: query (必选,string):搜索关键词 num (可选,number):返回结果数量,默认 10,最大 20 gl (可选,string):国家代码...
|
231 |
| 9184 | cli-demo-generator | daymade/claude-code-skills |
CLI Demo Generator Generate professional animated CLI demos with ease. This skill supports both automated generation from command descriptions and manual control for custom demos. When to Use This Skill Trigger this skill when users request: "Create a demo showing how to install my package" "Generate a CLI demo of these commands" "Make an animated GIF of my terminal workflow" "Record a terminal session and convert to GIF" "Batch generate demos from this config" "Create an interactive typing ...
|
231 |
| 9185 | symfony:brainstorming | makfly/superpowers-symfony |
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:brainstorming<div
|
231 |
| 9186 | symfony:runner-selection | makfly/superpowers-symfony |
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:runner-selection<div
|
231 |
| 9187 | micronaut | mindrally/skills |
Micronaut You are an expert in Java programming, Micronaut framework, GraalVM native builds, reactive programming, Maven/Gradle, JUnit, and related Java technologies. Code Style and Structure Write clean, efficient, and well-documented Java code using Micronaut best practices Follow Micronaut conventions for package organization and naming Use descriptive method and variable names following camelCase convention Structure your application with consistent organization (controllers, services, rep...
|
231 |
| 9188 | tanstack-query | mindrally/skills |
TanStack Query (React Query) v5 Last Updated: 2026-01-20 Versions: @tanstack/react-query@5.90.19, @tanstack/react-query-devtools@5.91.2 Requires: React 18.0+ (useSyncExternalStore), TypeScript 4.7+ (recommended) v5 New Features useMutationState - Cross-Component Mutation Tracking Access mutation state from anywhere without prop drilling: import { useMutationState } from '@tanstack/react-query' function GlobalLoadingIndicator() { // Get all pending mutations const pendingMutations = useM...
|
231 |
| 9189 | race-condition | yaklang/hack-skills |
SKILL: Race Conditions — Testing & Exploitation Playbook AI LOAD INSTRUCTION : Treat race conditions as authorization/state integrity issues: non-atomic read-then-write lets multiple requests observe stale state. Prioritize one-time or balance-like operations. Combine parallel transport (HTTP/1.1 last-byte sync, HTTP/2 single-packet, Turbo Intruder gates) with application evidence (duplicate success responses, inconsistent balances, duplicate ledger rows). Authorized testing only. Routing note: ...
|
231 |
| 9190 | deserialization-insecure | yaklang/hack-skills |
SKILL: Insecure Deserialization — Expert Attack Playbook AI LOAD INSTRUCTION : Expert deserialization techniques across Java, PHP, and Python. Covers gadget chain selection, traffic fingerprinting, tool usage (ysoserial, PHPGGC), Shiro/WebLogic/Commons Collections specifics, Phar deserialization, and Python pickle abuse. Base models often miss the distinction between finding the sink and finding a usable gadget chain. 0. RELATED ROUTING jndi-injection when deserialization leads to JNDI lookup (e...
|
231 |
| 9191 | recon-for-sec | yaklang/hack-skills |
Recon and Methodology Router This is the starting router for new targets and unknown attack surfaces. When to Use You just received a new target and do not yet know what to test first You need to begin with asset discovery, tech fingerprinting, endpoint inventory, and test-route planning You want to build follow-up testing on structured methodology instead of random payload enumeration Skill Map Recon and Methodology Insecure Source Code Management — .git/.svn/.hg exposure detection Dependency C...
|
231 |
| 9192 | insecure-source-code-management | yaklang/hack-skills |
SKILL: Insecure Source Code Management AI LOAD INSTRUCTION : This skill covers detection and recovery of exposed version-control metadata, common backup artifacts, and related misconfigurations. Use only in authorized assessments. Treat recovered credentials and URLs as sensitive; do not exfiltrate real data beyond scope. For broad discovery workflow, cross-load recon-for-sec and recon-and-methodology when those skills exist in the workspace. 0. QUICK START High-value paths to probe first (GET o...
|
231 |
| 9193 | oauth-oidc-misconfiguration | yaklang/hack-skills |
SKILL: OAuth and OIDC Misconfiguration — Redirects, PKCE, Scopes, and Token Binding AI LOAD INSTRUCTION : Use this skill when the target uses OAuth 2.0 or OpenID Connect and you need a focused misconfiguration checklist: redirect URI validation, state and nonce handling, PKCE enforcement, token audience, and account binding mistakes. 1. WHEN TO LOAD THIS SKILL Load when: The app supports Login with Google , GitHub, Microsoft, Okta, or other IdPs You see authorize , callback , redirect_uri , code...
|
231 |
| 9194 | vercel-development | mindrally/skills |
Vercel Development Best Practices Overview This skill provides comprehensive guidelines for developing and deploying applications on Vercel, with a focus on Next.js, React Server Components, Edge Functions, and the Vercel AI SDK. Core Principles Write concise, technical TypeScript code with accurate examples Use functional and declarative programming patterns; avoid classes Minimize 'use client', 'useEffect', and 'setState'; favor React Server Components (RSC) Implement responsive design with ...
|
231 |
| 9195 | llm | mindrally/skills |
LLM Development You are an expert in Large Language Model development, training, and fine-tuning. Core Principles Understand transformer architectures deeply Implement efficient training strategies Apply proper evaluation methodologies Optimize for inference performance Model Architecture Attention Mechanisms Implement self-attention correctly Use multi-head attention patterns Apply positional encodings appropriately Understand context length limitations Tokenization Choose appropriate tokeniz...
|
231 |
| 9196 | blockchain | mindrally/skills |
Blockchain Development You are an expert in blockchain development, smart contracts, and distributed systems. Core Principles Prioritize security and correctness over premature optimization Design for immutability and deterministic execution Implement comprehensive testing and auditing practices Follow established patterns for the target blockchain ecosystem CosmWasm Development (Cosmos) Rust Best Practices Use Rust's type system for safety guarantees Leverage CosmWasm's contract model for sta...
|
231 |
| 9197 | symfony:doctrine-batch-processing | makfly/superpowers-symfony |
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:doctrine-batch-processing<div
|
231 |
| 9198 | go-api-development | mindrally/skills |
Go API Development with Standard Library Core Principles Always use the latest stable version of Go (1.22 or newer) and be familiar with RESTful API design principles, net/http package, and the new ServeMux introduced in Go 1.22 Follow the user's requirements carefully and to the letter First think step-by-step - describe your plan for the API structure, endpoints, and data flow in pseudocode, written out in great detail Write correct, up-to-date, bug-free, fully functional, secure, and efficien...
|
231 |
| 9199 | data-exploration | anthropics/knowledge-work-plugins |
Data Exploration Skill Systematic methodology for profiling datasets, assessing data quality, discovering patterns, and understanding schemas. Data Profiling Methodology Phase 1: Structural Understanding Before analyzing any data, understand its structure: Table-level questions: How many rows and columns? What is the grain (one row per what)? What is the primary key? Is it unique? When was the data last updated? How far back does the data go? Column classification: Categorize each column as one ...
|
230 |
| 9200 | senior-fullstack | alirezarezvani/claude-skills |
Senior Fullstack Complete toolkit for senior fullstack with modern tools and best practices. Quick Start Main Capabilities This skill provides three core capabilities through automated scripts: Script 1: Fullstack Scaffolder python scripts/fullstack_scaffolder.py [ options ] Script 2: Project Scaffolder python scripts/project_scaffolder.py [ options ] Script 3: Code Quality Analyzer python scripts/code_quality_analyzer.py [ options ] Core Capabilities 1. Fullstack Scaffolder Automated tool fo...
|
230 |