data-processing
π―Skillfrom 0xdarkmatter/claude-mods
Transforms, cleans, and preprocesses complex datasets using advanced filtering, normalization, and aggregation techniques across multiple data formats and sources.
Installation
npx skills add https://github.com/0xdarkmatter/claude-mods --skill data-processingSkill Details
Overview
# claude-mods
[](https://docs.anthropic.com/en/docs/claude-code)
[](https://opensource.org/licenses/MIT)
> What if Claude Code remembered what it was doing yesterday?
Claude Code is brilliant - until your session ends and it forgets everything. Your tasks vanish. Your carefully-built context evaporates. You're back to explaining the codebase from scratch.
claude-mods fixes that. It's a plugin that adds session persistence, expert-level domain knowledge, and the modern CLI tools that Claude should've been using all along. Save your work with /save, pick up where you left off with /sync, and let 22 specialized agents handle everything from React hooks to PostgreSQL optimization. No more "I don't have access to that" - just a smarter, more capable coding assistant that actually remembers.
22 agents. 38 skills. 3 commands. One install.
Why claude-mods?
Claude Code is powerful out of the box, but it has gaps. This toolkit fills them:
- Session continuity β Tasks vanish when sessions end. We fix that with
/saveand/sync, implementing Anthropic's [recommended pattern](https://www.anthropic.com/engineering/effective-harnesses-for-long-running-agents) for long-running agents.
- Expert-level knowledge on demand β 22 specialized agents covering React, TypeScript, Python, Go, Rust, AWS, PostgreSQL, and more. Each agent is deeply researched with real-world patterns, not generic advice.
- Modern CLI tools β Stop using
grep,find, andcat. Our rules automatically preferripgrep,fd,eza, andbatβ 10-100x faster and token-efficient.
- Smart web fetching β A fallback hierarchy that actually works: WebFetch β Jina Reader β Firecrawl. No more "I can't access that URL."
- Workflow patterns β TDD cycles, code review, feature development, debugging β all documented with Anthropic's best practices.
Key Benefits
- Persistent task state β Pick up exactly where you left off, even across machines
- Domain expertise β Agents trained on framework docs, not just general knowledge
- Token efficiency β Modern CLI tools produce cleaner output, saving context window
- Team sharing β Git-trackable state files work across your whole team
- Production-ready β Validated test suite, proper plugin format, comprehensive docs
- Extended thinking β Built-in guidance for "think hard" and "ultrathink" triggers
- Zero lock-in β Standard Claude Code plugin format, toggle on/off anytime
Structure
```
claude-mods/
βββ .claude-plugin/ # Plugin metadata
βββ agents/ # Expert subagents (22)
βββ commands/ # Slash commands (3)
βββ skills/ # Custom skills (38)
βββ output-styles/ # Response personalities
βββ hooks/ # Hook examples & docs
βββ rules/ # Claude Code rules
βββ tools/ # Modern CLI toolkit installers
βββ scripts/ # Plugin install scripts
βββ tests/ # Test suites + justfile
βββ docs/ # Project docs (PLAN.md, DASH.md)
βββ templates/ # Extension templates
```
Installation
Plugin Install (Recommended)
```bash
# Step 1: Add the marketplace
/plugin marketplace add 0xDarkMatter/claude-mods
# Step 2: Install the plugin
/plugin install claude-mods@0xDarkMatter-claude-mods
```
This installs globally (available in all projects). Toggle on/off with /plugin menu.
Script Install
Linux/macOS:
```bash
git clone https://github.com/0xDarkMatter/claude-mods.git
cd claude-mods
./scripts/install.sh
```
Windows (PowerShell):
```powershell
git clone https://github.com/0xDarkMatter/claude-mods.git
cd claude-mods
.\scripts\install.ps1
```
The install scripts:
- Copy commands, skills, agents, rules to
~/.claude/ - Clean up deprecated items (e.g., old
/conclavecommand) - Handle
More from this repository10
Provides expert-level guidance and code templates for implementing advanced asynchronous programming patterns and best practices in Python using asyncio and async/await syntax.
Manages Python virtual environments, automatically creating, activating, and configuring isolated development environments with dependencies and Python versions.
Enables headless (non-interactive) Claude Code operations, allowing automated code generation, task execution, and context management without direct user interface interaction.
Searches files across a project using advanced CLI tools like ripgrep and fd, providing fast, token-efficient file discovery and content searching capabilities.
Scans and extracts structured information from documents, converting complex files into concise, machine-readable summaries for efficient Claude Code analysis.
python-typing-patterns skill from 0xdarkmatter/claude-mods
Analyzes code repositories, generating comprehensive metrics about lines of code, language distribution, complexity, and project structure.
mcp-patterns skill from 0xdarkmatter/claude-mods
Manages SQLite database operations, providing efficient querying, data manipulation, and schema management capabilities for Claude Code interactions.
Searches codebases using advanced structural parsing techniques to find complex code patterns and dependencies across multiple files and languages.