High-quality Claude Code plugins for enhanced AI-assisted development.
Add this marketplace to Claude Code:
/plugin marketplace add verygoodplugins/claude-pluginsThen install any plugin:
/plugin install automem@verygoodplugins| Plugin | Description |
|---|---|
| automem | Persistent memory - store decisions, patterns, and context across sessions |
| freescout | FreeScout helpdesk - ticket management and support workflows |
| evernote | Evernote integration - notes and research management |
| toggl | Toggl time tracking - manage time entries and reports |
| pirsch | Pirsch analytics - privacy-friendly website analytics |
Persistent memory for Claude Code sessions using the AutoMem service.
Commands:
| Command | Description |
|---|---|
/memory-store |
Store new memories with tags and context |
/memory-recall |
Search and retrieve stored memories |
/memory-health |
Check AutoMem service status |
Features:
- Automatic session context capture via hooks
- Smart memory filtering (skip trivial changes)
- Knowledge graph with memory associations
- Semantic search across all stored memories
Configuration:
export AUTOMEM_ENDPOINT="http://127.0.0.1:8001"MCP Server: @verygoodplugins/mcp-automem
See mcp-automem for setup instructions.
FreeScout helpdesk integration for ticket management and support workflows.
Commands:
| Command | Description |
|---|---|
/ticket-get <ticket> |
Fetch and display a ticket |
/ticket-analyze <ticket> |
Analyze issue type, root cause, and solution |
/ticket-reply <ticket> |
Create a draft reply for a ticket |
Features:
- Smart ticket analysis with issue classification
- Customer context for personalized responses
- Team collaboration via internal notes
- Powerful search with status/assignee/keyword filters
Configuration:
export FREESCOUT_API_URL="https://your-freescout-instance.com"
export FREESCOUT_API_KEY="your-api-key"
export FREESCOUT_DEFAULT_USER_ID="123" # OptionalMCP Server: @verygoodplugins/mcp-freescout
See mcp-freescout for setup instructions.
Evernote integration for notes, notebooks, and research management.
Commands:
| Command | Description |
|---|---|
/note-create [title] |
Create a new note |
/note-search <query> |
Search for notes |
/research-save [topic] |
Save research findings |
Features:
- Markdown to ENML conversion
- Advanced Evernote search syntax support
- Notebook and tag organization
- OAuth authentication
Configuration:
export EVERNOTE_ACCESS_TOKEN="your-oauth-access-token"
export EVERNOTE_SANDBOX="false" # Set to "true" for sandboxMCP Server: @verygoodplugins/mcp-evernote
See mcp-evernote for setup instructions.
Toggl time tracking for managing time entries and generating reports.
Commands:
| Command | Description |
|---|---|
/time-start [description] |
Start a new timer |
/time-stop |
Stop the current timer |
/time-report [period] |
Generate time report (today, week, month) |
Features:
- Start/stop timers with project assignment
- Daily and weekly reports
- Project and workspace summaries
- Intelligent caching for fast queries
Configuration:
export TOGGL_API_TOKEN="your-api-token"MCP Server: @verygoodplugins/mcp-toggl
See mcp-toggl for setup instructions.
Pirsch analytics for privacy-friendly website analytics and insights.
Commands:
| Command | Description |
|---|---|
/analytics-overview [domain] [period] |
Get traffic overview |
/analytics-compare [period1] [period2] |
Compare two periods |
Features:
- Visitors, pageviews, bounce rates
- Top pages and referrers
- UTM campaign tracking
- Period comparisons with growth metrics
- Real-time active visitors
Configuration:
export PIRSCH_ACCESS_TOKEN="your-access-token"
export PIRSCH_DEFAULT_DOMAIN="domain-id" # OptionalMCP Server: @verygoodplugins/mcp-pirsch
See mcp-pirsch for setup instructions.
Each plugin follows the Claude Code plugin structure:
plugins/<name>/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
├── .mcp.json # MCP server config (optional)
├── commands/ # Slash commands
├── hooks/ # Event hooks
├── scripts/ # Support scripts
└── skills/ # Skill definitions
MIT - See LICENSE for details.
- Very Good Plugins
- mcp-automem - AutoMem MCP server
- mcp-freescout - FreeScout MCP server
- mcp-evernote - Evernote MCP server
- mcp-toggl - Toggl MCP server
- mcp-pirsch - Pirsch MCP server
- Claude Code Plugins Docs