A curated marketplace for Claude Code plugins and skills by Eduardo Menoncello
npx claudepluginhub menoncello/menon-marketClaude Code Plugin Studio - A comprehensive plugin development and management toolkit
Comprehensive research tools plugin for Claude Code with advanced data analysis and deep research capabilities
A collection of Claude Code plugins and skills by Eduardo Menoncello
Built entirely with Bun and TypeScript for optimal performance and type safety.
Menon Marketplace is a collection of high-quality plugins and skills for Claude Code. It provides comprehensive tools for plugin development, research automation, and workflow enhancement with a focus on developer productivity and code quality.
# Clone the repository
git clone https://github.com/menoncello/menon-marketplace.git
cd claude-code
# Install dependencies
bun install
# Run tests for all plugins
bun test
# Build the research-tools plugin
bun run build
# Run specific plugin tests
bun test plugins/research-tools/
bun test plugins/studio-cc/
A comprehensive plugin development and management toolkit that includes:
Advanced research automation with deep analysis capabilities:
claude-code/
├── plugins/ # Plugin directory
│ ├── research-tools/ # Research automation plugin
│ │ ├── index.ts # Main plugin entry point
│ │ ├── types/ # TypeScript type definitions
│ │ ├── skills/ # Research-specific skills
│ │ └── docs/ # Plugin documentation
│ └── studio-cc/ # Plugin development toolkit
│ ├── index.ts # Main plugin entry point
│ ├── skills/ # Development skills
│ │ ├── prompt/ # Prompt engineering tools
│ │ ├── claude-code-plugin/ # Plugin development guides
│ │ └── claude-code-marketplace/ # Marketplace management
│ └── .claude-plugin/ # Plugin configuration
├── docs/ # Comprehensive documentation
│ ├── ai/ # AI-related documentation
│ └── plans/ # Development plans and notes
├── package.json # Project dependencies
├── tsconfig.json # TypeScript configuration
└── README.md # This file
Each plugin follows the standard Claude Code plugin structure:
{
"name": "plugin-name",
"description": "Plugin description",
"version": "1.0.0",
"author": {
"name": "Author Name",
"email": "[email protected]"
},
"license": "MIT",
"repository": "https://github.com/author/plugin.git",
"skills": ["./skills/skill-name"]
}
All plugins export a standard interface:
export interface PluginConfig {
version: string;
developmentMode?: boolean;
debugLogging?: boolean;
// Plugin-specific configuration options
}
export class PluginClass {
constructor(config: Partial<PluginConfig> = {});
async initialize(): Promise<void>;
getVersion(): string;
getConfig(): PluginConfig;
updateConfig(newConfig: Partial<PluginConfig>): void;
async cleanup(): Promise<void>;
}
import { initialize, performResearch, defaultConfig } from './plugins/research-tools/index.ts';
// Initialize with custom configuration
const config = initialize({
enableDeepResearch: true,
maxSources: 25,
outputFormat: 'markdown',
timeout: 60000,
});
// Perform research
const result = await performResearch('TypeScript best practices', config);
console.log(`Research completed with ${result.sources.length} sources`);
console.log(`Confidence score: ${result.confidence}`);
import StudioCC from './plugins/studio-cc/index.ts';
// Initialize plugin studio
const studio = new StudioCC({
developmentMode: true,
debugLogging: true,
version: '1.0.0',
});
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
No description available.