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, intelligent refactoring, test generation
- π¦ Dependency Management: Security scanning, version analysis, conflict detection
- π Documentation Generation: Auto-generate repo wiki, changelog, health reports
Use Cases:
- Batch file operations and project-wide refactoring
- Code review and quality assurance
- Test generation and coverage improvement
- Dependency security audit and updates
- Project health monitoring
- Changelog and documentation generation
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 8-section 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 9 commands, 7 specialized agents, and 3 query skills:
| Command | 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:test-gen |
Automated test generation |
/atlas:deps |
Dependency management and security |
/atlas:health |
Project health diagnostics |
/atlas:changelog |
Auto-generate changelog |
/atlas:repo-wiki |
Repository documentation generation |
# Task orchestration
/atlas:orchestrate Add TypeScript types to all React components --parallel
# Code review
/atlas:review --scope src/ --type security,performance
# Intelligent refactoring
/atlas:refactor extract-method --scope src/utils --dry-run
# Test generation
/atlas:test-gen --scope src/services --framework jest --coverage-target 80
# Dependency management
/atlas:deps --type security --fix
# Project health check
/atlas:health --export html
# Generate changelog
/atlas:changelog --from v1.0.0 --version 2.0.0
# Generate repo wiki
/atlas:repo-wiki --lang en --depth 3| Skill | Description | Example |
|---|---|---|
dep-query |
Dependency version, vulnerability, usage | "axios version", "outdated deps" |
git-query |
Commit history, contributors, changes | "recent commits", "who modified auth" |
wiki-query |
Project structure, API, module info | "what APIs exist", "find UserService" |
# Invoke skills
/skill atlas:dep-query
/skill atlas:git-query
/skill atlas:wiki-query# 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 30dSaved context includes the following sections to ensure complete recoverability:
| Section | Content |
|---|---|
| 1. Origin | User intent, core goals, constraints |
| 2. Process | Key decisions, reasoning |
| 3. Output | Code changes, new/modified files |
| 4. Status | Task progress, completion rate |
| 5. Obstacles | Problems encountered and solutions |
| 6. Environment | Tech stack, project info |
| 7. Map | Core files, dependencies |
| 8. Signpost | Continuation guide, next steps |
| 9. Session Stats | Conversation size, tool usage, session duration |
| 10. Code Quality | Code metrics, quality checks, style assessment |
| 11. Code Snippets | Core functions/classes, important changes |
| 12. Timeline | Key events, milestone moments |
| 13. Learning Notes | New knowledge, pitfalls, best practices |
| 14. Related Resources | Documentation links, references, search keywords |
| 15. Impact Analysis | Scope of impact, risk assessment, testing suggestions |
cc-plugins/
βββ .claude-plugin/
β βββ marketplace.json # Marketplace configuration
βββ atlas/ # Atlas plugin (v2.9.1)
β βββ .claude-plugin/
β β βββ plugin.json # Plugin metadata
β βββ agents/ # Specialized agents (7)
β β βββ atlas-executor.md # Task executor
β β βββ code-reviewer.md # Code review expert
β β βββ commit-analyzer.md # Commit analysis
β β βββ dependency-analyzer.md # Dependency analysis
β β βββ information-gatherer.md # Information gatherer
β β βββ repo-context-indexer.md # Repository context indexer
β β βββ repo-semantic-analyzer.md # Semantic analyzer
β βββ commands/ # Commands (9)
β β βββ orchestrate.md # Task orchestration
β β βββ gather.md # Information gathering
β β βββ review.md # Code review
β β βββ refactor.md # Intelligent refactoring
β β βββ test-gen.md # Test generation
β β βββ deps.md # Dependency management
β β βββ health.md # Health diagnostics
β β βββ changelog.md # Changelog generation
β β βββ repo-wiki.md # Repo documentation
β βββ hooks/
β β βββ hooks.json # Hooks configuration
β βββ skills/ # Query skills (3)
β βββ dep-query/SKILL.md # Dependency query
β βββ git-query/SKILL.md # Git query
β βββ wiki-query/SKILL.md # Wiki query
βββ ideation/ # Ideation plugin (v1.0.1)
β βββ .claude-plugin/
β β βββ plugin.json # Plugin metadata
β βββ agents/
β β βββ debate-moderator.md # Debate moderator agent
β βββ commands/
β βββ brainstorm.md # /ideation:brainstorm command
βββ mnemosyne/ # Mnemosyne plugin (v1.0.0)
β βββ .claude-plugin/
β β βββ plugin.json # Plugin metadata
β βββ commands/ # Commands (7)
β βββ save.md # /mnemosyne:save - Save context
β βββ load.md # /mnemosyne:load - Load context
β βββ list.md # /mnemosyne:list - List sessions
β βββ search.md # /mnemosyne:search - Search
β βββ delete.md # /mnemosyne:delete - Delete
β βββ stats.md # /mnemosyne:stats - Statistics
β βββ clean.md # /mnemosyne:clean - Cleanup
βββ 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