Skip to content

A collection of skills and mcps for personal use

License

Notifications You must be signed in to change notification settings

wizact/dotclaude

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Claude Code Extensions

A marketplace-based collection of reusable plugins providing agents, skills, and commands for Claude Code.

Purpose

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.

Repository Structure

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

Installation

Prerequisites

Install required system tools:

# macOS
brew install fd ripgrep

# Linux (Debian/Ubuntu)
apt install fd-find ripgrep

Setup

# 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 Installation

/plugin 

Install the wizact-marketplace on your machine. Install the wizact-dev-essentials plugin.

See wizact-dev-essentials/README.md for detailed plugin documentation.

What's Included

Plugins

wizact-dev-essentials

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 using fd
  • ripgrep-search - Blazing-fast code search using ripgrep

Agents (3):

  • go-developer - Comprehensive Go development with best practices
  • go-reviewer - Proactive code review for Go projects
  • specbuilder - Feature specification builder from issues/PRs

Templates

Context Documentation (TEMPLATES/context-docs/)

  • Feature specification templates (requirements, design, tasks)
  • Example feature structure (f002-uuid-multi-repo)
  • Setup via /setup-context-docs command

Language Conventions (TEMPLATES/conventions/)

  • Go (go/conventions.md) - Go coding standards and patterns
  • Python (python/conventions.md) - Python coding standards and patterns

Usage

Quick Start

# Generate commit message
/commit-message

# Search code
/search-code "pattern"

# Setup project documentation
/setup-context-docs

Using Agents

Agents 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:

License

MIT - See LICENSE

Links

About

A collection of skills and mcps for personal use

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages