
Paxdev
- Updated February 11, 2026
- paxsonsa/myskillz
paxdev is a Claude Code skill in the Automation & Workflows category. Development workflow plugin with research, planning, and discovery commands
Key points
- paxdev
- Automation & Workflows
- AI-coding skill
Paxdev by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add paxsonsa/myskillz/plugin install paxdev@myskillzAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | February 11, 2026 |
|---|---|
| Repository | paxsonsa/myskillz ↗ |
What it does
Development workflow plugin with research, planning, and discovery commands
README.md
Paxdev Plugin
A Claude Code plugin for development workflows, including research, planning, and discovery commands. Converted from opencode configuration.
Directory Structure
paxdev/
├── .claude-plugin/ # Plugin metadata
│ └── plugin.json
├── commands/ # Slash commands for Claude Code
├── agents/ # Specialized agents for various tasks
├── skills/ # Skills for domain-specific capabilities
│ └── rust-docs/ # Rust crate & documentation lookup
└── README.md # This file
Commands
Commands can be invoked with /command-name in Claude Code:
/research- Research a codebase by spawning parallel sub-agents/discovery- Discover a repo and generate an LLM context guide/create_plan- Create detailed implementation plans/implement_plan- Implement an approved technical plan/validate_plan- Validate that a plan was implemented successfully/commit- Create git commits for changes made in session
Subagents
Subagents are specialized agents that can be spawned using the Task tool:
Codebase Research
codebase-locator- Locates files, directories, and componentscodebase-analyzer- Analyzes implementation detailscodebase-pattern-finder- Finds similar implementations and patterns
Discovery System
discovery-locator- Find existing discovery docsdiscovery-analyzer- Decide if discovery doc is fresh/relevantdiscovery-worker- Generate and update discovery context docs
Thoughts/LLM Directory Research
thoughts-locator- Discovers relevant documents in .llm/ directorythoughts-analyzer- Deep dive analysis on research topics
External Research
web-search-researcher- Web research for modern informationresearch- Primary research agent for synthesizing findings
Conversion Notes
These files were converted from opencode format by:
- Removing opencode-specific frontmatter fields (
agent,model,tools,mode) - Keeping the
descriptionfield for Claude Code - Preserving
$ARGUMENTSplaceholders in commands (Claude Code supports this) - Maintaining all prompt instructions and workflows
Usage
The commands reference subagents by name. For example, the /research command spawns subagents like:
codebase-locatorto find relevant filescodebase-analyzerto understand implementationsthoughts-locatorto find historical context
These subagents work together to provide comprehensive research and analysis.
Skills
Skills provide domain-specific knowledge and tools:
rust-docs- Look up Rust crate versions, features, dependencies, and documentation from crates.io and docs.rs. Includes acrate_lookup.shhelper script for structured API queries.