Aevelop Claude Code Marketplace
npx claudepluginhub aevelop/aevccAevelop Claude Code Marketplace
Aevelop Claude Code Configuration
Production-ready agents, skills, hooks, commands, rules, plugins, and MCP configurations.
Get up and running in under 2 minutes:
# Add marketplace
/plugin marketplace add aevelop/aevcc
# Install plugin
/plugin install aevcc@aevcc
⚠️ Important: Claude Code plugins cannot distribute
rulesautomatically. Install them manually:
# Clone the repo first
git clone https://github.com/aevelop/aevcc.git
# Copy rules (applies to all projects)
cp -r aevcc/rules/* ~/.claude/rules/
# # With Installer
# cd aevcc
# # Recommended: use the installer (handles common + language rules safely)
# ./install.sh typescript # or python or golang
# # You can pass multiple languages:
# # ./install.sh typescript python golang
# # or target cursor:
# # ./install.sh --target cursor typescript
# # Manually
# # Install common rules (required)
# cp -r aevcc/rules/common/* ~/.claude/rules/
# # Install language-specific rules (pick your stack)
# cp -r aevcc/rules/typescript/* ~/.claude/rules/
# cp -r aevcc/rules/python/* ~/.claude/rules/
# Try a command
/plan "Add user authentication"
# Check available commands
/plugin list aevcc@aevcc
✨ That's it! You now have full access to it.
If you prefer manual control over what's installed:
# Clone the repo
git clone https://github.com/aevelop/aevcc.git
# Copy agents to your Claude config
cp aevcc/agents/*.md ~/.claude/agents/
# # Copy rules
# cp aevcc/rules/*.md ~/.claude/rules/
# # Copy rules (common + language-specific)
# cp -r aevcc/rules/common/* ~/.claude/rules/
# cp -r aevcc/rules/typescript/* ~/.claude/rules/ # pick your stack
# cp -r aevcc/rules/python/* ~/.claude/rules/
# Copy commands
cp aevcc/commands/*.md ~/.claude/commands/
# Copy skills
cp -r aevcc/skills/* ~/.claude/skills/
Copy desired MCP servers from docs/mcp-configs/mcp-servers.json to your ~/.claude.json.
Important: Replace YOUR_*_HERE placeholders with your actual API keys.
This plugin fully supports Windows, macOS, and Linux. All hooks and scripts have been rewritten in Node.js for maximum compatibility.
The plugin automatically detects your preferred package manager (npm, pnpm, yarn, or bun) with the following priority:
CLAUDE_PACKAGE_MANAGER.claude/package-manager.jsonpackageManager field~/.claude/package-manager.jsonTo set your preferred package manager:
# Via environment variable
export CLAUDE_PACKAGE_MANAGER=pnpm
# Via global config
node scripts/setup-package-manager.js --global pnpm
# Via project config
node scripts/setup-package-manager.js --project bun
# Detect current setting
node scripts/setup-package-manager.js --detect
Or use the /setup-pm command in Claude Code.
This repo is a Claude Code plugin - install it directly or copy components manually.
Minimum version: v2.1.0 or later
This plugin requires Claude Code CLI v2.1.0+ due to changes in how the plugin system handles hooks.
Check your version:
claude --version
⚠️ For Contributors: Do NOT add a
"hooks"field to.claude-plugin/plugin.json. This is enforced by a regression test.
Claude Code v2.1+ automatically loads hooks/hooks.json from any installed plugin by convention. Explicitly declaring it in plugin.json causes a duplicate detection error:
Duplicate hooks file detected: ./hooks/hooks.json resolves to already-loaded file
Subagents handle delegated tasks with limited scope. Example:
---
name: code-reviewer
description: Reviews code for quality, security, and maintainability
tools: ["Read", "Grep", "Glob", "Bash"]
model: opus
---
You are a senior code reviewer...
Skills are workflow definitions invoked by commands or agents:
# TDD Workflow
1. Define interfaces first
2. Write failing tests (RED)
3. Implement minimal code (GREEN)
4. Refactor (IMPROVE)
5. Verify 80%+ coverage
/plugin list aevcc@aevcc
This shows all available agents, commands, and skills from the plugin.
Harness-native ECC skills, hooks, rules, MCP conventions, and operator workflows
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