BeClaude

content

New
105Community RegistryDevelopmentby Nick Nisi

Tools for bootstrapping content creation such as blog posts and conference talks

First seen 5/22/2026

Summary

This skill orchestrates parallel multi-agent research across Perplexity, Gemini, Grok, and Claude WebSearch, enabling comprehensive multi-source analysis.

  • It supports both single-agent consultation and scalable parallel research with 3-24 agents, making it ideal for deep dives into complex topics.

Overview

My personal collection of Claude Code plugins.

Using this marketplace

Add this marketplace to Claude Code:

bash
/plugin marketplace add nicknisi/claude-plugins

Then install plugins:

bash
/plugin install consultant@nicknisi

Plugins

  • consultant - Multi-model AI consultation and research with GPT-5/Codex, Gemini, Grok, Perplexity, and Claude (supports both single-agent consultation and parallel multi-agent research)
  • content - Tools for bootstrapping content creation
  • developer-experience - Tools for the experienced developer experience engineer
  • essentials - Core productivity tools and workflows for Claude Code
  • ideation - Evidence-gated planning interviews that turn brain dumps into contracts and implementation specs, with critic-reviewed plans, autopilot execution, and a retro learning loop. Lives in its own repo but still installs from this marketplace.
  • meta - Meta-cognitive tools for Claude Code self-improvement. Learn from feedback, optimize configuration, and evolve your AI development workflow.
  • sandbox - Experimental agents, skills, and output styles for unconventional interaction patterns
  • spec-driven - Transform specifications into executable code with validation-driven development
  • workos - Enterprise authentication and SSO integration toolkit

Using with Pi

This repo is also a Pi package. Install it directly:

bash
pi install git:github.com/nicknisi/claude-plugins
# or, while developing locally:
pi install /Users/nicknisi/Developer/claude-plugins

The Pi package loads the same plugins/*/skills and plugins/*/commands files, plus pi/extensions/claude-compat.ts for Claude Code compatibility shims like AskUserQuestion, WebFetch, WebSearch, TodoWrite, and file-backed task tools.

For skills that rely on Claude Code's Task/Agent subagent workflow, install pi-subagents once:

bash
pi install npm:pi-subagents

This repo does not load pi-subagents directly because Pi currently errors when the same extension/tool is loaded twice, and many Pi setups already have pi-subagents installed globally.

Development

This is a pnpm workspace with TypeScript project references.

bash
# Install dependencies
pnpm install

# Type check everything
pnpm run typecheck

# Build all MCP servers
pnpm run build

# Build and sync marketplace metadata
pnpm run build:all

Adding a new plugin

  1. Create plugins/your-plugin/.claude-plugin/plugin.json with metadata
  2. Add components: agents, commands, skills, or MCP servers
  3. If adding an MCP server, update pnpm-workspace.yaml and root tsconfig.json
  4. Run pnpm run sync to auto-discover and add to marketplace

The sync script scans plugins/ and automatically discovers all plugins with valid plugin.json files. Add a plugin directory and it shows up. Remove one and it disappears.

License

MIT

Install & Usage

1
Add a marketplace
/plugin marketplace add <org/repo>
2
Install the plugin

Add the configuration to /plugin install content@<marketplace>

3
Manage with /plugin
/plugin

Use Cases

Gather competitive intelligence by running parallel searches across multiple AI models for a market analysis report.
Validate technical claims by cross-referencing results from Perplexity, Gemini, Grok, and Claude WebSearch.
Explore a new domain by launching a multi-agent research session to synthesize diverse perspectives on a topic.
Prepare for a presentation by using parallel agents to collect up-to-date statistics and expert opinions from different sources.
Debug a complex issue by querying multiple models simultaneously to find alternative solutions or root causes.

Usage Examples

1

/researcher 'What are the latest trends in AI-assisted coding?'

2

/researcher --agents 6 --sources perplexity,grok,gemini 'Compare the performance of GPT-4o and Claude 3.5 Sonnet'

3

Run a parallel research with 12 agents on the topic 'Quantum computing breakthroughs in 2025'

View source on GitHub
contentblogbloggingtalksdeveloper-talksmeetups

Security Audits

LicenseUnknownSourceWarnRepositoryPass

Frequently Asked Questions

What is content?

This skill orchestrates parallel multi-agent research across Perplexity, Gemini, Grok, and Claude WebSearch, enabling comprehensive multi-source analysis. It supports both single-agent consultation and scalable parallel research with 3-24 agents, making it ideal for deep dives into complex topics.

How to install content?

To install content: add a marketplace (/plugin marketplace add <org/repo>), then add the config to /plugin install content@<marketplace>. Finally, /plugin in Claude Code.

What is content best for?

content is a plugin categorized under Development. It is designed for: content, blog, blogging, talks, developer-talks, meetups. Created by Nick Nisi.

What can I use content for?

content is useful for: Gather competitive intelligence by running parallel searches across multiple AI models for a market analysis report.; Validate technical claims by cross-referencing results from Perplexity, Gemini, Grok, and Claude WebSearch.; Explore a new domain by launching a multi-agent research session to synthesize diverse perspectives on a topic.; Prepare for a presentation by using parallel agents to collect up-to-date statistics and expert opinions from different sources.; Debug a complex issue by querying multiple models simultaneously to find alternative solutions or root causes..