Development standards Claude Code plugins and tools
npx claudepluginhub myenquiringmind/dev-standards-pluginEnforces best practice development standards including DRY/SOLID principles, comprehensive testing, type checking, linting, validation, and structured workflows across all projects.
Enforce consistent development standards across all your projects with automated hooks, specialized agents, workflow commands, and best-practice skills.
# Add this repo as a marketplace (one-time)
/plugin marketplace add myenquiringmind/dev-standards-plugin
# Install in any project
/plugin install dev-standards@myenquiringmind
# That's it! Standards now enforced automatically.
| Hook | What It Does |
|---|---|
| SessionStart | Loads git status + TODO context, logs session, checks for updates |
| UserPromptSubmit | Logs prompts for session history |
| PreToolUse | Blocks dangerous commands, protects main branch |
| PostToolUse | Auto-formats, type checks, lints, logs activity, venv-aware |
| Stop | Validation checkpoint (tests, types, lint) |
| SubagentStop | Ensures subagents provide summaries |
.venv on first Python file editpython -m venv (fallback)| Agent | Purpose | Invoke |
|---|---|---|
@investigator | Deep root cause analysis | Complex bugs |
@code-reviewer | Quality & security review | Before commits |
@test-writer | Comprehensive test coverage | New features |
@doc-writer | Documentation updates | API changes |
| Command | Purpose |
|---|---|
/plan | Create structured implementation plan with TLDR |
/fix | Complete bug fix workflow |
/validate | Comprehensive validation checklist |
/review | Code review with quality gates |
/setup | Initialize project configuration |
/typecheck | On-demand type checking + linting |
/logs | View session activity and history |
| Skill | Triggers On |
|---|---|
dev-workflow | Any code task - features, fixes, refactoring |
Step 1: Host this repo on GitHub (public or private)
# Fork or clone this repo
git clone https://github.com/myenquiringmind/dev-standards-plugin
cd dev-standards-plugin
# Customize if needed, then push to your org
git remote set-url origin https://github.com/YOUR_ORG/dev-standards-plugin
git push -u origin main
Step 2: Add as marketplace in Claude Code
/plugin marketplace add YOUR_ORG/dev-standards-plugin
Step 3: Install in any project
/plugin install dev-standards@myenquiringmind
macOS/Linux:
# Add as submodule
git submodule add https://github.com/myenquiringmind/dev-standards-plugin .claude-standards
# Symlink components
ln -s .claude-standards/hooks/hooks.json .claude/hooks.json
ln -s .claude-standards/agents .claude/agents
ln -s .claude-standards/commands .claude/commands
ln -s .claude-standards/skills .claude/skills
Windows (PowerShell):
# Add as submodule
git submodule add https://github.com/myenquiringmind/dev-standards-plugin .claude-standards
# Copy components (symlinks require admin on Windows)
Copy-Item .claude-standards\hooks\hooks.json .claude\hooks.json
Copy-Item -Recurse .claude-standards\agents .claude\agents
Copy-Item -Recurse .claude-standards\commands .claude\commands
Copy-Item -Recurse .claude-standards\skills .claude\skills
macOS/Linux:
# Clone and copy
git clone https://github.com/myenquiringmind/dev-standards-plugin /tmp/standards
cp -r /tmp/standards/hooks /tmp/standards/agents /tmp/standards/commands /tmp/standards/skills .claude/
Windows (PowerShell):
# Clone and copy
git clone https://github.com/myenquiringmind/dev-standards-plugin $env:TEMP\standards
Copy-Item -Recurse "$env:TEMP\standards\hooks","$env:TEMP\standards\agents","$env:TEMP\standards\commands","$env:TEMP\standards\skills" .\.claude\
This plugin is fully cross-platform and works on:
All hooks use Node.js for cross-platform compatibility. No bash-specific commands are used.
Once installed, standards are enforced automatically. Here's how the workflow looks:
You: "The login is timing out after 30 seconds"
Claude:
1. [SessionStart hook loads git status]
2. [dev-workflow skill activates]
3. "I'll investigate this. Delegating to @investigator..."
@investigator:
4. Reproduces issue
5. Traces to auth service
6. Returns: "Root cause: Token refresh not awaited"
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 84 marketplace plugins, 192 local specialized agents, and 156 local skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations