Vibe Index
🎯

conversation-analyzer

🎯Skill

from mhattingpete/claude-skills-marketplace

VibeIndex|
AI Summary

Analyzes conversation patterns, interaction metrics, and communication effectiveness to provide insights into collaborative exchanges and dialogue dynamics.

conversation-analyzer

Installation

Install skill:
npx skills add https://github.com/mhattingpete/claude-skills-marketplace --skill conversation-analyzer
Stars267
Last UpdatedJan 15, 2026

Skill Details

SKILL.md

Overview

# Claude Skills Marketplace

A curated marketplace of Claude Code plugins for software engineering workflows.

Skill Loading Demo

Repository Structure

```

claude-skills-marketplace/

β”œβ”€β”€ .claude-plugin/

β”‚ └── marketplace.json # Marketplace manifest

β”œβ”€β”€ execution-runtime/ # πŸš€ Code execution environment (NEW!)

β”‚ β”œβ”€β”€ api/ # Importable API library

β”‚ β”œβ”€β”€ mcp-server/ # FastMCP server

β”‚ β”œβ”€β”€ setup.sh # One-command installation

β”‚ └── README.md

β”œβ”€β”€ engineering-workflow-plugin/ # Engineering workflow plugin

β”‚ β”œβ”€β”€ .claude-plugin/

β”‚ β”‚ └── plugin.json # Plugin manifest

β”‚ β”œβ”€β”€ agents/

β”‚ β”‚ └── plan-implementer.md # Plan implementation agent

β”‚ β”œβ”€β”€ skills/

β”‚ β”‚ β”œβ”€β”€ feature-planning/ # Feature planning skill

β”‚ β”‚ β”œβ”€β”€ git-pushing/ # Git automation skill

β”‚ β”‚ β”œβ”€β”€ review-implementing/ # Code review skill

β”‚ β”‚ └── test-fixing/ # Test fixing skill

β”‚ └── README.md

β”œβ”€β”€ visual-documentation-plugin/ # Visual documentation plugin

β”‚ β”œβ”€β”€ .claude-plugin/

β”‚ β”‚ └── plugin.json # Plugin manifest

β”‚ β”œβ”€β”€ skills/

β”‚ β”‚ β”œβ”€β”€ architecture-diagram-creator/ # Architecture diagram skill

β”‚ β”‚ β”œβ”€β”€ dashboard-creator/ # Dashboard creation skill

β”‚ β”‚ β”œβ”€β”€ flowchart-creator/ # Flowchart creation skill

β”‚ β”‚ β”œβ”€β”€ technical-doc-creator/ # Technical documentation skill

β”‚ β”‚ └── timeline-creator/ # Timeline creation skill

β”‚ β”œβ”€β”€ EXAMPLES.md

β”‚ └── README.md

β”œβ”€β”€ productivity-skills-plugin/ # Productivity & optimization plugin

β”‚ β”œβ”€β”€ .claude-plugin/

β”‚ β”‚ └── plugin.json # Plugin manifest

β”‚ β”œβ”€β”€ skills/

β”‚ β”‚ β”œβ”€β”€ code-auditor/ # Code auditing skill

β”‚ β”‚ β”œβ”€β”€ codebase-documenter/ # Codebase documentation skill

β”‚ β”‚ β”œβ”€β”€ conversation-analyzer/ # Usage analysis skill

β”‚ β”‚ └── project-bootstrapper/ # Project setup skill

β”‚ └── README.md

β”œβ”€β”€ code-operations-plugin/ # Code manipulation plugin

β”‚ β”œβ”€β”€ .claude-plugin/

β”‚ β”‚ └── plugin.json # Plugin manifest

β”‚ β”œβ”€β”€ skills/

β”‚ β”‚ β”œβ”€β”€ code-execution/ # πŸš€ Python execution skill (NEW!)

β”‚ β”‚ β”‚ └── examples/ # Example scripts

β”‚ β”‚ β”œβ”€β”€ code-transfer/ # Code transfer skill

β”‚ β”‚ β”‚ └── scripts/

β”‚ β”‚ β”‚ └── line_insert.py # Line-based insertion script

β”‚ β”‚ β”œβ”€β”€ code-refactor/ # Bulk refactoring skill

β”‚ β”‚ └── file-operations/ # File analysis skill

β”‚ └── README.md

β”œβ”€β”€ LICENSE

└── README.md

```

What are Skills and Agents?

Skills are model-invoked capabilities that extend Claude Code's functionality. Unlike slash commands that require explicit user activation, Skills are automatically triggered by Claude based on context and the Skill's description.

Each Skill consists of a SKILL.md file with:

  • YAML frontmatter (name, description, metadata)
  • Detailed instructions for Claude
  • Optional supporting files (scripts, templates, references)

Agents are specialized Claude instances that can be invoked by Claude to handle specific types of work. They run independently with their own context and can use different models optimized for their task.

Each Agent consists of an AGENT.md file with:

  • YAML frontmatter (name, description, model selection)
  • Specialized instructions and constraints
  • Decision-making frameworks for their domain

Skills and Agents work together: Skills can orchestrate when to invoke Agents, and Agents can use Skills while executing their tasks.

πŸš€ NEW: Execution Runtime (90%+ Token Savings)

The marketplace now includes a code execution environment implementing the [Anthropic code execution pattern](https://www.anthropic.com/engineering/code-execution-with-mcp). Instead of loading code through context, Claude executes Python lo