A marketplace-based collection of reusable plugins providing agents, skills, and commands for Claude Code.
This repository provides a structured marketplace for Claude Code extensions that can be integrated into any project. Organized as a proper marketplace with plugins, templates, and conventions to standardize development workflows.
dotclaude/
├── wizact-marketplace/ # Plugin marketplace
│ └── plugins/
│ └── wizact-dev-essentials/ # Core development plugin
│ ├── agents/ # Specialized agents
│ ├── commands/ # Slash commands
│ ├── skills/ # Reusable skills
│ └── README.md
├── TEMPLATES/ # Reusable templates
│ ├── context-docs/ # Context documentation templates
│ └── conventions/ # Language conventions
│ ├── go/ # Go coding standards
│ └── python/ # Python coding standards
└── README.md
Install required system tools:
# macOS
brew install fd ripgrep
# Linux (Debian/Ubuntu)
apt install fd-find ripgrep# Clone the repository
git clone --bare https://github.com/wizact/dotclaude.git ~/dev/github.com/wizact/dotclaude
cd ~/dev/github.com/wizact/dotclaude
# For machine-specific configurations (recommended)
git worktree add <your-machine-name> main
cd <your-machine-name>/plugin
Install the wizact-marketplace on your machine.
Install the wizact-dev-essentials plugin.
See wizact-dev-essentials/README.md for detailed plugin documentation.
Essential development tools plugin providing:
Commands (3):
/commit-message- Generate Conventional Commits formatted messages/search-code- Smart code pattern search/setup-context-docs- Context-driven development documentation setup
Skills (2):
fd-search- Lightning-fast file system search usingfdripgrep-search- Blazing-fast code search usingripgrep
Agents (3):
go-developer- Comprehensive Go development with best practicesgo-reviewer- Proactive code review for Go projectsspecbuilder- Feature specification builder from issues/PRs
- Feature specification templates (requirements, design, tasks)
- Example feature structure (f002-uuid-multi-repo)
- Setup via
/setup-context-docscommand
- Go (
go/conventions.md) - Go coding standards and patterns - Python (
python/conventions.md) - Python coding standards and patterns
# Generate commit message
/commit-message
# Search code
/search-code "pattern"
# Setup project documentation
/setup-context-docsAgents are available via Claude Code's Task tool:
# Use go-developer agent
Task(subagent_type="wizact-dev-essentials:go-developer", prompt="Implement feature X")
# Use specbuilder agent
Task(subagent_type="wizact-dev-essentials:specbuilder", prompt="Create spec for issue #123")See individual component documentation for detailed usage:
MIT - See LICENSE
- Repository: https://github.com/wizact/dotclaude
- Issues: https://github.com/wizact/dotclaude/issues
- Author: wizact