Skip to content

Hwwwww-dev/claude-plugins

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

92 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Claude Code Marketplace

Community marketplace for Claude Code plugins

δΈ­ζ–‡ζ–‡ζ‘£

Overview

This repository contains a collection of Claude Code plugins focused on enhancing task automation and workflow efficiency.

Available Plugins

πŸš€ Atlas - Task Orchestration Framework

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

🧠 Ideation - Multi-Role Brainstorming Framework

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

🧠 Mnemosyne - Context Memory Management

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

Installation

Quick Start

# 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

Local Development

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

Usage

Atlas Plugin

Atlas provides 7 orchestration/analysis skills, 2 query skills, and 5 specialized agents:

Orchestration & Analysis Skills

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

Query Skills (Read-only)

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"

Example Usage

# 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

Ideation Plugin

Multi-Role Brainstorming (/ideation:brainstorm)

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

Available 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 Plugin

Mnemosyne provides 7 commands for session context management:

Commands

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

Example Usage

# 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 30d

Plugin Structure

cc-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

Contributing

Contributions are welcome! Please feel free to submit issues or pull requests.

Development Guidelines

  1. Follow Claude Code plugin best practices
  2. Maintain clear documentation
  3. Add tests where applicable
  4. Follow the existing code style

Support

License

MIT License - see LICENSE file for details

Acknowledgments

Built with Claude Code's powerful plugin system. Special thanks to the Anthropic team for creating such an extensible platform.


Made with ❀️ by Hwwwww

About

Claude Code plugins focused on enhancing task automation and workflow efficiency.

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages