By TorchedHat
Curated collection of AI tools, skills, and agents for PyTorch development. Includes torch.compile debugging, semantic API search, and development workflows.
Dynamo specialist for graph capture, guards, graph breaks, and VariableTracker system
AOT Autograd specialist for functionalization, decomposition, and gradient computation
Inductor specialist for lowerings, IR nodes, Triton codegen, fusion, and kernel optimization
Skill-driven torch.compile debugger. Orchestrates bisection, trace collection, and root cause analysis using stage-specific skills. Use when debugging compilation failures, errors, or incorrect output.
Use PyTorch's compiler bisector to automatically find which backend/subsystem/operation causes compilation failures. Binary searches through backends (eager → aot_eager → inductor) and subsystems (passes, lowerings, etc.) to pinpoint exact failing operations. Outputs backend/subsystem/debug_info that routes you to the right stage-specific skill (compile-trace-dynamo for eager, compile-trace-aot for aot_*, compile-trace-inductor for inductor).
Reference documentation for torch.compile pipeline architecture, IR levels (Full ATen, Core ATen, Prims), stages, TORCH_LOGS flags, output files, and debugging tools. Use for understanding pipeline structure, operator IRs, and available debugging options.
Debug PyTorch AOT Autograd stage - functionalization, decompositions, IR transformations, joint forward+backward graph (when requires_grad=True), partitioning/recomputation, and post-grad passes. Use for tracing AOT stage and understanding decomposition application.
Debug PyTorch Dynamo stage - bytecode capture, FX graph construction, graph breaks, and pre-grad passes. Covers TORCH_LOGS for dynamo/graph_breaks/pre_grad_graphs, interpreting FX graph files, understanding graph break reasons, and pre-grad fusion patterns (Conv-BN, split-cat). Load after compile-bisect indicates backend='eager'.
Debug PyTorch Inductor compiler backend - IR lowering, scheduler/fusion, loopbody ops, and Triton/C++ codegen. Covers TORCH_LOGS for fusion/schedule/ir_post_fusion/output_code, config.trace.enabled for IR dumps, interpreting Inductor IR nodes (Pointwise/Reduction/etc), fusion decisions, kernel generation, and performance optimization. Load after compile-bisect indicates backend='inductor'.
Uses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
A curated collection of Claude Code plugins, skills, and agents for PyTorch development. This marketplace provides AI-powered tools for debugging, development, and optimization across the PyTorch ecosystem.
The PyTorch AI Marketplace is a Claude Code plugin marketplace that provides:
This marketplace serves the broader PyTorch community by packaging AI tools that understand PyTorch internals, debugging workflows, and development patterns.
We welcome contributions of new tools, skills, and agents! See CONTRIBUTION_GUIDELINES.md for guidelines
Multi-agent system for PyTorch compiler development with 10 skills and 4 specialized agents.
Features:
# Add the marketplace (one-time setup)
claude plugin marketplace add TorchedHat/ai-marketplace
# Install the plugin(s)
claude plugin install ai-writer
claude plugin install deterministic-hook
claude plugin install torch-compile
claude plugin install torchtalk
Access skills directly:
/compile-overview # torch.compile pipeline reference
/pytorch-dynamo # Dynamo implementation guidance
/skill-writer # Create new skills
Skills activate automatically based on context:
"Use the debug agent to debug code at file-name.py"
Delegate complex tasks to expert agents:
compile-debug agent for multi-stage compilation debuggingdynamo-expert for Dynamo-specific questionsaot-expert for AOT Autograd and gradient issuesinductor-expert for lowering and codegenThis repository serves as a reference implementation for Claude Code plugin marketplace patterns:
.claude-plugin/plugin.json for plugin structure.claude-plugin/marketplace.json for discovery/skill-writer to create new skills/agent-writer to create specialized agents/plugin-writer to create specialized agentshooks.json and scripts/ensure-setup.sh# Check if steering is installed
which acp-steering-mcp
# If not, install manually
uv pip install git+https://github.com/ambient-code/steering.git
# Verify PyTorch is installed
python3 -c "import torch; print(torch.__file__)"
# If PyTorch is installed from source, indexing should auto-detect it
# Override auto-detection if needed:
export PYTORCH_PATH=/path/to/pytorch
# Remove existing indices
rm -rf ~/.acp/repos/dynamo ~/.acp/repos/inductor ~/.acp/repos/functorch
# Restart Claude Code to trigger re-indexing
claude --plugin-dir .
Part of the PyTorch devcontainer tooling. See LICENSE for details.
npx claudepluginhub torchedhat/ai-marketplace --plugin torch-compileMCP server giving Claude Code cross-language understanding of PyTorch (Python -> C++ -> CUDA): binding-chain tracing, impact analysis, dispatch mapping, call graphs, and test discovery.
Tools for creating and managing Claude Code plugins, skills, and agents. Includes plugin-writer, skill-writer, and agent-writer utilities.
Deterministic hook system for automatic skill activation and guardrails in Claude Code. Includes skill-developer documentation and hook infrastructure for UserPromptSubmit triggers.
Harness-native ECC operator layer - 67 agents, 271 skills, 92 legacy command shims, reusable hooks, rules, selective install profiles, and production-ready workflows for Claude Code, Codex, OpenCode, Cursor, and related agent harnesses
Reliable automation, in-depth debugging, and performance analysis in Chrome using Chrome DevTools and Puppeteer
Access thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
Feature development with code-architect/explorer/reviewer agents, CLAUDE.md audit and session learnings, and Agent Skills creation with eval benchmarking from Anthropic.
Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques
Comprehensive feature development workflow with specialized agents for codebase exploration, architecture design, and quality review