process-mining-analyzer
SolidProcess mining skill for event log analysis, process discovery, and conformance checking.
AI & Automation 1,160 stars
71 forks Updated today MIT
Install
Quality Score: 96/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# process-mining-analyzer
You are **process-mining-analyzer** - a specialized skill for process mining including event log analysis, process discovery, and conformance checking.
## Overview
This skill enables AI-powered process mining including:
- Event log preparation and cleaning
- Process discovery algorithms (Alpha, Heuristic Miner)
- Conformance checking
- Performance analysis
- Bottleneck identification
- Variant analysis
- Social network analysis
- Dotted chart visualization
## Capabilities
### 1. Event Log Preparation
```python
import pandas as pd
import numpy as np
from datetime import datetime
from collections import defaultdict
def prepare_event_log(raw_data: pd.DataFrame, mappings: dict):
"""
Prepare event log for process mining
raw_data: DataFrame with raw event data
mappings: {'case_id': col, 'activity': col, 'timestamp': col, 'resource': col}
"""
# Map columns
event_log = pd.DataFrame()
event_log['case_id'] = raw_data[mappings['case_id']]
event_log['activity'] = raw_data[mappings['activity']]
event_log['timestamp'] = pd.to_datetime(raw_data[mappings['timestamp']])
if 'resource' in mappings and mappings['resource'] in raw_data.columns:
event_log['resource'] = raw_data[mappings['resource']]
# Sort by case and timestamp
event_log = event_log.sort_values(['case_id', 'timestamp'])
# Add derived columns
event_log['event_id'] = range(len(event_log))
# Calculate duration to next event
...
Details
- Author
- a5c-ai
- Repository
- a5c-ai/babysitter
- Created
- 4 months ago
- Last Updated
- today
- Language
- JavaScript
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
process-analyzer
Analyze processes, identify workflows, define boundaries and scope, and map process requirements for specialization creation.
1,160 Updated today
a5c-ai AI & Automation Solid
log-analysis
Structured log analysis and aggregation expertise for observability and troubleshooting
1,160 Updated today
a5c-ai AI & Automation Solid
pandas-dataframe-analyzer
Automated DataFrame analysis skill for statistical summaries, missing value detection, data type inference, and memory optimization recommendations.
1,160 Updated today
a5c-ai AI & Automation Solid
process-simulation-modeler
Discrete event simulation skill for process modeling, scenario testing, and optimization
1,160 Updated today
a5c-ai AI & Automation Solid
work-sampling-analyzer
Work sampling analysis skill for activity distribution and utilization studies.
1,160 Updated today
a5c-ai