🎯

python-env

🎯Skill

from 0xdarkmatter/claude-mods

VibeIndex|
What it does

Manages Python virtual environments, automatically creating, activating, and configuring isolated development environments with dependencies and Python versions.

python-env

Installation

Install skill:
npx skills add https://github.com/0xdarkmatter/claude-mods --skill python-env
8
Last UpdatedJan 25, 2026

Skill Details

SKILL.md

Overview

# claude-mods

[![Claude Code](https://img.shields.io/badge/Claude%20Code-plugin-blueviolet?logo=anthropic)](https://docs.anthropic.com/en/docs/claude-code)

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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 /save and /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, and cat. Our rules automatically prefer ripgrep, fd, eza, and bat β€” 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 /conclave command)
  • Handle

More from this repository10

🎯
python-async-patterns🎯Skill

Provides expert-level guidance and code templates for implementing advanced asynchronous programming patterns and best practices in Python using asyncio and async/await syntax.

🎯
code-stats🎯Skill

Analyzes code repositories, generating comprehensive metrics about lines of code, language distribution, complexity, and project structure.

🎯
doc-scanner🎯Skill

Scans and extracts structured information from documents, converting complex files into concise, machine-readable summaries for efficient Claude Code analysis.

🎯
mcp-patterns🎯Skill

mcp-patterns skill from 0xdarkmatter/claude-mods

🎯
data-processing🎯Skill

Transforms, cleans, and preprocesses complex datasets using advanced filtering, normalization, and aggregation techniques across multiple data formats and sources.

🎯
python-typing-patterns🎯Skill

python-typing-patterns skill from 0xdarkmatter/claude-mods

🎯
structural-search🎯Skill

Searches codebases using advanced structural parsing techniques to find complex code patterns and dependencies across multiple files and languages.

🎯
file-search🎯Skill

Searches files across a project using advanced CLI tools like ripgrep and fd, providing fast, token-efficient file discovery and content searching capabilities.

🎯
sqlite-ops🎯Skill

Manages SQLite database operations, providing efficient querying, data manipulation, and schema management capabilities for Claude Code interactions.

🎯
claude-code-headless🎯Skill

Enables headless (non-interactive) Claude Code operations, allowing automated code generation, task execution, and context management without direct user interface interaction.