Community marketplace for Claude Code plugins
This repository contains a collection of Claude Code plugins focused on enhancing task automation and workflow efficiency.
A powerful task coordination and parallel execution framework for Claude Code.
Features:
- π― Smart Task Decomposition: Automatically breaks down complex tasks into parallelizable subtasks
- π Concurrent Execution: Runs multiple tasks simultaneously for significant speed improvements
- π§© Flexible Orchestration: Supports parallel, sequential, and mixed execution strategies
- π Result Aggregation: Automatically collects and organizes all subtask execution results
- π Intelligent Information Gathering: Auto-analyze project structure, dependencies, code patterns
- π§ Code Quality Tools: Code review and intelligent refactoring
- π¦ Dependency Management: Security scanning, version analysis, conflict detection
- π₯ Project Health Check: One-click diagnosis with comprehensive scoring
Use Cases:
- Batch file operations and project-wide refactoring
- Code review and quality assurance
- Dependency security audit and updates
- Project health monitoring
- Bug diagnosis and automated fixes
Documentation: See atlas/ directory
A multi-expert brainstorming framework that explores problems through Socratic dialogue and expert debates.
Features:
- π 13 Professional Experts: Product Manager, Architect, UX Designer, Security Expert, etc.
- π¬ Socratic Dialogue: Uncover hidden assumptions through questioning
- βοΈ Expert Debates: Multi-perspective discussions with constructive conflicts
- π― Preset Expert Groups: product, tech, quality, business, all
- π Structured Output: Consensus, disagreements, and actionable recommendations
Use Cases:
- Vague product ideas requiring systematic exploration
- Technical solutions needing multi-angle evaluation
- Major decisions requiring comprehensive risk assessment
- Complex problems needing cross-domain expert collision
Documentation: See ideation/ directory
Named after the Greek goddess of memory, this plugin manages session context so your work progress is never lost.
Features:
- πΎ One-Click Save: Intelligently extract key information from current session (requirements, decisions, code changes, progress)
- π₯ Quick Restore: Load historical context in new sessions, seamlessly continue work
- π Full-Text Search: Search historical sessions by title, tags, or content
- π·οΈ Auto Tagging: Automatically generate tags for tech stack, task type, etc.
- β Quality Check: Built-in completeness check ensures context is recoverable
Use Cases:
- Save and restore progress for long-term projects
- Continue complex tasks across sessions
- Team knowledge transfer and handover
- Work logs and decision records
Documentation: See mnemosyne/ directory
# 1. Add marketplace
/plugin marketplace add Hwwwww-dev/cc-plugins
# 2. Install plugins
/plugin install atlas@cc-plugins
/plugin install ideation@cc-plugins
/plugin install mnemosyne@cc-plugins
# 3. Restart Claude Code# Add local marketplace
/plugin marketplace add ./cc-plugins
# Install plugins locally
/plugin install atlas@cc-plugins
/plugin install ideation@cc-plugins
/plugin install mnemosyne@cc-pluginsAtlas provides 7 orchestration/analysis skills, 2 query skills, and 5 specialized agents:
| Skill | Description |
|---|---|
atlas:orchestrate |
Task coordination and parallel execution |
atlas:gather |
Intelligent information gathering |
atlas:review |
Multi-dimensional code review |
atlas:refactor |
Intelligent code refactoring |
atlas:bugfix |
Bug diagnosis and fix suggestions |
atlas:deps |
Dependency management and security |
atlas:health |
Project health diagnostics |
| Skill | Description | Example |
|---|---|---|
atlas:dep-query |
Dependency version, vulnerability, usage | "axios version", "outdated deps" |
atlas:git-query |
Commit history, contributors, changes | "recent commits", "who modified auth" |
# Task orchestration
/skill atlas:orchestrate # then: Add TypeScript types to all React components
# Code review
/skill atlas:review # then: scope=src/ type=security,performance
# Bug fix
/skill atlas:bugfix # then: describe the bug symptom
# Intelligent refactoring
/skill atlas:refactor # then: extract-method scope=src/utils
# Dependency management
/skill atlas:deps # then: --type security --fix
# Project health check
/skill atlas:health# Product exploration
/ideation:brainstorm "Add social features to e-commerce platform" --group product --depth normal
# Technical solution
/ideation:brainstorm "Design high-concurrency flash sale system" --group tech --depth deep
# Business decision
/ideation:brainstorm "Should we enter overseas market" --group business
# Comprehensive evaluation (all 13 experts)
/ideation:brainstorm "Should we adopt microservice architecture" --group all --depth deepAvailable Expert Groups:
| Group | Experts | Use Case |
|---|---|---|
| product | Product Manager, UX Designer, Market Analyst | Product requirements, user experience |
| tech | Architect, Frontend, Backend, DB, DevOps | Technical solutions, architecture design |
| quality | Security, Performance, Tech Lead | Quality assurance, security review |
| business | PM, Market Analyst, Legal, Data Analyst | Business feasibility, compliance |
| all | All 13 experts | Complex decisions, full evaluation |
Mnemosyne provides 7 commands for session context management:
| Command | Description |
|---|---|
/mnemosyne:save |
Save current session context |
/mnemosyne:load |
Load historical context |
/mnemosyne:list |
View all saved sessions |
/mnemosyne:search |
Search historical sessions |
/mnemosyne:delete |
Delete specified context |
/mnemosyne:stats |
Display storage statistics |
/mnemosyne:clean |
Clean up expired contexts |
# Save current session (auto-extract key info)
/mnemosyne:save
# Save with tags
/mnemosyne:save --tags feature,auth,React
# Load most recent context
/mnemosyne:load --latest
# Load by ID
/mnemosyne:load 20241225-103000
# View all saved sessions
/mnemosyne:list
# Search historical sessions
/mnemosyne:search auth
/mnemosyne:search --tag feature --after 2024-12-01
# View statistics
/mnemosyne:stats
# Clean contexts older than 30 days
/mnemosyne:clean --before 30dcc-plugins/
βββ .claude-plugin/
β βββ marketplace.json # Marketplace configuration
βββ atlas/ # Atlas plugin (v3.0.0)
β βββ .claude-plugin/
β β βββ plugin.json # Plugin metadata
β βββ agents/ # Specialized agents (5)
β β βββ atlas-executor.md # Task executor
β β βββ code-reviewer.md # Code review expert
β β βββ dependency-analyzer.md # Dependency analysis
β β βββ information-gatherer.md # Information gatherer
β β βββ task-planner.md # Task planner
β βββ hooks/
β β βββ hooks.json # Hooks configuration
β βββ skills/ # Skills (9)
β βββ orchestrate/ # Task orchestration
β βββ gather/ # Information gathering
β βββ review/ # Code review
β βββ refactor/ # Intelligent refactoring
β βββ bugfix/ # Bug diagnosis & fix
β βββ deps/ # Dependency management
β βββ health/ # Health diagnostics
β βββ dep-query/ # Dependency query
β βββ git-query/ # Git query
βββ ideation/ # Ideation plugin
β βββ .claude-plugin/
β β βββ plugin.json # Plugin metadata
β βββ agents/ # 14 expert agents
β βββ commands/
β β βββ brainstorm.md # /ideation:brainstorm command
β βββ skills/
β βββ brainstorm/ # Brainstorming workflow
βββ mnemosyne/ # Mnemosyne plugin (v2.1.0)
β βββ .claude-plugin/
β β βββ plugin.json # Plugin metadata
β βββ commands/ # Commands (7)
β β βββ save.md # /mnemosyne:save
β β βββ load.md # /mnemosyne:load
β β βββ list.md # /mnemosyne:list
β β βββ search.md # /mnemosyne:search
β β βββ delete.md # /mnemosyne:delete
β β βββ stats.md # /mnemosyne:stats
β β βββ clean.md # /mnemosyne:clean
β βββ skills/ # Implementation engine (3)
β βββ context-save/
β βββ context-load/
β βββ context-search/
βββ docs/ # Reference documentation
βββ README.md # This file (English)
βββ README_zh.md # Chinese documentation
Contributions are welcome! Please feel free to submit issues or pull requests.
- Follow Claude Code plugin best practices
- Maintain clear documentation
- Add tests where applicable
- Follow the existing code style
- π Report Issues: GitHub Issues
- π¬ Discussions: GitHub Discussions
MIT License - see LICENSE file for details
Built with Claude Code's powerful plugin system. Special thanks to the Anthropic team for creating such an extensible platform.
Made with β€οΈ by Hwwwww