jeremylongshore/claude-code-plugins-plus-skills
clustering-algorithm-runner
plugins/ai-ml/clustering-algorithm-runner/skills/running-clustering-algorithms/SKILL.md
January 22, 2026
Select agents to install to:
npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/blob/main/plugins/ai-ml/clustering-algorithm-runner/skills/running-clustering-algorithms/SKILL.md -a claude-code --skill running-clustering-algorithmsInstallation paths:
.claude/skills/running-clustering-algorithms/# Clustering Algorithm Runner This skill provides automated assistance for clustering algorithm runner tasks. ## Overview This skill empowers Claude to perform clustering analysis on provided datasets. It allows for automated execution of various clustering algorithms, providing insights into data groupings and structures. ## How It Works 1. **Analyzing the Context**: Claude analyzes the user's request to determine the dataset, desired clustering algorithm (if specified), and any specific requirements. 2. **Generating Code**: Claude generates Python code using appropriate ML libraries (e.g., scikit-learn) to perform the clustering task, including data loading, preprocessing, algorithm execution, and result visualization. 3. **Executing Clustering**: The generated code is executed, and the clustering algorithm is applied to the dataset. 4. **Providing Results**: Claude presents the results, including cluster assignments, performance metrics (e.g., silhouette score, Davies-Bouldin index), and visualizations (e.g., scatter plots with cluster labels). ## When to Use This Skill This skill activates when you need to: - Identify distinct groups within a dataset. - Perform a cluster analysis to understand data structure. - Run K-means, DBSCAN, or hierarchical clustering on a given dataset. ## Examples ### Example 1: Customer Segmentation User request: "Run clustering on this customer data to identify customer segments. The data is in customer_data.csv." The skill will: 1. Load the customer_data.csv dataset. 2. Perform K-means clustering to identify distinct customer segments based on their attributes. 3. Provide a visualization of the customer segments and their characteristics. ### Example 2: Anomaly Detection User request: "Perform DBSCAN clustering on this network traffic data to identify anomalies. The data is available at network_traffic.txt." The skill will: 1. Load the network_traffic.txt dataset. 2. Perform DBSCAN clustering to identify outliers repres