A collection of custom commands, skills, and agents for Claude Code, organized as a plugin with bash scripts and markdown definitions for automating git, CI/CD, debugging, and macOS operations.
git clone https://github.com/0xDarkMatter/claude-mods.gitclaude-mods is a structured plugin repository for Claude Code that provides reusable skills, slash commands, and background agents covering common development workflows. Skills are organized into categories including git operations, CI/CD, debugging, refactoring, and macOS system tasks, with safety-tiered routing that separates read-only, safe-write, and destructive operations. The orchestrator-dispatch pattern delegates mechanical work to background agents like git-agent, keeping the main skill logic clean and composable. The project is built entirely from markdown and bash, with no npm runtime dependencies, making it lightweight to install and maintain. Developers who rely on Claude Code for daily engineering tasks benefit from a ready-made library of commands they can drop into their own projects.
Clone the repository into your project and reference the .claude-plugin directory so Claude Code can discover the skills and commands. Skills are defined as markdown files under the skills/ directory, slash commands live under commands/, and background agents are defined in the agents/ directory. Permissions for specific bash and file operations can be configured in .claude/settings.local.json.
Automating git operations with safety-tiered routing for read, write, and destructive commands
Running macOS health audits and quick diagnostics via terminal panel UI scripts
Orchestrating CI/CD pipeline tasks through dedicated Claude Code skill definitions
Using background agent workers to handle mechanical git and GitHub tasks without blocking the main session
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/0xDarkMatter/claude-modsCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
Create a custom command for Claude Code that [DESCRIBE ACTION]. The command should be named [COMMAND NAME] and should [DETAIL SPECIFIC FUNCTIONALITY]. Include any necessary parameters and provide an example of how to use it.
```python
# Custom Command: Data Analyzer
# Description: Analyzes CSV data and provides summary statistics
# Parameters:
# - file_path: Path to the CSV file
# - columns: List of columns to analyze (optional)
# Example Usage:
# !analyze_data --file_path data.csv --columns age,income
def analyze_data(file_path, columns=None):
import pandas as pd
# Load the data
data = pd.read_csv(file_path)
# If columns are specified, filter the data
if columns:
data = data[columns]
# Generate summary statistics
summary = data.describe()
return summary
```AI assistant built for thoughtful, nuanced conversation
IronCalc is a spreadsheet engine and ecosystem
ITIL-aligned IT service management platform
Customer feedback management made simple
Enterprise workflow automation and service management platform
Automate your spreadsheet tasks with AI power
Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan